diff --git a/bin/scripts/sync/import_czech_postcodes.py b/bin/scripts/sync/import_czech_postcodes.py new file mode 100644 index 000000000..5fa4ca4b6 --- /dev/null +++ b/bin/scripts/sync/import_czech_postcodes.py @@ -0,0 +1,225 @@ +#!/usr/bin/env python3 +"""Czech Republic -> contributions/postcodes/CZ.json importer for issue #1039. + +Source data +----------- +The community ``1nfinity84/PSC-Okres-Obec-OkresCZ`` repository ships +``mapping_data.json`` — a 4 MB join of Czech 5-digit PSČ +(poštovní směrovací číslo / postal code) onto okres (district) and +obec (municipality), generated from rotten77's SQL dump of Česká +pošta + ČSÚ. + + { + "psc_to_okres": {"10000": "Praha", ...}, + "psc_to_obec": {"10000": [obec1, obec2, ...], ...} + } + +Source URL: https://raw.githubusercontent.com/1nfinity84/PSC-Okres-Obec-OkresCZ/master/mapping_data.json + +What this script does +--------------------- +1. Fetches the JSON via urllib (curl is blocked). +2. Resolves state FK by direct okres-name match against CSC's 76 + district entries plus a 1-entry alias ('Praha' -> CSC capital + city iso2 '10'). +3. For PSCs whose source value is an array of multiple okres, picks + the first as primary state. +4. Joins each PSC's psc_to_obec list to derive a representative + locality_name (first obec, with parenthetical hints stripped). +5. Writes contributions/postcodes/CZ.json idempotently. + +Coverage upgrade +---------------- +The previously-tracked ``soit-sk/czech_republic_post_codes_2007`` +shipped only a Perl scraper for the 2007 stamps DB and required +running it against Česká pošta's b2b TLS-blocked endpoint. This +mirror is a static JSON join requiring no scraping, generated from +rotten77's open SQL dump of Česká pošta + Czech Statistical Office +(ČSÚ) data. + +License & attribution +--------------------- +- Source: 1nfinity84/PSC-Okres-Obec-OkresCZ (no formal LICENSE; + derived from rotten77's open SQL dump, in turn from Česká pošta + + ČSÚ public lookups) +- Each row: ``source: "ceska-posta-via-1nfinity84"`` + +Tier 5 per #1039 license-tier policy. + +Usage +----- + python3 bin/scripts/sync/import_czech_postcodes.py +""" + +from __future__ import annotations + +import argparse +import json +import re +import sys +import urllib.request +from pathlib import Path +from typing import Dict, List, Union + + +SOURCE_URL = ( + "https://raw.githubusercontent.com/1nfinity84/PSC-Okres-Obec-OkresCZ/" + "master/mapping_data.json" +) + +# Source okres label -> CSC name override. Most map directly by +# district name; only Praha (capital city, not a district) needs +# the alias. +OKRES_ALIASES: Dict[str, str] = { + "Praha": "Praha, Hlavní město", +} + + +def fetch_json(url: str) -> dict: + req = urllib.request.Request( + url, headers={"User-Agent": "csc-database-postcode-importer"} + ) + with urllib.request.urlopen(req, timeout=120) as r: + return json.loads(r.read()) + + +def _strip_obec(name: str) -> str: + """Remove '(část)' / '(Praha N) (část)' parenthetical fragments.""" + return re.sub(r"\s*\([^)]*\)", "", name).strip() + + +def _primary_okres(value: Union[str, List[str]]) -> str: + if isinstance(value, list): + return value[0] if value else "" + return str(value or "") + + +def _primary_obec(value: Union[str, List[str], None]) -> str: + if not value: + return "" + if isinstance(value, list): + return _strip_obec(value[0]) if value else "" + return _strip_obec(str(value)) + + +def main() -> int: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--input", default=None, help="local JSON (skip fetch)") + parser.add_argument("--dry-run", action="store_true") + args = parser.parse_args() + + data = ( + json.loads(Path(args.input).read_text(encoding="utf-8")) + if args.input + else fetch_json(SOURCE_URL) + ) + psc_to_okres = data.get("psc_to_okres", {}) + psc_to_obec = data.get("psc_to_obec", {}) + print(f"Source PSCs: {len(psc_to_okres):,}") + + project_root = Path(__file__).resolve().parents[3] + countries = json.load( + (project_root / "contributions/countries/countries.json").open(encoding="utf-8") + ) + cz_country = next((c for c in countries if c.get("iso2") == "CZ"), None) + if cz_country is None: + print("ERROR: CZ not in countries.json", file=sys.stderr) + return 2 + regex = re.compile(cz_country.get("postal_code_regex") or ".*") + + states = json.load( + (project_root / "contributions/states/states.json").open(encoding="utf-8") + ) + cz_states = [s for s in states if s.get("country_id") == cz_country["id"]] + state_by_name: Dict[str, dict] = {s["name"]: s for s in cz_states if s.get("name")} + print( + f"Country: Czech Republic (id={cz_country['id']}); " + f"states indexed: {len(cz_states)}" + ) + + seen: set = set() + records: List[dict] = [] + skipped_bad_regex = 0 + skipped_no_state = 0 + matched_state = 0 + unknown_okres: Dict[str, int] = {} + + for psc, okres_value in psc_to_okres.items(): + code = str(psc).strip() + if not regex.match(code): + skipped_bad_regex += 1 + continue + + okres = _primary_okres(okres_value) + csc_name = OKRES_ALIASES.get(okres, okres) + state = state_by_name.get(csc_name) + if state is None: + unknown_okres[okres] = unknown_okres.get(okres, 0) + 1 + skipped_no_state += 1 + + locality = _primary_obec(psc_to_obec.get(psc)) + + key = (code, locality.lower()) + if key in seen: + continue + seen.add(key) + + record: Dict[str, object] = { + "code": code, + "country_id": int(cz_country["id"]), + "country_code": "CZ", + } + if state is not None: + record["state_id"] = int(state["id"]) + record["state_code"] = state.get("iso2") + matched_state += 1 + if locality: + record["locality_name"] = locality + record["type"] = "full" + record["source"] = "ceska-posta-via-1nfinity84" + records.append(record) + + print(f"Skipped (regex fail): {skipped_bad_regex:,}") + print(f"Skipped (no state FK): {skipped_no_state:,}") + print(f"Records emitted: {len(records):,}") + pct = matched_state * 100 // max(1, len(records)) + print(f" with state: {matched_state:,} ({pct}%)") + if unknown_okres: + print("Unknown okres labels (not in CSC + OKRES_ALIASES):") + for o, n in sorted(unknown_okres.items(), key=lambda x: -x[1]): + print(f" {o!r}: {n}") + + if args.dry_run: + return 0 + + target = project_root / "contributions/postcodes/CZ.json" + target.parent.mkdir(parents=True, exist_ok=True) + if target.exists(): + with target.open(encoding="utf-8") as f: + existing = json.load(f) + existing_seen = { + (r["code"], (r.get("locality_name") or "").lower()) for r in existing + } + merged = list(existing) + for r in records: + key = (r["code"], (r.get("locality_name") or "").lower()) + if key not in existing_seen: + merged.append(r) + existing_seen.add(key) + merged.sort(key=lambda r: (r["code"], r.get("locality_name", ""))) + else: + merged = sorted(records, key=lambda r: (r["code"], r.get("locality_name", ""))) + + with target.open("w", encoding="utf-8") as f: + json.dump(merged, f, ensure_ascii=False, indent=2) + f.write("\n") + size_kb = target.stat().st_size / 1024 + print( + f"\n[OK] Wrote {target.relative_to(project_root)} " + f"({len(merged):,} rows, {size_kb:.0f} KB)" + ) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/contributions/postcodes/CZ.json b/contributions/postcodes/CZ.json new file mode 100644 index 000000000..fcc4a7158 --- /dev/null +++ b/contributions/postcodes/CZ.json @@ -0,0 +1,26952 @@ +[ + { + "code": "10000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Malešice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "10100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Michle", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "10200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Dolní Měcholupy (část", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "10300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Benice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "10400", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Hájek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "10600", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Michle", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "10700", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Dolní Měcholupy (část", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "10800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Malešice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "10900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Dolní Měcholupy (část", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "11000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Josefov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "11800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Holešovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "11900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Hradčany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "12000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Nové Město", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "12800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Nové Město", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "13000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Strašnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "14000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Braník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "14100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Chodov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "14200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Braník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "14300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Cholupice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "14700", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Braník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "14800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Chodov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "14900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Háje", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Hlubočepy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Hlubočepy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Radotín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15400", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Hlubočepy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15500", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Jinonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15511", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Zadní Kopanina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15521", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Sobín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15531", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Lipence", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15600", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Zbraslav", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Jinonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "15900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Lahovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "16000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Bubeneč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "16005", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Vokovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "16100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Liboc", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "16200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Břevnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "16300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Řepy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "16400", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Dejvice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "16500", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Lysolaje", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "16900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Břevnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "17000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Bubeneč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "17100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Troja", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "18000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Karlín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "18009", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Čimice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "18100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Bohnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "18200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Bohnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "18400", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Čimice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "18600", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Karlín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Hloubětín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19011", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Běchovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19012", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Dolní Počernice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19014", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Horní Počernice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19015", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Satalice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19016", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Klánovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19017", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Vinoř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Horní Počernice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19600", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Čakovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19700", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Kbely", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Černý Most", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "19900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Letňany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Brandýs nad Labem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25063", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Čakovičky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25064", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Hovorčovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25065", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Bašť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25066", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Brnky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25067", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Drasty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25068", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Husinec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25069", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Hoštice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25070", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Dolínek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25072", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Kojetice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25073", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Jenštejn", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25074", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Radonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25075", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Káraný", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25081", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Nehvízdky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25082", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Dobročovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25083", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Škvorec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25084", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Křenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25087", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Kozovazy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25088", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Císařská Kuchyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25089", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Lázně Toušeň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25090", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Jirny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25091", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Dehtáry", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25092", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Šestajovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25162", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Louňovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25163", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Kašovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25164", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Božkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25165", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Kaliště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25166", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Hrusice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25167", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25168", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25169", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Brtnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25170", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Čestlice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25202", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Jíloviště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25203", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Líšnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25204", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Čisovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25205", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Bratřínov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25206", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Bojanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25207", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Masečín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25208", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Buš", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25209", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Hradištko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25210", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Bojov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25216", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Nučice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25217", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Chýnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25218", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Ptice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25219", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Drahelčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25225", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Dobříč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25226", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Černošice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25228", + "country_id": 58, + "country_code": "CZ", + "state_id": 4598, + "state_code": "10", + "locality_name": "Černošice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25229", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Dobřichovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25230", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Běleč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25231", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Všenory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25241", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Dolní Břežany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25242", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Horní Jirčany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25243", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Čestlice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25244", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Dolní Jirčany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25245", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Březová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25246", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Jarov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25261", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Dobrovíz", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25262", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Černý Vůl", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25263", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Roztoky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25264", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Číčovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25265", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Holubice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25266", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Libčice nad Vltavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25267", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Tuchoměřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25268", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Číčovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25281", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Petrov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25282", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Hostěradice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Břve", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Bohuliby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Baba", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Buchov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25703", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bedřichovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25705", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Hlohov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25706", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bořkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25708", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Buková", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25709", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Pravonín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25721", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bukovany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25722", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25723", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Čistec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25724", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bělčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25726", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bílkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25728", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Chotýšany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25741", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Brodce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25742", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Dolní Požáry", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25744", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bělice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25751", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bezejovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25752", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Olbramovice Městečko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25753", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25754", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Vojkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25755", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Hůrka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25756", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bělice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25762", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Nemíž", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25763", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Černýš", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25764", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Zdislavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25765", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Alberovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25766", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Křivsoudov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25768", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25771", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Soutice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25786", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Barčov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25787", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Střezimíř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25788", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Červený Újezd", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25789", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Arnoštovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25790", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Kouty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25791", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bolešín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25792", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Prčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bolina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "25901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Amerika", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Brod", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26202", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Dobříš", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26203", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Čelina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26204", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Malá Hraštice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26205", + "country_id": 58, + "country_code": "CZ", + "state_id": 4619, + "state_code": "20A", + "locality_name": "Malá Lečice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26206", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Korkyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26211", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Rosovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26212", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Obořiště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26213", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Nečín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26214", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Hřiměždice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26215", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Borotice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26221", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Brdy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26222", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Hluboš", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26223", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Běřín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26225", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Pičín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26231", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Bohostice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26232", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Pečice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26241", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Bohutín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26242", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Bezděkov pod Třemšínem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26243", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Věšín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26244", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Hvožďany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26251", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Dublovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26252", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Víska", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26255", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Kojetín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26256", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Bražná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26261", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Višňová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26262", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Dolní Hbity", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26263", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Bohostice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26272", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Bor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26281", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Tochovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26284", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Kozárovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26285", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Drahenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26291", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Kosova Hora", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26293", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Chlum", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Bělohrad", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4546, + "state_code": "20B", + "locality_name": "Bláhova Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Beroun-Centrum", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Borek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26703", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Hudlice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26705", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Nižbor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26706", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Hýskov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26707", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Chyňava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26711", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Vráž", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26712", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Chrustenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26716", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Vysoký Újezd", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26717", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Mořina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26718", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Bubovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26721", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Tmaň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26722", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Suchomasty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26723", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Lhotka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26724", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Běštín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26725", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Osov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26726", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Všeradice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26727", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Běleč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26728", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Svinaře", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26729", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Zadní Třebaň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26741", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Kublov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26742", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Broumy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26743", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Bzová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26751", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Bavoryně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26753", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Žebrák", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26754", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Praskolesy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26761", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Cerhovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26762", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Brdy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26763", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Brdy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26764", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Olešná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4620, + "state_code": "202", + "locality_name": "Felbabka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "26901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Chlum", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Chrášťany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Kolešovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27004", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Bukov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27006", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Janov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27007", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Kounov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27008", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Hředle", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27009", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Krupá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27021", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Chlum", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27023", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Branov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27024", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Račice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27031", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Hostokryje", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27032", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Oráčov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27033", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Bedlno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27034", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Bělbožice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27035", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Hostokryje", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27036", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Lubná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27041", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Hracholusky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27042", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Skryje", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27051", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Lužná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27052", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Lišany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27053", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Krušovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27054", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Bdín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27055", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Pochvalov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27061", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Lány", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27062", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Rynholec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27064", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Lodenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27065", + "country_id": 58, + "country_code": "CZ", + "state_id": 4558, + "state_code": "20C", + "locality_name": "Srbeč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Lány", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Dubí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27203", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Dubí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27204", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Kladno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27206", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Libušín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Kamenné Žehrovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27302", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Srby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27303", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Honice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27304", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Čelechovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27305", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Ledce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27306", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Hrdlív", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27307", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Vinařice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27308", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Humny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27309", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Dubí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27321", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Hobšovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27322", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Hospozín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27323", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Černuc", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27324", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Bratkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27325", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Neuměřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27326", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Kamenný Most", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27327", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Otvovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27328", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Blevice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27329", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Koleč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27341", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Brandýsek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27342", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Dřetovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27343", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Bůhzdař", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27345", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Hřebeč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27351", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Braškov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27353", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Běloky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27354", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Lidice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27361", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Velká Dobrá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27362", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Doksy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27363", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Běleč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27364", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Doksy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27371", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Bakov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27372", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Budenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27373", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Lukov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27374", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Bílichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27375", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Kutrovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27376", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Hřešice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27377", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Čanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27378", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Jedomělice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27379", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Byseň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4631, + "state_code": "203", + "locality_name": "Blahotice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Brozánky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Dolní Beřkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27703", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Horní Počaply", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27704", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Cítov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27705", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Jeviněves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27706", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Chramostek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27707", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Mlčechvosty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27708", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Ledčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27711", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Byškovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27713", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Jiřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27714", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Borek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27715", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Chrást", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27716", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Přívory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27721", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Dobřeň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27723", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Březinka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27724", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Bosyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27731", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Hleďsebe", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27732", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Byšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27733", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Řepín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27734", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Jenichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27735", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Brusné 1.díl", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27736", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Lobeč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27737", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Choroušky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27738", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Mělnické Vtelno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27741", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Dolní Vinice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27742", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Dušníky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27743", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Chlumín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27744", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Bukol", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27745", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Bukol", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27746", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Veltrusy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27751", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Hleďsebe 1.díl", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27752", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Nová Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "27801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4638, + "state_code": "206", + "locality_name": "Debrno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Kolín II", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Bělušice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Velim", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Cerhenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28103", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Chotutice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28104", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Plaňany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28106", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Hřiby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28107", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Svojšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28121", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Červené Pečky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28123", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Bašta", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28125", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Konárovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28126", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Hradišťko II", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28127", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Božec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28128", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Radovesnice II", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28129", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Končice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28130", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Ohaře", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28141", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Ratboř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28143", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Bečváry", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28144", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Církvice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28146", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Dolní Kruty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28151", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Velký Osek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28161", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Kouřim", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28162", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Oleška", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28163", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Barchovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28166", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Jevany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28167", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Stříbrná Skalice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28171", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Rostoklaty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Břežany II", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Albrechtice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28403", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Hlouška", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28404", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Kaňk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Miskovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28502", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Suchdol", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28504", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Bedřichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28506", + "country_id": 58, + "country_code": "CZ", + "state_id": 4627, + "state_code": "201", + "locality_name": "Bělokozly", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28507", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Rataje nad Sázavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28509", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Kácov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28510", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Čestín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28511", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Nepoměřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28521", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Zbraslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28522", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Bohdaneč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28523", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Vlastějovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28525", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Bohdaneč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28531", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Nové Dvory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28532", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Hlízov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28533", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Církvice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28541", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Malešov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28542", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Červené Janovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28543", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Paběnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28545", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Kluky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28546", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Hájek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28547", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Křesetice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28561", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Žleby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28562", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Hostovlice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28563", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Potěhy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28564", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Vlkaneč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28565", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Zbýšov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28571", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Dolní Bučice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28572", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Bílé Podolí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28573", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Horušice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28574", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Záboří nad Labem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28575", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Žehušice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28576", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Chotusice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4923, + "state_code": "205", + "locality_name": "Adamov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28802", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Budiměřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Černá Hora", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28902", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Dubečno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28903", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Dlouhopolsko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28904", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Kolaje", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28905", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Dobšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28906", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Opolánky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28907", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Kanín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28908", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Běrunice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28911", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Dobřichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28912", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Hradištko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28913", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Drahelice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28914", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Hořany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28915", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Bříství", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28916", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Přerov nad Labem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28917", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Semice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28921", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Doubrava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28922", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Byšičky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28923", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Benátecká Vrutice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28924", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Benátecká Vrutice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28925", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Čilec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28926", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Čihadla", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28931", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Bobnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28932", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Hrubý Jeseník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28933", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Bošín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28934", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Břístev", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28935", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Košík", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28936", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Mcely", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28937", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Loučeň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "28941", + "country_id": 58, + "country_code": "CZ", + "state_id": 4618, + "state_code": "204", + "locality_name": "Klipec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4582, + "state_code": "208", + "locality_name": "Choťánky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Bezděčín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29306", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Bradlec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29307", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Hrdlořezy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Bakov nad Jizerou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29402", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Branžež", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29403", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Obruby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29404", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Bechov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29405", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Dlouhá Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29406", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Březno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29411", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Břehy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29412", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Příhrazy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29413", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Buda", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29414", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Jivina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29415", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Klášter Hradiště nad Jizerou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29421", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Bělá pod Bezdězem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29423", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Čistá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29424", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Březovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29425", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Bezdědice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29426", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Boreč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29427", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Velké Všelisy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29428", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Chotětov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29429", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Bezno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29430", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Dolní Cetno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29431", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Jizerní Vtelno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29441", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Bojetice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29442", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Bratronice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29443", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Bor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29445", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Charvatce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29446", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Ctiměřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29447", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Ledce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29448", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Domousnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29471", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Benátky nad Jizerou I", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29473", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Brodce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29474", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Hlavenec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29475", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Sojovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29476", + "country_id": 58, + "country_code": "CZ", + "state_id": 4606, + "state_code": "209", + "locality_name": "Kostelní Hlavno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29477", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Mečeříž", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29478", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Dolní Slivno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29479", + "country_id": 58, + "country_code": "CZ", + "state_id": 4643, + "state_code": "207", + "locality_name": "Horní Slivno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "29501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Bílá Hlína", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "30100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Bolevec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "31200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Bukovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "31600", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Bolevec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "31800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Dolní Vlkýš", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "32100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Jižní Předměstí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "32200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Křimice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "32300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Bolevec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "32600", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Božkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "32700", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Východní Předměstí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Kyšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Dýšina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33003", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Chrást", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33005", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Dobříč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33007", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Druztová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33008", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Senec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33011", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Česká Bříza", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33012", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Čívice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33013", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Krašovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33014", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Ledce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33016", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Všeruby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33017", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Chotíkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33021", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Líně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33022", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Zbůch", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33023", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Bítov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33024", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Horní Sekyřany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33025", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Blatnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33026", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Tlučná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33027", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Křimice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33032", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Bdeněves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33033", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Čeminy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33035", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Hunčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33036", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Březí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33038", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Blažim", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33040", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Úterý", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33041", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Bezvěrov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Babina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33141", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Bílov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33144", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Kožlany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33151", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Čívice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33152", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Bučí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33162", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Brdo", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33165", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Balková", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Lhůta", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33202", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Sedlec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33203", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Šťáhlavy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33204", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Chlum", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33205", + "country_id": 58, + "country_code": "CZ", + "state_id": 4544, + "state_code": "323", + "locality_name": "Chválenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33207", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Střížovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33209", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Čižice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33211", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Hradec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33214", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Chotěšov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Honezovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Biřkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33441", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Dobřany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33442", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Chlumčany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33443", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Dnešice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33444", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Dolní Lukavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33452", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Buková", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33453", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Roupov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33454", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Lužany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33455", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Horšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Bezděkovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33503", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Dvorec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33541", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Vrčeň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33543", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Dožice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33544", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33546", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Oselce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33547", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Nekvasovy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33551", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Měcholupy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33554", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Žinkovy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33555", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Neurazy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33561", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Borovno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33563", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Číčov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33564", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Čížkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Blovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Borek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Holoubkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33805", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Mýto", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33806", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Cheznovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33808", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Bílá Skála", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33821", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Osek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33822", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Svojkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33824", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33828", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Chomle", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33841", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Klabava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33842", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Hrádek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33843", + "country_id": 58, + "country_code": "CZ", + "state_id": 4608, + "state_code": "324", + "locality_name": "Brdy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33844", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Dobřív", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33845", + "country_id": 58, + "country_code": "CZ", + "state_id": 4583, + "state_code": "326", + "locality_name": "Strašice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "33901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Andělice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34004", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Alžbětín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34012", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34021", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Běhařov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34022", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Blata", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34034", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Bližanovy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Babín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34142", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Bernartice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34151", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Velký Bor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34192", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Červená", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Albrechtice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Babylon", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Mrákov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34502", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Kout na Šumavě", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34506", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Branišov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34507", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Všeruby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34509", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Pocinovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34521", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Meclov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34522", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Drahotín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34525", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34526", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Bělá nad Radbuzou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34532", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Česká Kubice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34533", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Chodov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34534", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Klenčí pod Čerchovem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34535", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Mlýnec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34543", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Hradiště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34545", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Blížejov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34561", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Čermná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34562", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Bukovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4641, + "state_code": "321", + "locality_name": "Borovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4646, + "state_code": "327", + "locality_name": "Bíletín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4646, + "state_code": "327", + "locality_name": "Částkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34802", + "country_id": 58, + "country_code": "CZ", + "state_id": 4646, + "state_code": "327", + "locality_name": "Bernartice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34806", + "country_id": 58, + "country_code": "CZ", + "state_id": 4646, + "state_code": "327", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34813", + "country_id": 58, + "country_code": "CZ", + "state_id": 4646, + "state_code": "327", + "locality_name": "Boněnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34815", + "country_id": 58, + "country_code": "CZ", + "state_id": 4646, + "state_code": "327", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Benešovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34952", + "country_id": 58, + "country_code": "CZ", + "state_id": 4564, + "state_code": "325", + "locality_name": "Bezemín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34953", + "country_id": 58, + "country_code": "CZ", + "state_id": 4646, + "state_code": "327", + "locality_name": "Bezdružice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34958", + "country_id": 58, + "country_code": "CZ", + "state_id": 4646, + "state_code": "327", + "locality_name": "Černošín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34961", + "country_id": 58, + "country_code": "CZ", + "state_id": 4646, + "state_code": "327", + "locality_name": "Kladruby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "34972", + "country_id": 58, + "country_code": "CZ", + "state_id": 4646, + "state_code": "327", + "locality_name": "Trpísty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Aleje-Zátiší", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Dolní Lomany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35124", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Hranice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35131", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Libá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35132", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Hazlov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35134", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Božetín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35135", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Plesná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35137", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Luby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Aš", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35491", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Lázně Kynžvart", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35493", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Dolní Žandov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Arnoltov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35604", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Dolní Rychnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Rotava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35703", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Svatava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35705", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Jindřichovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35707", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Hory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35708", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Dolina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35709", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Anenská Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35731", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Horní Slavkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35733", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Dvory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35734", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Nové Sedlo", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35735", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Chodov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35751", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Dolní Pochlovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35755", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Bukovany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "35801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4595, + "state_code": "413", + "locality_name": "Bublava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Bor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36004", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Bohatice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36005", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Rybáře", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36006", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Dvory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36007", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Doubí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36010", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Rybáře", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36017", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Čankov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36018", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Tašovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36221", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Bernov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36222", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Nejdek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36225", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Božičany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36233", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Hroznětín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36234", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Merklín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36235", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Abertamy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36236", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Bludná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36251", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Arnoldov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36262", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Boží Dar", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36263", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Dalovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36272", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Dubina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36273", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Vojkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Boč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36452", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Borek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36453", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Bošov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36461", + "country_id": 58, + "country_code": "CZ", + "state_id": 4573, + "state_code": "411", + "locality_name": "Beranov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36464", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Bečov nad Teplou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "36471", + "country_id": 58, + "country_code": "CZ", + "state_id": 4604, + "state_code": "412", + "locality_name": "Andělská Hora", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Černý Dub", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "České Budějovice 5", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37004", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "České Budějovice 1", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37005", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "České Budějovice 2", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37006", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Borovnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37007", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Borovnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37008", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "České Budějovice 5", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37010", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "České Budějovice 3", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37011", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "České Budějovice 2", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Temelín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37302", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Neznašov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37304", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Chrášťany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37305", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Temelín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37311", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Ledenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37312", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Borovany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37314", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Komařice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37315", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Nová Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37316", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Dobrá Voda u Českých Budějovic", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37321", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Slavče", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37322", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Ločenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37323", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Svatý Jan nad Malší", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37324", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Branišovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37331", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Lhotka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37332", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Jílovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37333", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Nové Hrady", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37335", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Bedřichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37336", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Rychnov u Nových Hradů", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37341", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Bavorovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37343", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Purkarec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37344", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Zliv", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37346", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Pištín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37347", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Sedlec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37348", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Česká Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37349", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Mydlovary", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37350", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Chlumec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37351", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Dříteň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37361", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Hosín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37362", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Chotýčany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37363", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Mazelov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37364", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Bošilec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37365", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Bošilec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37366", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Žimutice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37367", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Borek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37371", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Adamov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37372", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Červený Újezdec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37373", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Dolní Miletín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37381", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Kamenný Újezd", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37382", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Boršov nad Vltavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37384", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Branišov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Bedřichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Bečice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Buk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Lásenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37802", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Dolní Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37803", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Majdalena", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37804", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Chlum u Třeboně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37806", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Bor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37807", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Nová Ves u Klikova", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37808", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Dvory nad Lužnicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37809", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Nová Ves nad Lužnicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37810", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "České Velenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37816", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Lomnice nad Lužnicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37817", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Novosedly nad Nežárkou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37818", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Pístina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37821", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Annovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37824", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Pluhův Žďár", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37825", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Deštná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37826", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Lodhéřov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37831", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Horní Pěna", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37832", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Číměř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37833", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Albeř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37841", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Jarošov nad Nežárkou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37842", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Bednárec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37843", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Horní Radouň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37846", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Roseč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37852", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Blažejov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37853", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Bořetín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37855", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Popelín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37856", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Jilem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37861", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Člunek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37862", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Kunžak", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37871", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Staré Hobzí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37872", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Písečné", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37873", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Dešná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37881", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Bělčovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37882", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Staré Město pod Landštejnem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37883", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Český Rudolec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37891", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Budíškovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37892", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Budeč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "37901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Branná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4624, + "state_code": "313", + "locality_name": "Báňovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Bohdalovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Dolní Třebonín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38202", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Zlatá Koruna", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38203", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Bohouškovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38206", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Brloh", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38208", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Borová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38211", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Lužná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38216", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Světlík", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38218", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Přízeř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38221", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Kájov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38222", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Hořice na Šumavě", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38223", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Černá v Pošumaví", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38226", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Bližná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38229", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Boletice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38232", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Bor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38241", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38242", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Kaplice-nádraží", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38272", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Dolní Dvořiště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38273", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Blatná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38276", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Loučovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38278", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Lipno nad Vltavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38279", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Frymburk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38281", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Besednice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38282", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Benešov nad Černou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38283", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Pohorská Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38291", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Janova Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38292", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Rožmitál na Šumavě", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38293", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Horní Dvořiště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Albrechtovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Nebahovy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38402", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Lhenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38403", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Ktiš", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38404", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Chroboly", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38411", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38421", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Husinec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38422", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Beneda", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38425", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Dub", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38426", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Strunkovice nad Blanicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38427", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Vitějovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38432", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Lažiště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38433", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Horní Záblatí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38441", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Zbytiny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38442", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Lenora", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38443", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Hliniště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38444", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Stožec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38451", + "country_id": 58, + "country_code": "CZ", + "state_id": 4543, + "state_code": "312", + "locality_name": "Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38462", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Dlouhý Bor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38471", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Buk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38472", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Masákova Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38473", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Benešova Hora", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38481", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Bohumilice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38486", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Miřetice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38491", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Horní Vltavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38492", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Borová Lada", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38493", + "country_id": 58, + "country_code": "CZ", + "state_id": 4578, + "state_code": "315", + "locality_name": "Kvilda", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4591, + "state_code": "322", + "locality_name": "Arnoštka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Brusy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Černětice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38706", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Malenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38711", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Katovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38715", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Kozlov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38716", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Hodějov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38719", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Čestice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38731", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Radomyšl", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38732", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Sedlice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38733", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Kadov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38734", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Záboří", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38735", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Doubravice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38736", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Mečichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38737", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Třebohostice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38742", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Hornosín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38743", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Bělčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38751", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Štěkeň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38752", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Cehnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38756", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Čepřovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38771", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Číčenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38772", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Libějovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38773", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Bavorov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38775", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Skočice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Bezdědovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "38901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4628, + "state_code": "316", + "locality_name": "Albrechtice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Čelkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Čekanice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39003", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Klokoty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39005", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Tábor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Lhota Samoty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Lhota Samoty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39111", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Lhota Samoty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39116", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Myslkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39117", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Košice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39118", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Choustník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39120", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Radenín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39121", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Turovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39126", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Budislav", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39127", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Dírná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39131", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Balkova Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39132", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Božejovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39133", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Alenina Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39135", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Borotín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39136", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Sudoměřice u Tábora", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39137", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Beranova Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39142", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Ratibořské Hory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39143", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Běleč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39152", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Smilovy Hory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39153", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Vodice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39155", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Babčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39156", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Měšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39161", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Hájky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39162", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Stádlec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39165", + "country_id": 58, + "country_code": "CZ", + "state_id": 4556, + "state_code": "311", + "locality_name": "Bechyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39171", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Březnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39172", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Sudoměřice u Bechyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39173", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Hlavatce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39174", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Bezděčín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39175", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Bečice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39176", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Slapy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39181", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Borkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Borek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Bácovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Rynárec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39403", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Horní Cerekev", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39404", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Nový Rychnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39405", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Vyskytná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39409", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Kojčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39411", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Cetoraz", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39412", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Obrataň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39413", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Kámen", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39414", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Leskovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39415", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Nová Cerekev", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39421", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Hořepník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39422", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Buřenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39424", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Křešín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39426", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Lukavec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39427", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Nové Vyklantice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39428", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Velká Chyška", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39443", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Mladé Bříště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39444", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Želiv", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39445", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Křelovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39446", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Červená Řečice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39451", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Kaliště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39452", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Kejžlice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39456", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Senožaty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39459", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Koberovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39461", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Božejov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39462", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Libkova Voda", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39463", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Častrov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39464", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Počátky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39468", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Ctiboř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39470", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Antonka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39491", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Bohdalín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39492", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Mnich", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39493", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Dvořiště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39494", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Černovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39495", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Křeč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39496", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Těmice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Arneštovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4645, + "state_code": "633", + "locality_name": "Bolechov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Borečnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Mirotice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39804", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Boješice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39806", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Horosedly", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39807", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Orlík nad Vltavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39811", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Budičovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39815", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Tálín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39816", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Albrechtice nad Vltavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39817", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Chřešťovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39818", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Dolní Záhoří", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39819", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Březí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39821", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Kestřany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39822", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Ražice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39831", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Čížová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39832", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Nová Vráž", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39833", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Dolní Ostrovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39834", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Kučeř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39835", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Oslov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39842", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Veselíčko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39843", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Bernartice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39847", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Slabčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39848", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Červená", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39851", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Božetice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39852", + "country_id": 58, + "country_code": "CZ", + "state_id": 4565, + "state_code": "317", + "locality_name": "Nadějkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39853", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Chyšky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39855", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Kovářov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39858", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Kostelec nad Vltavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39859", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Hrejkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "39901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4560, + "state_code": "314", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Bukov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Arnultovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40003", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Brná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40004", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Trmice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40007", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Krásné Březno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40010", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Bukov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40011", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Severní Terasa", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Dolní Zálezly", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40302", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Církvice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40313", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Řehlovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40317", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Chabařovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40321", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Brná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40322", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Olešnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40323", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Velké Březno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40327", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Babiny I", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40331", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Mojžíř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40332", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Neštědice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40334", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Velké Chvojno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40335", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Libouchec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40336", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Tisá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40337", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Krásný Les", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40338", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Krásný Les", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40339", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Chlumec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40340", + "country_id": 58, + "country_code": "CZ", + "state_id": 4599, + "state_code": "427", + "locality_name": "Božtěšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40502", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Bechlejovice-Děčín XXVI x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40505", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Bynov-Děčín IX x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Jílové", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40702", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Modrá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40703", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Dobkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40711", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Boletice nad Labem-Děčín XXXII x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40713", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Kámen", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40714", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Arnoltice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40715", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Srbská Kamenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40716", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Jetřichovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40717", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Hřensko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40721", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Česká Kamenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40722", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Benešov nad Ploučnicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40723", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Františkov nad Ploučnicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40724", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Valkeřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40725", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Verneřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40729", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Karlovka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40741", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Brložec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40742", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Markvartice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40744", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Dolní Chřibská", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40745", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Dolní Falknov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40746", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Krásná Lípa", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40747", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Dlouhý Důl", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40751", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Rybniště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40752", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Studánka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40753", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Filipov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40755", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Dolní Podluží", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40756", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Jedlová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40757", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Horní Podluží", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40760", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Brtníky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40761", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Nové Křečany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40777", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Císařský", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40778", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Leopoldka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40779", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Mikulášovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40780", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Dolina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40781", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Lipová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40782", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Dolní Poustevna", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40784", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Lobendava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "40801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4609, + "state_code": "421", + "locality_name": "Jedlová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Bílinka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Píšťany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41103", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Libochovany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41108", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Brocno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41111", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Sulejovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41112", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Čížkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41113", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Lipá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41114", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Vlastislav", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41115", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Blešno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41116", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Klapý", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41117", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Libochovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41118", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Budyně nad Ohří", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41119", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Brníkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41120", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Ředhošť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41121", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Vrbičany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41131", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Bílý Újezd", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41132", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Milešov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41133", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Litochovice nad Labem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41141", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Pohořany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41142", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Ploskovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41145", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Bílý Kostelec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41146", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Liběšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41147", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Polepy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41148", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Křešice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41155", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Terezín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41156", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Bohušovice nad Ohří", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41162", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Sukorady", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41164", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Vrbice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41171", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Chodouny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41172", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Hoštka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41173", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Chcebuz", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41174", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Snědovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41181", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Brozany nad Ohří", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41182", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Doksany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41183", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Hrobce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41184", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Straškov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41185", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Horní Beřkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41186", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Bechlín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41187", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Krabčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Brňany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4605, + "state_code": "423", + "locality_name": "Brzánky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Bílka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41503", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Řetenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41510", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Sobědruhy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Běhánky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41702", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Běhánky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41703", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Bystřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41704", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Hrob", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41705", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Dlouhá Louka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41712", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Proboštov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41713", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Modlany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41722", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Domaslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41723", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Košťany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41724", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Jeníkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41725", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Lahošť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41731", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Novosedlice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41741", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Bohosudov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41742", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Bohosudov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41752", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Hostomice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41753", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Světec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41754", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Kostomlaty pod Milešovkou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41757", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Hrobčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41761", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Bystřany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41762", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Kozlíky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41763", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Žalany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41765", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Němečky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41771", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Straky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41772", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Ledvice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41781", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Moldava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Bílina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41804", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Červený Újezd", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "41901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4621, + "state_code": "426", + "locality_name": "Duchcov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Bečov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43003", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Chomutov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43004", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Chomutov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Spořice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Lideň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43111", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Březenec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43114", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Strupčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43115", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Vrskmaň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43121", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Boleboř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43132", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Jindřichova Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43141", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Údlice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43143", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Hrušovany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43144", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Droužkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43145", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Březno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43151", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Ciboušov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43153", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Pětipsy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43154", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Vilémov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43155", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Radonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43156", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Konice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43157", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Chbany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43158", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Místo", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43159", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Vysoká Pec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43163", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Ondřejov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43182", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Hora Svatého Šebestiána", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43183", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Kýšovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43184", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Dolní Halže", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43186", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Kovářská", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43191", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Černý Potok", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Blov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Bedřichův Světec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Havraň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43502", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Most", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43511", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Lom", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43513", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Meziboří", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43521", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Obrnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43522", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Braňany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43524", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Lužice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43526", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Bečov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43532", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Libkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43533", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Louka u Litvínova", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43542", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Hamr", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43543", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Černice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43545", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Lesná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43546", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Hora Svaté Kateřiny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43547", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Brandov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Český Jiřetín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43603", + "country_id": 58, + "country_code": "CZ", + "state_id": 4629, + "state_code": "425", + "locality_name": "Chudeřín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Černčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43902", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Cítoliby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43903", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Chlumčany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43904", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Hříškov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43905", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Panenský Týnec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43906", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Vrbno nad Lesy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43907", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Peruc", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43908", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Pátek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43909", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Slavětín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43914", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Smolnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43915", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Divice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43921", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Koštice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43922", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Chožov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43923", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Lenešice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43924", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Raná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43926", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Libčeves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43931", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Měcholupy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43942", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Postoloprty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43949", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Průmyslová zóna Triangle", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43963", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Liběšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43965", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Hřivice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43967", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Ročov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43968", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Domoušice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43969", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Tuchořice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43971", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Nepomyšl", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43972", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Krásný Dvůr", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43975", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Libočany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43981", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Kryry", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43982", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Vroutek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43983", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Lubenec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43984", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Blatno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43985", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Černčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43986", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Běsno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43987", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Očihov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "43988", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Blšany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "44001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4617, + "state_code": "424", + "locality_name": "Bedřichovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "44101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4553, + "state_code": "422", + "locality_name": "Bílenec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Bedřichovka-Liberec XXXIV x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46005", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Kristiánov-Liberec V x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46006", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Liberec VI-Rochlice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46007", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Horní Růžodol-Liberec VII x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46008", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Dolní Hanychov-Liberec VIII x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46010", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Františkov-Liberec X x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46014", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Kateřinky-Liberec XVII x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46015", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Kunratice-Liberec XXIX x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46303", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Stráž nad Nisou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46311", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Liberec XXX-Vratislavice n.Nisou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46312", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Dlouhý Most", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46331", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Albrechtice u Frýdlantu", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46334", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Dolní Sedlo", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46342", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Anděl Strážce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46343", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Bílá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46344", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Červenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46345", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Albrechtice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46346", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Příšovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46348", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Benešovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46352", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Dolánky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46353", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Černá Louže", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46362", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Bílý Potok", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46365", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Dětřichovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46373", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Andělka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4590, + "state_code": "513", + "locality_name": "Arnoltice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Jablonec nad Nisou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46602", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Jablonec nad Nisou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46604", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Mšeno nad Nisou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46605", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Jablonec nad Nisou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46606", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Kokonín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Kokonín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46802", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Dalešice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46803", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Milíře", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46804", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Proseč nad Nisou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46811", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Hrabětice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46812", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Bedřichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46821", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Alšovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46822", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Besedice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46824", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Držkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46825", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Zásada", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46826", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Huť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46827", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Nová Ves nad Nisou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46833", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Jenišovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46841", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Desná II", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46843", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Albrechtice v Jizerských horách", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46844", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Antonínov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46845", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Bohdalovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46846", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Haratice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46847", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Lhotka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46848", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Příchovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46849", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Kořenov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46850", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Jizerka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46851", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Smržovka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46861", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Desná I", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "46871", + "country_id": 58, + "country_code": "CZ", + "state_id": 4612, + "state_code": "512", + "locality_name": "Lučany nad Nisou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Bořetín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Bohatice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47006", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Česká Lípa", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Zahrádky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Rané", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47103", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Kravaře", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47104", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Blíževedly", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47105", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Valteřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47106", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Horní Police", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47107", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Dolní Police", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47108", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Jezvé", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47111", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Horní Libchava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47112", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Nová Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47113", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Mistrovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47114", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Kamenický Šenov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47115", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Dolní Prysk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47116", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Polevsko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47117", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Skalice u České Lípy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47118", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Bukovany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47121", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Dobranov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47123", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Božíkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47124", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Boreček", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47125", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Česká Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47126", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Dubnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47127", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Stráž pod Ralskem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47128", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Břevniště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47129", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Brniště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47141", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Dubá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47151", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Svor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47152", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Sloup v Čechách", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47153", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Svojkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47154", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Cvikov I", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47155", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Kunratice u Cvikova", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47156", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Mařenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47157", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Dolní Světlá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47158", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Lindava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47161", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Jestřebí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47162", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Okna", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47163", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Staré Splavy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47167", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Provodín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Beškov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "47301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4633, + "state_code": "511", + "locality_name": "Arnultovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hradec Králové", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50003", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Bukovina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50004", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hradec Králové", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50006", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Moravské Předměstí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50008", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Nový Hradec Králové", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50009", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hradec Králové", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50011", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Moravské Předměstí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50012", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hradec Králové", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Plácky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50302", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Lochenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50303", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Benátky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50304", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Černožice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50305", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Lužany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50306", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hořiněves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50311", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hradec Králové", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50312", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Bříza", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50313", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Dohalice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50314", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Stračov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50315", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Budín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50316", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Dolní Přím", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50321", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hřibsko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50322", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Libčany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50323", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Boharyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50324", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Kratonohy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50325", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Dobřenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50326", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Osice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50327", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hubenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50331", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Vysoká nad Labem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50332", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Březhrad", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50333", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Praskačka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50341", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hradec Králové", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50343", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Černilov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50344", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Libřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50346", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Běleč nad Orlicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50351", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50352", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Skřivany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50353", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Červeněves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50354", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Ohnišťany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50355", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Petrovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50356", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hlušice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50357", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Starý Bydžov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50361", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Lovčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50362", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Lužec nad Cidlinou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50363", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Nepolisy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50364", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Měník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50365", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Kosičky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50366", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Káranice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Barchov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Bacov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50702", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Žeretice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50703", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Hradíšťko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50704", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Třtěnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50705", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Konecchlumí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50706", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Lužany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50707", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Úlibice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50711", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Těšín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50712", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Radim", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50713", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Bradlecká Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50715", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Libuň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50721", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Veliš", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50722", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Batín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50723", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Bačalky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50724", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Dětenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50731", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Jičíněves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50732", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Běchárky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50733", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Labouň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50734", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Žlunice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50742", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Markvartice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50743", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Čálovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50744", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Libošovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50745", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Hrdoňovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50752", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Ostroměř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50753", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Chomutice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50754", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Podhorní Újezd", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50758", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Mlázovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50759", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Šárovcova Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50771", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Bezník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50773", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Dobrá Voda u Hořic", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50777", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Cerekvice nad Bystřicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50781", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Brtev", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50782", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Arnoštov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50791", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Karlov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50792", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Úbislavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Bašnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "50901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Brdo", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Bořkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51202", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Košťálov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51203", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Libštát", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51204", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Mříčná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51206", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Benešov u Semil", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51211", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Vysoké nad Jizerou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51212", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Jesenný", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51213", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Bozkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51231", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Roztoky u Jilemnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51232", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Martinice v Krkonoších", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51233", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Rovnáčov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51234", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Horka u Staré Paky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51235", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Čistá u Horek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51236", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Horní Branná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51237", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Benecko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51238", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Vítkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51241", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Horní Sytová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51242", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Poniklá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51243", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Blansko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51244", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Dolní Rokytnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51245", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Františkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51246", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Harrachov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51247", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Paseky nad Jizerou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51251", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Bezděčín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51252", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Veselá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51253", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Tatobity", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51261", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Přepeře", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51263", + "country_id": 58, + "country_code": "CZ", + "state_id": 4640, + "state_code": "522", + "locality_name": "Bítouchov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51264", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Vyskeř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51265", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Všeň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51271", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Nová Ves nad Popelkou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Bítouchov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4596, + "state_code": "514", + "locality_name": "Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51603", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Lukavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Solnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51702", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Kvasiny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51703", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Brocná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51704", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Černíkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51711", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Javornice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51712", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Liberk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51721", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Borohrádek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51722", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Albrechtice nad Orlicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51723", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Žďár nad Orlicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51724", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Borohrádek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51725", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Malá Čermná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51731", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Bolehošť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51732", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Přepychy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51733", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Trnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51734", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Voděrady", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51735", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Lično", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51736", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Olešnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51741", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Borovnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51742", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Doudleby nad Orlicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51743", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Brná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51745", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Chleny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51750", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Častolovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51754", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Merklovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51755", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Peklo", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51756", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Slatina nad Zdobnicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51757", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Pěčín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51761", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Bartošovice v Orlických horách", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51764", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Orlické Záhoří", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51771", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Bolehošť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51772", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Jílovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51773", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Čánka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51783", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Olešnice v Orlických horách", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51784", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Ohnišov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51791", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Deštné v Orlických horách", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51792", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Kounov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51793", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Dobré", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Bačetín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "51803", + "country_id": 58, + "country_code": "CZ", + "state_id": 4636, + "state_code": "524", + "locality_name": "Podbřezí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4580, + "state_code": "521", + "locality_name": "Barchov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53003", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Bílé Předměstí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53006", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Popkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53009", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Cihelna", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53012", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Bílé Předměstí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Černá za Bory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53303", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Dašice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53304", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Bohumileč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53305", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Dříteč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53311", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Zdechovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53312", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Hornická Čtvrť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53313", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Řečany nad Labem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53314", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Kladruby nad Labem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53315", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Hlavečník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53316", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Bílé Vchynice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53321", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Vysoké Chvojno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53322", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Býšť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53332", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Čepí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53333", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Dražkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53341", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Bukovka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53342", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Živanice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53343", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Rohovládova Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53344", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Staré Ždánice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53345", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Čeperka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53351", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Rosice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53352", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Brozany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53353", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Doubravice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53354", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Rybitví", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53361", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Choltice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53362", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Svojšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53363", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Turkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53364", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Lipoltice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53371", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Dolní Roveň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53372", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Moravany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53373", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Uhersko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53374", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Dolní Jelení", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53375", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Dolní Ředice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Bělečko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4547, + "state_code": "532", + "locality_name": "Benešovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Dřenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53703", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Chrudim II", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53705", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Chrudim II", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Bylany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53802", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Morašice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53803", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Bílý Kámen", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53804", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Prachovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53805", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Kraskov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53807", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Bojanov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53821", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Částkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53823", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Licibořice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53824", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Svídnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53825", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Bošov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53826", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Bojanov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53831", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Medlešice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53832", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Úhřetice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53833", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Trojovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53834", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Rosice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53835", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Zaječice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53836", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Žumberk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53841", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Podhořany u Ronova", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53842", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Ronov nad Doubravou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53843", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Biskupice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53845", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Běstvina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53851", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Bítovánky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53854", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53861", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Kočí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53862", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Blansko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53863", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Bor u Chroustovic", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53864", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Jenišovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53865", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Řepníky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Blatno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53941", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Kameničky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53942", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Karlštejn", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53943", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Krouna", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53944", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Bor u Skutče", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53945", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Nové Hrady", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53952", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Trhová Kamenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53953", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Dolní Bradlo", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53955", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Čekov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53956", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Vrbatův Kostelec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53957", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Včelákov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53961", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Vortová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53962", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Chlum", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53971", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Dolní Holetín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53972", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Raná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53973", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Borek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53974", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Předhradí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "53976", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Prosetín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Babí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Staré Město", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54103", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Předměstí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Bobr", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54203", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Královec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54204", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Bernartice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54211", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Chvaleč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54212", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Radvanice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54213", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Jívka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54221", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Malá Úpa", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54223", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Kalná Voda", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54224", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Mladé Buky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54225", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Janské Lázně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54226", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Albeřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54227", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Malá Úpa", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54232", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Adamov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54233", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Havlovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54234", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Batňovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54235", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Velké Svatoňovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54236", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Libňatov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54237", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Batňovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54241", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Vlčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54242", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Staré Město", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54243", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Horní Staré Buky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Hořejší Vrchlabí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54302", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Hořejší Vrchlabí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54303", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Podhůří", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54341", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Lánov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54342", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Dvůr", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54344", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Černý Důl", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54351", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Bedřichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54352", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Strážné", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54361", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Kunčice nad Labem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54362", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Branná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54371", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Čermná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54372", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Arnultovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54373", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Prosečné", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54374", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Kalná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54375", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Olešnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54376", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Chotěvice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54377", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Čermná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Bílá Třemešná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54404", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Žirecká Podstráň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54442", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Choustníkovo Hradiště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54443", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Kuks", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54451", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Doubravice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54452", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Bílé Poličany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54454", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Velký Vřešťov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54455", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dubenec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54456", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Hřibojedy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54461", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Dolní Nemojov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54462", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Kocléřov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54464", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Kocbeře", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54466", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Hajnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54472", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Bílá Třemešná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54474", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Horní Brusnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54475", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Borovnička", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54477", + "country_id": 58, + "country_code": "CZ", + "state_id": 4579, + "state_code": "525", + "locality_name": "Borovnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Babí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Blažkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54906", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Bohuslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54907", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Nahořany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54908", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Provodov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54911", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Dolní Radechová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54912", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Vysokov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54921", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Česká Čermná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54922", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Krahulčí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54923", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Mezilesí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54931", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Bělý", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54932", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Velké Poříčí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54934", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Velký Dřevíč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54936", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Horní Dřevíč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54937", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Vysoká Srbská", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54941", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Bohdašín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54946", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Horní Radechová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54947", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Slatina nad Úpou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54948", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Studnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54952", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Horní Adršpach", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54954", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Bezděkov nad Metují", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54955", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Žďár nad Metují", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54956", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Česká Metuje", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54957", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Bohdašín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54962", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Suchý Důl", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54963", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Machov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54964", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Bezděkov nad Metují", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54971", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Šonov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54972", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Otovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54973", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Martínkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54974", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Božanov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54981", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Meziměstí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54982", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Vernéřovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54983", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Březová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "54984", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Heřmánkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Benešov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Cihelny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Jakubské Předměstí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55203", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Čáslavky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55204", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Chvalkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55205", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Běluň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55211", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Hustířany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55212", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Běluň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55221", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Rasošky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55222", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Jasenná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55224", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Velká Jesenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "55225", + "country_id": 58, + "country_code": "CZ", + "state_id": 4550, + "state_code": "523", + "locality_name": "Rychnovek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Česká Třebová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Hnátnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Dolní Dobrouč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56112", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Brandýs nad Orlicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56113", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Sudslava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56114", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "České Libchavy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56115", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Sopotnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56116", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Dolní Libchavy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56117", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Dlouhá Třebová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56118", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Člupek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56122", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Ostrov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56123", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Damníkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56124", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Třebovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56125", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Rudoltice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56131", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Tatenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56132", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Cotkytle", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56133", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Horní Heřmanice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56134", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Koburk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56141", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Řetová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56151", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Červená", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56152", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Verměřovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56153", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Dolní Čermná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56154", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Bystřec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56155", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Orličky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56156", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Horní Čermná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56161", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Červená Voda", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56162", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Bílá Voda", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56163", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Nekoř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56164", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Bořitov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56165", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Jamné nad Orlicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56166", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Těchonín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56167", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Mladkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56168", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Lichkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56169", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Bílá Voda", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56170", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Písečná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56181", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Kunvald", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56182", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Klášterec nad Orlicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56184", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Líšnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56185", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Česká Rybná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56186", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Bohousová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Černovír", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56203", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Hylváty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56204", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Kerhartice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56206", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Oldřichovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Albrechtice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Bubnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Běstovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56542", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Svatý Mikuláš", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56543", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Janovičky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56544", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Sruby", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56552", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "České Heřmanice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56553", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Dolní Sloupnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56555", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Hrušová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4647, + "state_code": "534", + "locality_name": "Borová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56802", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Banín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Hradec nad Svitavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56902", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Březová nad Svitavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56903", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Rozhraní", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56904", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Bohuňov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56905", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Bělá nad Svitavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56906", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Vítějeves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56907", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Radiměř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56911", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Koclířov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56912", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Opatov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56914", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Vendolí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56921", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Boršov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56922", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Křenov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56923", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Březina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56924", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Kunčina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56932", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Staré Město", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56933", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Třebařov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56934", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Rychnov na Moravě", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56935", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Mladějov na Moravě", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56941", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Městečko Trnávka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56942", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Chornice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56943", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Bělá u Jevíčka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56944", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Jaroměřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56945", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Biskupice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56951", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Morašice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56953", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Cerekvice nad Loučnou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56955", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Janov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56956", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Čistá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56957", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Čistá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56961", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Dolní Újezd", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56962", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Sebranice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56963", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Lubná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56965", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Budislav", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56966", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Jarošov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56967", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Litomyšl-Město", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56971", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Pomezí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56972", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Rohozná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56973", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Svojanov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56974", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Trpín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56982", + "country_id": 58, + "country_code": "CZ", + "state_id": 4634, + "state_code": "531", + "locality_name": "Borová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56991", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Jedlová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56992", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Bystré", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56993", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Korouhev", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "56994", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Telecí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "57001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Benátky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "57101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Bílá Studně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "57201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4571, + "state_code": "533", + "locality_name": "Březiny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58221", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Pohled", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58222", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Česká Jablonná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58223", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Havlíčkova Borová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58224", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Oudoleň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58231", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Okrouhlice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58232", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Lipnice nad Sázavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58233", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Dolní Město", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58234", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Krásná Hora", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58235", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Lučice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58241", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Olešná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58242", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Kámen", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58243", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Tis", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58244", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Sázavka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58245", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Uhelná Příbram", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58251", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Šlapanov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58252", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Polná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58253", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Dobrohostov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58254", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Úsobí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58255", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Boňkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58256", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Koječín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58257", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Lípa", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58261", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Česká Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58262", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Sobíňov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58263", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Benátky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58264", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Branišov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58265", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Slavíkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58266", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Krucemburk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58271", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Dolní Krupá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58272", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Rozsochatec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58273", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Nová Ves u Chotěboře", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58274", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Heřmaň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58276", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Maleč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58277", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Libice nad Doubravou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58281", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Habry", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58282", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Borek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58283", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Klášter", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58286", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Leština u Světlé", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58287", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Číhošť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58291", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Bačkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58292", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Kamenná Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58293", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Kožlí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58294", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Hněvkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Barovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4611, + "state_code": "631", + "locality_name": "Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Antonínův Důl", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58602", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Jihlava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58603", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Malý Beranov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Smrčná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58805", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Boršov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58811", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Střítež", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58812", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Dobronín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58813", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Brzkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58821", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Bradlo", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58822", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Bítovčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58823", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Kamenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58824", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Řehořov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58825", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Jersín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58826", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Zhoř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58827", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Arnolec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58831", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Petrovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58832", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Brtnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58833", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Beranovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58834", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Dlouhá Brtnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58835", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Cerekvička", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58841", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Bílý Kámen", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58842", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Branišov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58844", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Rohozná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58845", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Dolní Cerekev", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58851", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Batelov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58852", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Horní Dubenky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58854", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Mrákotín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58856", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Bohuslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58861", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Cejle", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58862", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Dolní Dvorce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58864", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Krasonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58865", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Nová Říše", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58866", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Rozseč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58867", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Nepomuky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "58901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Česká Mez", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Cikháj", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Brušovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59202", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Blatiny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59203", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Daňkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59204", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Fryšava pod Žákovou horou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59211", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Česká Mez", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59212", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Buková", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59213", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Bohdalov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59214", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Bohdalov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59221", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Karlov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59231", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Hlinné", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59232", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Jámy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59233", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Radešínská Svratka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59241", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Dalečín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59242", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Benátky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59244", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Věcov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59245", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59251", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Blažkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59252", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Rožná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59253", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Dolní Libochová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59254", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Moravec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59255", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Bobrová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59256", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Zvole", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59257", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Albrechtice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59261", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Borač", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59262", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Bor", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59263", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Štěpánov nad Svratkou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59264", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Prosetín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59265", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Hluboké", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59266", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Vír", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Bohuňov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Baliny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59441", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Uhřínov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59442", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Blízkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59444", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Kněževes", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59445", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Ostrov nad Oslavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59451", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Bojanov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59452", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Ořechov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59453", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Březí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59454", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Křoví", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59455", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Blahoňov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59456", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Drahonín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59457", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Vidonín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59461", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Cyrilov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "59501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "60200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Komárov x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "60300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Pisárky x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "61200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Královo Pole x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "61300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Černá Pole x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "61400", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Husovice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "61500", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Zábrdovice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "61600", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Komín x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "61700", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brněnské Ivanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "61800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Černovice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "61900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Bohunice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "62000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brněnské Ivanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "62100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Ivanovice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "62300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Kohoutovice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "62400", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Komín x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "62500", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Bohunice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "62700", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Černovice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "62800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Líšeň x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "63400", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Nový Lískovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "63500", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Bystrc x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "63600", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Líšeň x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "63700", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Pisárky x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "63800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Husovice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "63900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Bohunice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "64100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Žebětín x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "64200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Bosonohy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "64300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Chrlice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "64400", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Obřany x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "65100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Jehnice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Babice nad Svitavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66402", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Ochoz u Brna", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66403", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Podolí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66404", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Horákov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66405", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Jiříkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66406", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Kovalovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66407", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Pozořice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66408", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Blažovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66411", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Zbýšov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66412", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Oslavany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66417", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Omice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66423", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Čebín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66424", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Drásov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66431", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Česká", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66432", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Vranov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66434", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Kníničky x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66441", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Omice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66442", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Chrlice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66443", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Hajany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66444", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Ořechov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66446", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Prštice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66447", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Radostice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66448", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Moravany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66449", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Ostopovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66451", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Bedřichovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66452", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Měnín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66453", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Újezd u Brna", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66454", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Nesvačilka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66455", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Měnín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66456", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Blučina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66457", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Měnín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66458", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Prace", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66459", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Telnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66461", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Holasice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66462", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Hrušovany u Brna", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66463", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Přísnotice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66464", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Dolní Kounice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66465", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Malešovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66466", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Medlov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66467", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Bratčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66471", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Braníškov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66475", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Deblín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66481", + "country_id": 58, + "country_code": "CZ", + "state_id": 4568, + "state_code": "642", + "locality_name": "Brno-Bystrc x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66482", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Říčany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66483", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Domašov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66484", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Babice u Rosic", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66488", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Zbraslav", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66491", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Alexovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Omice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Březina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66602", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Předklášteří", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66603", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Březina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Vojkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66902", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Bezkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "66904", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Přímětice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Citonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Čížov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67103", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Vranov nad Dyjí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67106", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Jazovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67107", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Bítov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67110", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Bítov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67122", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Šatov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67124", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Vrbovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67125", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Hodonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67126", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Dyjákovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67127", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Hrádek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67128", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Derflice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67129", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Micmanice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67131", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Únanov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67132", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Plaveč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67133", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Mikulovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67134", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Horní Dunajovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67138", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Višňové", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67139", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Běhařovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67140", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Dobronice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67142", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Vémyslice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67151", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Kasárna", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67152", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Hluboké Mašůvky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67153", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Bojanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67154", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Blanné", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67155", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Blížkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67156", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Blížkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67161", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Bantice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67162", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Oleksovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67163", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Lechovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67164", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Božice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67165", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Břežany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67167", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Hrušovany nad Jevišovkou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67168", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Hevlín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67169", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Hevlín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67171", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Džbánice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67172", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Kašenec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67173", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Čermákovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67175", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Jezeřany-Maršovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67176", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Bohutice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67177", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Branišovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67178", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Borotice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67181", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Nový Šaldorf", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67182", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Dobšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4630, + "state_code": "647", + "locality_name": "Dobelice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Borovina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Číměř", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67502", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Koněšín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67503", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Budišov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67504", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Hodov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67505", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Batouchovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67506", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Benetice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67507", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Čechtín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67508", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Kouty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67521", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Bransouze", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67522", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Čechočovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67523", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Kojetice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67524", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Čáslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67525", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Rokytnice nad Rokytnou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67526", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Bítovánky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67527", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Brtnička", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67528", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Opatov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67529", + "country_id": 58, + "country_code": "CZ", + "state_id": 4613, + "state_code": "632", + "locality_name": "Brodce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67531", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Chotěbudice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67532", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Bačkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67533", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Dešov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67534", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Kostníky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67541", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Dědice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67542", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Budkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67543", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Domamil", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67544", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67545", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Šebkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67550", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Dukovany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67551", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Blatnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67552", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Dolní Vilémovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67553", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Valeč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67554", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Dalešice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67555", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Bačice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67556", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Dukovany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67557", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Biskupice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67559", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Radkovice u Hrotovic", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67560", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Myslibořice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67571", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Častotice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67573", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Horní Lhotice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67574", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Březník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67575", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Kladeruby nad Oslavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67576", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Hartvíkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67577", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Kramolín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67578", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Čikov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67579", + "country_id": 58, + "country_code": "CZ", + "state_id": 4648, + "state_code": "635", + "locality_name": "Tasov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67602", + "country_id": 58, + "country_code": "CZ", + "state_id": 4597, + "state_code": "634", + "locality_name": "Častohostice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Blansko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Jabloňany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67902", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Dolní Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67903", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Klepačov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67904", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Adamov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67905", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Březina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67906", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Jedovnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67907", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Kotvrdovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67911", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Doubravice nad Svitavou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67913", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Holštejn", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67914", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Ostrov u Macochy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67915", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Lipovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67921", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Bořitov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67922", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Černá Hora", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67923", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Běleč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67924", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Bukovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67931", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Sebranice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67932", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Sasina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67933", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Vísky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67934", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Knínice u Boskovic", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67935", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Světlá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67936", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Vanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67937", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Borotín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67938", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Cetkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67939", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Úsobrno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67951", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Němčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67952", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Žďárná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67953", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Benešov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67961", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Babolky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67962", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Dolní Poříčí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67963", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Brťov u Velkých Opatovic", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67971", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Bedřichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67972", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Hluboké u Kunštátu", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67973", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Rozseč nad Kunštátem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67974", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Crhov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67975", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Černovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "67976", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Drnovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4615, + "state_code": "641", + "locality_name": "Bačov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Boškůvky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Čechyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68303", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Luleč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68304", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Drnovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68305", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Pístovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68308", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Březina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68321", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Drysice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68323", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Dětkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68333", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Brankovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68334", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Snovídky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68335", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Letonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68341", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Bohdalice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68351", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Holubice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68352", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Hostěrádky-Rešov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68354", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Bošovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4622, + "state_code": "646", + "locality_name": "Heršpice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Bohaté Málkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Jarošov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68603", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Staré Město", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68604", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Kunovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68605", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Mařatice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68606", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Uherské Hradiště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68703", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68704", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Jankovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68705", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Jalubí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68706", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Modrá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68707", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Tupesy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68708", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Břestek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68709", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Boršice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68710", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Zlechov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68711", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Topolná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68712", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Bílovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68713", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Březolupy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68722", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Chylice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68723", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Ostrožská Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68724", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Kvačice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68725", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Hluk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68731", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Šumice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68732", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Nezdenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68733", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Drslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68734", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Těšov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68737", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Ořechov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68738", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Nedakonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68741", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Hostějov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68742", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Osvětimany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68751", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Nivnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68752", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Korytná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68753", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Suchá Loz", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68754", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Bánov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68755", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Bystřice pod Lopeníkem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68756", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Pašovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68761", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Vlčnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68762", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Dolní Němčí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68763", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Boršice u Blatnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68764", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Horní Němčí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68765", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Strání", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68766", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Květná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68767", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Březová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68771", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Bojkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68774", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Krhov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "68801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4592, + "state_code": "722", + "locality_name": "Havřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Břeclav", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69003", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Břeclav", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69006", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Břeclav", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Moravský Žižkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Velké Bílovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69103", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Rakvice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69104", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Přítluky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69105", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Zaječí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69106", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Velké Pavlovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69107", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Němčičky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69108", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Bořetice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69109", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Vrbice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69110", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Kobylí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69111", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Brumovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69112", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Boleradice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69121", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Sedlec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69122", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Pasohlávky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69123", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Cvrčovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69124", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Přibice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69125", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Vranovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69126", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Pouzdřany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69127", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Popice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69129", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Dolní Věstonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69130", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Vlasatice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69141", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Charvátská Nová Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69142", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Hlohovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69143", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Hlohovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69144", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Charvátská Nová Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69145", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Podivín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69146", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Břeclav", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69151", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Lanžhot", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69152", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Kostice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69153", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Tvrdonice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69154", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Týnec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69155", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Moravská Nová Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69156", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Hrušky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69162", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Uherčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69163", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Velké Němčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69164", + "country_id": 58, + "country_code": "CZ", + "state_id": 4545, + "state_code": "643", + "locality_name": "Nosislav", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69165", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Křepice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69167", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Šakvice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69171", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Diváky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69172", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Bohumilice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69173", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Dambořice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69174", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Velké Hostěrádky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69175", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Borkovany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69176", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Šitbořice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69181", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Brod nad Dyjí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69182", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Novosedly", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69183", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Drnholec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69185", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Dolní Dunajovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69186", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Perná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69188", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Milovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69189", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Bulhary", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Bavory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4542, + "state_code": "644", + "locality_name": "Horní Bojanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Hodonín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Rohatec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69602", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Ratíškovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69603", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Dubňany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69604", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Mistřín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69605", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Milotice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69606", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Vacenovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69611", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Mutěnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69612", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Čejč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69613", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Šardice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69614", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Čejč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69615", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Čejkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69616", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Dolní Bojanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69617", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Dolní Bojanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69618", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Lužice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69619", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Mikulčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69621", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Josefov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69631", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Bukovany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69632", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Ždánice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69633", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Archlebov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69634", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Silničná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69635", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Dambořice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69636", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Násedlovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69637", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Nenkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69638", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Stavěšice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69639", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Lovčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69640", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Sobůlky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69641", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Skoronice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69642", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Vracov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69647", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Žeravice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69648", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Ježov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69649", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Kelčany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69650", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Hýsly", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69651", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Čeložnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69655", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Bohuslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69661", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Lidéřovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69662", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Strážnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69663", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Hroznová Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69664", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Kněždub", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69665", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Petrov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69666", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Sudoměřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69667", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Radějov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69671", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Blatnice pod Svatým Antonínkem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69672", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Lipov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69673", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Hrubá Vrbka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69674", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Javorník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69676", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Louka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69681", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Bzenec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69683", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Domanín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69684", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Syrovín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69685", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Bzenec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Boršov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "69801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4561, + "state_code": "645", + "locality_name": "Milokošť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "70030", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Bělský Les", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "70200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Mariánské Hory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "70300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Hulváky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "70800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Ostrava-Poruba x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "70900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Hulváky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "71000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Muglinov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "71100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Antošovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "71200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Muglinov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "71300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Heřmanice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "71500", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Michálkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "71600", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Ostrava-Radvanice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "71700", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Bartovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "71800", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Kunčičky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "71900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Hrabová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "72000", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Hrabová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "72100", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Ostrava-Svinov x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "72200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Ostrava-Třebovice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "72300", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Martinov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "72400", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Nová Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "72525", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Ostrava-Polanka nad Odrou x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "72526", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Krásné Pole", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "72527", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Ostrava-Plesná x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "72528", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Hošťálkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "72529", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Ostrava-Petřkovice x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Fryštát", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Karviná-Mizerov x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73503", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Karviná-Lázně Darkov x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73506", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Doly", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73511", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Lazy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73514", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Lutyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73531", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Bohumín-Skřečoň x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73532", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Rychvald", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73533", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Doubrava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73534", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Stonava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73535", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Horní Suchá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73541", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Petřvald", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73542", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Dolní Těrlicko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73543", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Albrechtice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73551", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Bohumín-Pudlov x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73552", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Bohumín-Záblatí x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73553", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Dolní Lutyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73561", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Chotěbuz", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73562", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Koňákov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73564", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Dolní Suchá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73571", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Dětmarovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73572", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Dolní Marklovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73581", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Bohumín-Nový Bohumín x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Bludovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4586, + "state_code": "803", + "locality_name": "Český Těšín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Frýdek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Baška", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73904", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Krásná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73911", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Frýdlant", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73912", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Čeladná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73913", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Kunčice pod Ondřejníkem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73914", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Ostravice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73915", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Bílá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73921", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Krmelín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73923", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Košatka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73924", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Krmelín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73925", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Sviadnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73932", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Horní Datyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73934", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Bartovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73936", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Bruzovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73937", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Horní Bludovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73938", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Dolní Domaslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73939", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Lučina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73941", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Myslík", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73942", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Chlebovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73943", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Staříč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73944", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Brušperk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73945", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Fryčovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73946", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Dolní Sklenov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73947", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Kozlovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73949", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Metylovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73951", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Dobrá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73953", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Dolní Tošanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73955", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Guty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73956", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Ropice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73959", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Střítež", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73961", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Dolní Líštná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73981", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Košařiska", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73984", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Písek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73985", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Bukovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73991", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Bocanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73992", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Návsí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73994", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Karpentná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73995", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Bystřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73997", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Hrádek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "73998", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Hrčava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Bernartice nad Odrou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Kletné", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74213", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Butovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74221", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Kopřivnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74231", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Starý Jičín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74233", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Jeseník nad Odrou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74235", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Dobešov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74236", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Jakubčovice nad Odrou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74237", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Spálov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74242", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Šenov u Nového Jičína", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74243", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Pustějov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74245", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Děrné", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74247", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Hladké Životice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74251", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Mošnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74253", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Kunín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74254", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Bartošovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74255", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Albrechtičky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74256", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Sedlnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74257", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Libhošť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74258", + "country_id": 58, + "country_code": "CZ", + "state_id": 4559, + "state_code": "802", + "locality_name": "Fryčovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74260", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Petřvald 1-Petřvald", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74265", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Rybí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74266", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Štramberk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74267", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Ženklava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74271", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Hodslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74272", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Mořkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74273", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Veřovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74274", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Tichá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74275", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Lichnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74281", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Bravantice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74282", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Jistebník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74283", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Hýlov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74285", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Klimkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74291", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Velké Albrechtice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74292", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Lubojaty", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74293", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Slatina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Bílov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4548, + "state_code": "804", + "locality_name": "Bordovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Jaktař", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74705", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Kateřinky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74706", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Chvalíkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74707", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Jaktař", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74711", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Kozmice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74714", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Ludgeřovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74715", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Šilheřovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74716", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Hať", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74717", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Darkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74718", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Píšť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74719", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Bohuslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74720", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Vřesina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74721", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Dvořisko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74722", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Dolní Benešov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74723", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Bělá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74724", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Chuchelná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74725", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Rohov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74727", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Kobeřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74728", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Bílá Bříza", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74731", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Chlebičov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74733", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Oldřišov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74735", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Hněvošice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74741", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Benkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74743", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Větřkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74744", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Březová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74745", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Hrabství", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74747", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Klokočov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74751", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Stěbořice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74752", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Bratříkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74753", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Jakartovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74754", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Mladecko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74755", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Bohdanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74756", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Dolní Životice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74757", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Slavkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74761", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Raduň", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74762", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Mokré Lazce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74763", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Hrabyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74764", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Budišovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74766", + "country_id": 58, + "country_code": "CZ", + "state_id": 4584, + "state_code": "806", + "locality_name": "Dolní Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74767", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Hrabyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74768", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Kyjovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74769", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Hlubočec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74770", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Komárov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74771", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Brumovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74773", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Vávrovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74774", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Holasovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74775", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Košetice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74781", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Otice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74782", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Štáblovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74784", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Filipovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74786", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Kružberk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74787", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Budišov nad Budišovkou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74791", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Štítina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74792", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Háj ve Slezsku", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74794", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Děhylov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74795", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Suché Lazce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4623, + "state_code": "805", + "locality_name": "Bobrovníky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "74901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Čermná ve Slezsku", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75002", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Beňov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75101", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Annín-Tovačov II x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75102", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Troubky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75103", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Brodek u Přerova", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75104", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Rokytnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75105", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Kokory", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75111", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Hradčany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75114", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Dřevohostice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75115", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Čechy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75116", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Podolí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75117", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Horní Moštěnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75118", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Říkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75119", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Kanovsko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75121", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Buk", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75122", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Osek nad Bečvou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75123", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Dolní Újezd", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75124", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Čekyně-Přerov VII x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75125", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Lazníčky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75127", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Penčice-Přerov XIII x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75131", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Bohuslávky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75144", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Polkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Kojetín III-Kovalovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Boňkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75352", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Skalička", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75353", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Býškovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75354", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Bezuchov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75355", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Paršovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75356", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Opatovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75361", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Drahotuše-Hranice IV x)", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75362", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Boškov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75363", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Střítež nad Ludinou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75364", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Bělotín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75366", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Hranické Loučky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75367", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Milotice nad Bečvou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75368", + "country_id": 58, + "country_code": "CZ", + "state_id": 4626, + "state_code": "714", + "locality_name": "Černotín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Horní Jasenka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Hovězí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75602", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Huslenky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75603", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Halenkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75604", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Nový Hrozenkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75605", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Karolinka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75606", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Malé Karlovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75607", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Zděchov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75611", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Leskovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75612", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Horní Lideč", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75613", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Prlov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75614", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Francova Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75615", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Lidečko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75621", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Kateřinice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75622", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Hošťálková", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75623", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Jablůnka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75624", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Bystřička", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75625", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Růžďka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75627", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Malá Bystřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75631", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Liptál", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75641", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Jasenice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75642", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Choryně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75643", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75644", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Kunovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75645", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Branky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75651", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Veselá", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75652", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Střítež nad Bečvou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75653", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Střítež nad Bečvou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75654", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Zašová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75655", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Dolní Bečva", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75656", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Prostřední Bečva", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75657", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Horní Bečva", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75661", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Dolní Bečva", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75662", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Hutisko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75663", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Krhová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "75701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4572, + "state_code": "723", + "locality_name": "Bynina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Bohuslavice u Zlína", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76005", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Zlín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Hostišová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76302", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Chlum", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76307", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Dobrkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76311", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Hvozdná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76312", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Bratřejov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76313", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Jasenná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76314", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Kostelec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76315", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Březová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76316", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Dolní Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76317", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Lukov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76318", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Podkopná Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76319", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Držková", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76321", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Bohuslavice nad Vláří", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76323", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Dolní Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76324", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Haluzice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76325", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Drnovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76326", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Dolní Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76331", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Brumov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76332", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Návojná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76333", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Jestřabí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76341", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Biskupice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76345", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Březůvky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76351", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Bohuslavice u Zlína", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76361", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Komárov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76362", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Otrokovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76363", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Halenkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76364", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Spytihněv", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76502", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Kvítkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4563, + "state_code": "724", + "locality_name": "Křekov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Bařice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Jarohněvice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76802", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Cetechovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76803", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Roštín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76804", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Střílky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76805", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Blišice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76811", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Chropyně", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76812", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Popovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76813", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Honětice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76821", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Bělov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76823", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Břest", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76824", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Hulín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76831", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Bojanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76832", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Zborovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76833", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Dřínov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76834", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76841", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Bílavsko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76842", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Prusinovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76843", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Karlovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76845", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Rusava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76852", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Kurovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76861", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Bílavsko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76871", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Komárno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76872", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Chvalčov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76875", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Loukov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "76901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4593, + "state_code": "721", + "locality_name": "Bořenovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "77200", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Pavlovičky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "77900", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Bělidla", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78301", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Nemilany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78305", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Horní Loděnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78306", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Domašov nad Bystřicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78313", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Březce", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78314", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Bohuňovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78316", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Bělkovice-Lašťany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78321", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Bílá Lhota", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78322", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Bílsko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78324", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Březina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78325", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Bezděkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78332", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Lhota nad Moravou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78333", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Hynkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78335", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Horka nad Moravou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78336", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Břuchotín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78342", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Lípy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78344", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Drahanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78345", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Senice na Hané", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78346", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Luběnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78347", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Hněvotín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78349", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Lutín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78353", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Velká Bystřice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78354", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Přáslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78355", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Velký Újezd", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78356", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Doloplazy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78357", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Hostkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78361", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Hlubočky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78365", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Lošov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78372", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Čechovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78373", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Grygov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78375", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Blatec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78383", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Dědinka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78385", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Břevenec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78386", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Dlouhá Loučka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78391", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Benkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78396", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Haukovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78397", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Pasecký Žleb", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Březové", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4574, + "state_code": "712", + "locality_name": "Babice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78701", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Bratrušov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78801", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Bedřichov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78803", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Mladoňov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78804", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Hrabišín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78805", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Dolní Libina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78811", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Filipová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78813", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Rapotín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78814", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Petrov nad Desnou", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78815", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Bukovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78816", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Klepáčov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78820", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Dolní Studénky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78821", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Kolšov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78823", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Habartice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78825", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Branná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78832", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Chrastice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78833", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Hanušovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78901", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Benkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78961", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Bludov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78962", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Bohutín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78963", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Bartoňov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78964", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Bohdíkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78969", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Postřelmov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78971", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Leština", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78972", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Bohuslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78973", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Bezděkov u Úsova", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78974", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Janoslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78975", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Brníčko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78982", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Doubravice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78983", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Loštice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78985", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Doubravice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "78991", + "country_id": 58, + "country_code": "CZ", + "state_id": 4642, + "state_code": "715", + "locality_name": "Březná", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79001", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Adolfovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79051", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Supíkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79052", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Velké Kunětice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79053", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Nová Červená Voda", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79054", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Černá Voda", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79055", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Vidnava", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79057", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Bernartice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79058", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Velká Kraš", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79061", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Bobrovník", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79063", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Horní Lipová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79064", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Polka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79065", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Bergov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79069", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Kamenička", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79070", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Bílý Potok", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79081", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Česká Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79082", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Chebzí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79083", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Hradec-Nová Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79084", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Hradec-Nová Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79201", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Bruntál", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79302", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Lomnice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79303", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Dětřichov nad Bystřicí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79305", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Čabová", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79312", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Horní Benešov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79315", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Lichnov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79316", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Čaková", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79323", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Karlovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79324", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Karlova Studánka", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79326", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Bílý Potok", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79331", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Andělská Hora", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79336", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Karlov pod Pradědem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79342", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Janovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79344", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Dobřečov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79351", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Albrechtice u Rýmařova", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79356", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Ryžoviště", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79368", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Bílčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79371", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Dlouhá Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79374", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Heřmanovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79376", + "country_id": 58, + "country_code": "CZ", + "state_id": 4625, + "state_code": "711", + "locality_name": "Dolní Údolí", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79382", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Damašek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79383", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Arnultovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79384", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Janov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79391", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Úvalno", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79393", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Brantice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79395", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Burkvíz", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79397", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Amalín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79399", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Bartultovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79401", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Býkov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79501", + "country_id": 58, + "country_code": "CZ", + "state_id": 4644, + "state_code": "801", + "locality_name": "Dolní Moravice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79601", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Krasice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79603", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Prostějov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79604", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Čechovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79607", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Držovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79802", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Mostkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79803", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Březina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79804", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Alojzov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79805", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Březina", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79806", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Otaslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79807", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Brodek u Prostějova", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79808", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Kelčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79809", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Vřesovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79811", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Čechůvky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79812", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Biskupice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79813", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Vrbátky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79814", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Hablov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79816", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Čelechovice na Hané", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79817", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Smržice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79821", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Bedihošť", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79823", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Čelčice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79824", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Pivín", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79825", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Dobromilice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79826", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Doloplazy", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79827", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Dlouhá Ves", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79828", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Mořice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79829", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Koválovice u Tištína", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79830", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Pavlovice u Kojetína", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79841", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Bílovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79842", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Lešany", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79843", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Ptení", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79844", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Maleny", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79845", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Hrochov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79846", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Brodek u Konice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79847", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Horní Štěpánov", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79848", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Buková", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79849", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Malé Hradisko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79851", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Přemyslovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79852", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Březsko", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79853", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Dzbel", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79854", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Kladky", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79855", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Dětkovice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79856", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Bohuslavice", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79857", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Dvorek", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79858", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Čechy pod Kosířem", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79861", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Baldovec", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + }, + { + "code": "79862", + "country_id": 58, + "country_code": "CZ", + "state_id": 4551, + "state_code": "713", + "locality_name": "Rozstání", + "type": "full", + "source": "ceska-posta-via-1nfinity84" + } +]