diff --git a/README.md b/README.md index 469f117..bafc460 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ Elixir library for accessing ISO3166-1 (country) and ISO3166-2 (subdivision) data as well as geoname data for cities. Source data comes from the upstream [debian iso-codes](https://salsa.debian.org/iso-codes-team/iso-codes) package and the [Geonames](http://www.geonames.org/) project. - - ### Countries The data for countries comes primarily from the [debian iso-codes](https://salsa.debian.org/iso-codes-team/iso-codes) package. The data file for that is stored in `priv/iso_3166-1.json`. We do @@ -11,8 +9,7 @@ manually add some data that is missing from upstream. Overrides can be found in ### Subdivisions -The data for subdivisions comes primarily from the [debian iso-codes](https://salsa.debian.org/iso-codes-team/iso-codes) package. The data file for that is stored in `priv/iso_3166-2.json`. The -subdivision names in this file are mostly in local language (i.e. Wien instead of Vienna). English translations are obtained from Wikipedia using a scraper. The translations found in `priv/iso_3166-2.en-translations.json` are used when available instead of the original name. +The data for subdivisions comes primarily from the [debian iso-codes](https://salsa.debian.org/iso-codes-team/iso-codes) package. The data file for that is stored in `priv/iso_3166-2.json`. The subdivision names in this file are sometimes in local language (i.e. Berne instead of Bern). English translations are obtained from Cldr and Wikipedia. We also add some data manually that is missing from upstream. Overrides can be found in `priv/override/iso_3166-2.json` diff --git a/config/config.exs b/config/config.exs new file mode 100644 index 0000000..9d9f41e --- /dev/null +++ b/config/config.exs @@ -0,0 +1,4 @@ +import Config + +config :ex_cldr, + default_backend: Location.Cldr diff --git a/config/runtime.exs b/config/runtime.exs index b8db304..c24cef6 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -1,5 +1,8 @@ import Config +config :ex_cldr, default_backend: Location.Cldr + if config_env() != :prod do config :location, :lightweight, true + config :ex_cldr, default_backend: Location.Cldr end diff --git a/lib/location/subdivision.ex b/lib/location/subdivision.ex index a7803b1..4270733 100644 --- a/lib/location/subdivision.ex +++ b/lib/location/subdivision.ex @@ -6,20 +6,16 @@ defmodule Location.Subdivision do def load() do ets = :ets.new(@ets_table, [:named_table]) - translations = File.read!(translations_file()) |> Jason.decode!() - File.read!(source_file()) |> Jason.decode!() |> Map.fetch!("3166-2") |> Enum.each(fn entry -> - entry = translate_entry(translations, entry) :ets.insert(ets, {entry["code"], to_struct(entry)}) end) File.read!(restore_source_file()) |> Jason.decode!() |> Enum.each(fn entry -> - entry = translate_entry(translations, entry) :ets.insert(ets, {entry["code"], to_struct(entry)}) end) @@ -65,16 +61,6 @@ defmodule Location.Subdivision do } end - defp translate_entry(translations, entry) do - case Map.get(translations, entry["code"]) do - nil -> - entry - - translation -> - Map.put(entry, "name", translation) - end - end - defp source_file() do Application.app_dir(:location, "priv/iso_3166-2.json") end @@ -83,10 +69,6 @@ defmodule Location.Subdivision do Application.app_dir(:location, "priv/restore/iso_3166-2.json") end - defp translations_file() do - Application.app_dir(:location, "priv/iso_3166-2.en-translations.json") - end - defp override_source_file() do Application.app_dir(:location, "priv/override/iso_3166-2.json") end diff --git a/mix.exs b/mix.exs index 69c0c57..3a00aa3 100644 --- a/mix.exs +++ b/mix.exs @@ -48,6 +48,7 @@ defmodule Location.MixProject do [ {:jason, "~> 1.3"}, {:nimble_csv, "~> 1.1"}, + {:ex_cldr_territories, "~> 2.9", only: [:dev, :test]}, {:floki, "~> 0.36.0", only: [:dev, :test]}, {:flow, "~> 1.0", only: [:dev, :test]} ] diff --git a/mix.lock b/mix.lock index e12f5d2..b61e4e2 100644 --- a/mix.lock +++ b/mix.lock @@ -1,4 +1,8 @@ %{ + "cldr_utils": {:hex, :cldr_utils, "2.27.0", "a75d5cdaaf6b7432eb10f547e6abe635c94746985c5b78e35bbbd08b16473b6c", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:certifi, "~> 2.5", [hex: :certifi, repo: "hexpm", optional: true]}, {:decimal, "~> 1.9 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}], "hexpm", "516f601e28da10b8f1f3af565321c4e3da3b898a0b50a5e5be425eff76d587e1"}, + "decimal": {:hex, :decimal, "2.1.1", "5611dca5d4b2c3dd497dec8f68751f1f1a54755e8ed2a966c2633cf885973ad6", [:mix], [], "hexpm", "53cfe5f497ed0e7771ae1a475575603d77425099ba5faef9394932b35020ffcc"}, + "ex_cldr": {:hex, :ex_cldr, "2.39.2", "4a3a77797da8f900369822ea9353adfa035a5bbbbfff09b2d3d1b6fa461768e3", [:mix], [{:cldr_utils, "~> 2.25", [hex: :cldr_utils, repo: "hexpm", optional: false]}, {:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:gettext, "~> 0.19", [hex: :gettext, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:nimble_parsec, "~> 0.5 or ~> 1.0", [hex: :nimble_parsec, repo: "hexpm", optional: true]}], "hexpm", "02fd8913ef28d1b2a4190fd8016c2dec1f2291c9ce56c17d7649848c0261a6eb"}, + "ex_cldr_territories": {:hex, :ex_cldr_territories, "2.9.0", "6db9bc0741688201f6730caa91805181ea4f3d40f3e56ea1bdd8c9ed73edaf73", [:mix], [{:ex_cldr, "~> 2.38", [hex: :ex_cldr, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "93ec0ae059a23680d418101e1972922efe7bdca7f177207a2a8932e7dd51d33f"}, "floki": {:hex, :floki, "0.36.2", "a7da0193538c93f937714a6704369711998a51a6164a222d710ebd54020aa7a3", [:mix], [], "hexpm", "a8766c0bc92f074e5cb36c4f9961982eda84c5d2b8e979ca67f5c268ec8ed580"}, "flow": {:hex, :flow, "1.2.4", "1dd58918287eb286656008777cb32714b5123d3855956f29aa141ebae456922d", [:mix], [{:gen_stage, "~> 1.0", [hex: :gen_stage, repo: "hexpm", optional: false]}], "hexpm", "874adde96368e71870f3510b91e35bc31652291858c86c0e75359cbdd35eb211"}, "gen_stage": {:hex, :gen_stage, "1.2.1", "19d8b5e9a5996d813b8245338a28246307fd8b9c99d1237de199d21efc4c76a1", [:mix], [], "hexpm", "83e8be657fa05b992ffa6ac1e3af6d57aa50aace8f691fcf696ff02f8335b001"}, diff --git a/mix_tasks/cldr.ex b/mix_tasks/cldr.ex new file mode 100644 index 0000000..f764219 --- /dev/null +++ b/mix_tasks/cldr.ex @@ -0,0 +1,4 @@ +defmodule Location.Cldr do + require Cldr.Territory.Backend + use Cldr, default_locale: "en", locales: ["en"], providers: [Cldr.Territory] +end diff --git a/mix_tasks/scraper.ex b/mix_tasks/scraper.ex deleted file mode 100644 index ee72ef8..0000000 --- a/mix_tasks/scraper.ex +++ /dev/null @@ -1,100 +0,0 @@ -defmodule Location.Scraper do - @base_url "https://en.wikipedia.org/wiki/ISO_3166-2:" - @translations_dest Application.app_dir(:location, "/priv/iso_3166-2.en-translations.json") - @countries_to_skip [ - # For Estonia the local names are better than English ones - "EE", - # Source data from salsa-debian already has english translations where applicable - "JP", - "MW", - "FJ", - "GH", - "UG", - "BB", - "KE", - "US", - "ZA", - "MM", - # Anonymous VPN Service is not a country - "A1" - ] - - def scrape() do - countries = Location.Country.all() - - res = - Enum.map(countries, &scrape_country/1) - |> Enum.filter(&(not is_nil(&1))) - |> List.flatten() - |> Jason.OrderedObject.new() - |> Jason.encode_to_iodata!(pretty: true) - - File.write!(@translations_dest, res) - end - - defp scrape_country(%Location.Country{alpha_2: code}) when code in @countries_to_skip, do: nil - - defp scrape_country(country) do - url = @base_url <> country.alpha_2 - IO.puts(IO.ANSI.blue() <> "Fetching " <> url <> IO.ANSI.reset()) - {200, _headers, body} = Location.HTTP.get!(url) - {:ok, document} = Floki.parse_document(body) - - document - |> Floki.find("table.wikitable.sortable") - |> Enum.flat_map(fn table -> - rows = Floki.find(table, "tbody tr") - - english_name_column = - case List.first(rows) do - {"tr", _attrs, cells} -> - Enum.find_index(cells, fn cell -> - text = String.downcase(cell_text(cell)) - # https://github.com/plausible/analytics/issues/3260 - if country.alpha_2 == "SE" do - String.starts_with?(text, "subdivision name (sv)") - else - String.starts_with?(text, "subdivision name (en)") - end - end) - - _ -> - nil - end - - if english_name_column do - IO.puts(IO.ANSI.green() <> "Scraping " <> country.name <> IO.ANSI.reset()) - - Enum.drop(rows, 1) - |> Enum.map(fn row -> scrape_row(row, english_name_column) end) - |> Enum.uniq_by(fn {code, _name} -> code end) - |> Enum.sort_by(fn {code, _name} -> code end) - else - IO.puts(IO.ANSI.red() <> "Skipping " <> country.name <> IO.ANSI.reset()) - [] - end - end) - end - - defp scrape_row({"tr", _attrs, children}, name_column_index) do - code = - children - |> Enum.at(0) - |> cell_text - - name = - children - |> Enum.at(name_column_index) - |> cell_text - - {code, name} - end - - defp cell_text(text) do - Floki.text(text) - |> String.trim() - |> String.trim("[a]") - # Sometimes the entry contains something like "Region name[note 3]" - |> String.replace(~r/\[note \d\]$/, "") - end -end diff --git a/mix_tasks/update_english_translations.ex b/mix_tasks/update_english_translations.ex deleted file mode 100644 index a5b6deb..0000000 --- a/mix_tasks/update_english_translations.ex +++ /dev/null @@ -1,8 +0,0 @@ -defmodule Mix.Tasks.UpdateEnglishTranslations do - use Mix.Task - - def run(_) do - Location.Country.load() - Location.Scraper.scrape() - end -end diff --git a/mix_tasks/update_iso_data.ex b/mix_tasks/update_iso_data.ex index a5d7353..b8aeaf1 100644 --- a/mix_tasks/update_iso_data.ex +++ b/mix_tasks/update_iso_data.ex @@ -1,4 +1,5 @@ defmodule Mix.Tasks.UpdateIsoData do + require Logger use Mix.Task @countries_src "https://salsa.debian.org/iso-codes-team/iso-codes/-/raw/main/data/iso_3166-1.json" @@ -14,7 +15,17 @@ defmodule Mix.Tasks.UpdateIsoData do %{"3166-2" => new_subdivisions} = Jason.decode!(new_subdivisions) new_subdivisions = - Enum.map(new_subdivisions, fn subdivision -> Map.delete(subdivision, "parent") end) + Enum.map(new_subdivisions, fn %{"code" => code} = subdivision -> + subdivision + |> Map.delete("parent") + |> Map.update!( + "name", + fn debian_name -> + short_code = String.replace(code, "-", "") + cldr_name(short_code) || manual_en_name(code, debian_name) + end + ) + end) new_subdivisions_codes = MapSet.new(new_subdivisions, fn %{"code" => code} -> code end) @@ -51,4 +62,72 @@ defmodule Mix.Tasks.UpdateIsoData do new_subdivisions = Jason.encode_to_iodata!(%{"3166-2" => new_subdivisions}, pretty: true) File.write!(@subdivisions_dest, new_subdivisions) end + + defp cldr_name(short_code) do + with {:ok, en_name} <- Location.Cldr.Territory.from_subdivision_code(short_code) do + en_name + else + _ -> nil + end + end + + # TODO: add these to CLDR https://github.com/pedberg-icu/cldr/blob/main/common/subdivisions/en.xml + # or https://salsa.debian.org/iso-codes-team/iso-codes/-/blob/main/iso_3166-2/en.po + manual_code_to_en_name = %{ + # https://en.wikipedia.org/wiki/ISO_3166-2:ID + "ID-PD" => "Southwest Papua", + "ID-PE" => "Highland Papua", + "ID-PS" => "South Papua", + "ID-PT" => "Central Papua", + # https://en.wikipedia.org/wiki/ISO_3166-2:IS + "IS-HUG" => "Huna Settlement", + "IS-SKR" => "Skagafjordur", + # https://en.wikipedia.org/wiki/ISO_3166-2:KP + "KP-15" => "Kaesong", + # https://en.wikipedia.org/wiki/ISO_3166-2:KZ + "KZ-10" => "Abai", + "KZ-11" => "Akmola", + "KZ-15" => "Aktobe", + "KZ-19" => "Almaty", + "KZ-23" => "Atyrau", + "KZ-27" => "West Kazakhstan", + "KZ-31" => "Jambyl", + "KZ-33" => "Jetisu", + "KZ-35" => "Karaganda", + "KZ-39" => "Kostanay", + "KZ-43" => "Kyzylorda", + "KZ-47" => "Mangystau", + "KZ-55" => "Pavlodar", + "KZ-59" => "North Kazakhstan", + "KZ-61" => "Turkistan", + "KZ-62" => "Ulytau", + "KZ-63" => "East Kazakhstan", + "KZ-71" => "Astana", + "KZ-75" => "Almaty City", + "KZ-79" => "Shymkent" + } + + for {code, en_name} <- manual_code_to_en_name do + defp manual_en_name(unquote(code), debian_name) do + warn_if_debian_got_english(unquote(code), unquote(en_name), debian_name) + end + end + + defp manual_en_name(code, debian_name) do + Logger.warning( + "no translation override for #{code}, assuming Debian anme is English, please check: #{debian_name}" + ) + + debian_name + end + + defp warn_if_debian_got_english(code, manual_name, debian_name) do + if manual_name == debian_name do + Logger.warning( + "Debian seems to have localized #{code}, the manual translation can be removed" + ) + end + + manual_name + end end diff --git a/priv/iso_3166-2.en-translations.json b/priv/iso_3166-2.en-translations.json deleted file mode 100644 index ef78814..0000000 --- a/priv/iso_3166-2.en-translations.json +++ /dev/null @@ -1,2447 +0,0 @@ -{ - "YE-AB": "Abyan", - "YE-AD": "Aden", - "YE-AM": "Amran", - "YE-BA": "Beida", - "YE-DA": "Dhale", - "YE-DH": "Dhamar", - "YE-HD": "Hadhramaut", - "YE-HJ": "Hajjah", - "YE-HU": "Western Coast", - "YE-IB": "Ibb", - "YE-JA": "Jouf", - "YE-LA": "Lahij", - "YE-MA": "Marib", - "YE-MR": "Mahra", - "YE-MW": "Mahwit", - "YE-RA": "Raymah", - "YE-SA": "Sanaa City", - "YE-SD": "Saada", - "YE-SH": "Shabwah", - "YE-SN": "Sanaa", - "YE-SU": "Socotra", - "YE-TA": "Taiz", - "SA-01": "Riyadh", - "SA-02": "Mecca", - "SA-03": "Medina", - "SA-04": "Eastern", - "SA-05": "Qassim", - "SA-06": "Ha’il", - "SA-07": "Tabuk", - "SA-08": "Northern Borders", - "SA-09": "Jizan", - "SA-10": "Najran", - "SA-11": "Baha", - "SA-12": "Jouf", - "SA-14": "Asir", - "PH-00": "National Capital Region", - "PH-01": "Ilocos", - "PH-02": "Cagayan Valley", - "PH-03": "Central Luzon", - "PH-05": "Bicol", - "PH-06": "Western Visayas", - "PH-07": "Central Visayas", - "PH-08": "Eastern Visayas", - "PH-09": "Zamboanga Peninsula", - "PH-10": "Northern Mindanao", - "PH-11": "Davao", - "PH-12": "Soccsksargen", - "PH-13": "Caraga", - "PH-14": "Autonomous Region in Muslim Mindanao[b]", - "PH-15": "Cordillera Administrative Region", - "PH-40": "Calabarzon", - "PH-41": "Mimaropa", - "PH-ABR": "Abra", - "PH-AGN": "Agusan del Norte", - "PH-AGS": "Agusan del Sur", - "PH-AKL": "Aklan", - "PH-ALB": "Albay", - "PH-ANT": "Antique", - "PH-APA": "Apayao", - "PH-AUR": "Aurora", - "PH-BAN": "Bataan", - "PH-BAS": "Basilan", - "PH-BEN": "Benguet", - "PH-BIL": "Biliran", - "PH-BOH": "Bohol", - "PH-BTG": "Batangas", - "PH-BTN": "Batanes", - "PH-BUK": "Bukidnon", - "PH-BUL": "Bulacan", - "PH-CAG": "Cagayan", - "PH-CAM": "Camiguin", - "PH-CAN": "Camarines Norte", - "PH-CAP": "Capiz", - "PH-CAS": "Camarines Sur", - "PH-CAT": "Catanduanes", - "PH-CAV": "Cavite", - "PH-CEB": "Cebu", - "PH-COM": "Davao de Oro", - "PH-DAO": "Davao Oriental", - "PH-DAS": "Davao del Sur", - "PH-DAV": "Davao del Norte", - "PH-DIN": "Dinagat Islands", - "PH-DVO": "Davao Occidental", - "PH-EAS": "Eastern Samar", - "PH-GUI": "Guimaras", - "PH-IFU": "Ifugao", - "PH-ILI": "Iloilo", - "PH-ILN": "Ilocos Norte", - "PH-ILS": "Ilocos Sur", - "PH-ISA": "Isabela", - "PH-KAL": "Kalinga", - "PH-LAG": "Laguna", - "PH-LAN": "Lanao del Norte", - "PH-LAS": "Lanao del Sur", - "PH-LEY": "Leyte", - "PH-LUN": "La Union", - "PH-MAD": "Marinduque", - "PH-MAS": "Masbate", - "PH-MDC": "Mindoro Occidental", - "PH-MDR": "Mindoro Oriental", - "PH-MGN": "Maguindanao del Norte", - "PH-MGS": "Maguindanao del Sur", - "PH-MOU": "Mountain Province", - "PH-MSC": "Misamis Occidental", - "PH-MSR": "Misamis Oriental", - "PH-NCO": "Cotabato", - "PH-NEC": "Negros Occidental", - "PH-NER": "Negros Oriental", - "PH-NSA": "Northern Samar", - "PH-NUE": "Nueva Ecija", - "PH-NUV": "Nueva Vizcaya", - "PH-PAM": "Pampanga", - "PH-PAN": "Pangasinan", - "PH-PLW": "Palawan", - "PH-QUE": "Quezon", - "PH-QUI": "Quirino", - "PH-RIZ": "Rizal", - "PH-ROM": "Romblon", - "PH-SAR": "Sarangani", - "PH-SCO": "South Cotabato", - "PH-SIG": "Siquijor", - "PH-SLE": "Southern Leyte", - "PH-SLU": "Sulu", - "PH-SOR": "Sorsogon", - "PH-SUK": "Sultan Kudarat", - "PH-SUN": "Surigao del Norte", - "PH-SUR": "Surigao del Sur", - "PH-TAR": "Tarlac", - "PH-TAW": "Tawi-Tawi", - "PH-WSA": "Samar (local variant: Western Samar)", - "PH-ZAN": "Zamboanga del Norte", - "PH-ZAS": "Zamboanga del Sur", - "PH-ZMB": "Zambales", - "PH-ZSI": "Zamboanga Sibugay", - "CZ-10": "Prague", - "CZ-20": "Central Bohemia", - "CZ-31": "South Bohemia", - "CZ-32": "Plzeň", - "CZ-41": "Karlovy Vary", - "CZ-42": "Ústí nad Labem", - "CZ-51": "Liberec", - "CZ-52": "Hradec Králové", - "CZ-53": "Pardubice", - "CZ-63": "Vysočina", - "CZ-64": "South Moravia", - "CZ-71": "Olomouc", - "CZ-72": "Zlín", - "CZ-80": "Moravia-Silesia", - "ES-AN": "Andalusia", - "ES-AR": "Aragon", - "ES-AS": "Principality of Asturias", - "ES-CB": "Cantabria", - "ES-CE": "Ceuta", - "ES-CL": "Castile and León", - "ES-CM": "Castile-La Mancha", - "ES-CN": "Canary Islands", - "ES-CT": "Catalonia", - "ES-EX": "Extremadura", - "ES-GA": "Galicia", - "ES-IB": "Balearic Islands", - "ES-MC": "Region of Murcia", - "ES-MD": "Community of Madrid", - "ES-ML": "Melilla", - "ES-NC": "Chartered Community of Navarre", - "ES-PV": "Basque Country", - "ES-RI": "La Rioja", - "ES-VC": "Valencian Community", - "EG-ALX": "Alexandria", - "EG-ASN": "Aswan", - "EG-AST": "Asyut", - "EG-BA": "Red Sea", - "EG-BH": "Beheira", - "EG-BNS": "Beni Suef", - "EG-C": "Cairo", - "EG-DK": "Dakahlia", - "EG-DT": "Damietta", - "EG-FYM": "Faiyum", - "EG-GH": "Gharbia", - "EG-GZ": "Giza", - "EG-IS": "Ismailia", - "EG-JS": "South Sinai", - "EG-KB": "Qalyubia", - "EG-KFS": "Kafr el-Sheikh", - "EG-KN": "Qena", - "EG-LX": "Luxor", - "EG-MN": "Minya", - "EG-MNF": "Monufia", - "EG-MT": "Matrouh", - "EG-PTS": "Port Said", - "EG-SHG": "Sohag", - "EG-SHR": "Al Sharqia", - "EG-SIN": "North Sinai", - "EG-SUZ": "Suez", - "EG-WAD": "New Valley", - "QA-DA": "Doha", - "QA-KH": "Khor", - "QA-MS": "North", - "QA-RA": "Rayyan", - "QA-SH": "Shahaniya", - "QA-US": "Umm Salal", - "QA-WA": "Wakra", - "QA-ZA": "Daayen", - "BE-BRU": "Brussels", - "BE-VLG": "Flanders", - "BE-WAL": "Wallonia", - "BE-VAN": "Antwerp", - "BE-VBR": "Flemish Brabant", - "BE-VLI": "Limburg", - "BE-VOV": "East Flanders", - "BE-VWV": "West Flanders", - "BE-WBR": "Walloon Brabant", - "BE-WHT": "Hainaut", - "BE-WLG": "Liège", - "BE-WLX": "Luxembourg", - "BE-WNA": "Namur", - "RU-AD": "Adygea", - "RU-AL": "Gorno-Altai", - "RU-ALT": "Altai", - "RU-AMU": "Amur", - "RU-ARK": "Arkhangelsk", - "RU-AST": "Astrakhan", - "RU-BA": "Bashkortostan", - "RU-BEL": "Belgorod", - "RU-BRY": "Bryansk", - "RU-BU": "Buryatia", - "RU-CE": "Chechnya", - "RU-CHE": "Chelyabinsk", - "RU-CHU": "Chukotka", - "RU-CU": "Chuvashia", - "RU-DA": "Dagestan", - "RU-IN": "Ingushetia", - "RU-IRK": "Irkutsk", - "RU-IVA": "Ivanovo", - "RU-KAM": "Kamchatka", - "RU-KB": "Kabardino-\nBalkaria", - "RU-KC": "Karachay-Cherkessia", - "RU-KDA": "Krasnodar", - "RU-KEM": "Kemerovo", - "RU-KGD": "Kaliningrad", - "RU-KGN": "Kurgan", - "RU-KHA": "Khabarovsk", - "RU-KHM": "Yugoria", - "RU-KIR": "Kirov", - "RU-KK": "Khakassia", - "RU-KL": "Kalmykia", - "RU-KLU": "Kaluga", - "RU-KO": "Komi", - "RU-KOS": "Kostroma", - "RU-KR": "Karelia", - "RU-KRS": "Kursk", - "RU-KYA": "Krasnoyarsk", - "RU-LEN": "Leningrad", - "RU-LIP": "Lipetsk", - "RU-MAG": "Magadan", - "RU-ME": "Mari El", - "RU-MO": "Mordovia", - "RU-MOS": "Moscow", - "RU-MOW": "Moscow City", - "RU-MUR": "Murmansk", - "RU-NEN": "Nenetsia", - "RU-NGR": "Novgorod", - "RU-NIZ": "Nizhny Novgorod", - "RU-NVS": "Novosibirsk", - "RU-OMS": "Omsk", - "RU-ORE": "Orenburg", - "RU-ORL": "Oryol", - "RU-PER": "Perm", - "RU-PNZ": "Penza", - "RU-PRI": "Primorye", - "RU-PSK": "Pskov", - "RU-ROS": "Rostov", - "RU-RYA": "Ryazan", - "RU-SA": "Yakutia", - "RU-SAK": "Sakhalin", - "RU-SAM": "Samara", - "RU-SAR": "Saratov", - "RU-SE": "North Ossetia", - "RU-SMO": "Smolensk", - "RU-SPE": "Saint Petersburg", - "RU-STA": "Stavropol", - "RU-SVE": "Sverdlovsk", - "RU-TA": "Tatarstan", - "RU-TAM": "Tambov", - "RU-TOM": "Tomsk", - "RU-TUL": "Tula", - "RU-TVE": "Tver", - "RU-TY": "Tuva", - "RU-TYU": "Tyumen", - "RU-UD": "Udmurtia", - "RU-ULY": "Ulyanovsk", - "RU-VGG": "Volgograd", - "RU-VLA": "Vladimir", - "RU-VLG": "Vologda", - "RU-VOR": "Voronezh", - "RU-YAN": "Yamalia", - "RU-YAR": "Yaroslavl", - "RU-YEV": "Jewish Autonomous Oblast", - "RU-ZAB": "Transbaikalia", - "CY-01": "Nicosia", - "CY-02": "Limassol", - "CY-03": "Larnaca", - "CY-04": "Famagusta", - "CY-05": "Paphos", - "CY-06": "Kyrenia", - "BQ-BO": "Bonaire", - "BQ-SA": "Saba", - "BQ-SE": "Sint Eustatius", - "OM-BJ": "South Batina", - "OM-BS": "North Batina", - "OM-BU": "Buraymi", - "OM-DA": "Interior", - "OM-MA": "Muscat", - "OM-MU": "Musandam", - "OM-SJ": "Southeastern", - "OM-SS": "Northeastern", - "OM-WU": "Central", - "OM-ZA": "Dhahira", - "OM-ZU": "Dhofar", - "LR-BG": "Bong", - "LR-BM": "Bomi", - "LR-CM": "Grand Cape Mount", - "LR-GB": "Grand Bassa", - "LR-GG": "Grand Gedeh", - "LR-GK": "Grand Kru", - "LR-GP": "Gbarpolu", - "LR-LO": "Lofa", - "LR-MG": "Margibi", - "LR-MO": "Montserrado", - "LR-MY": "Maryland", - "LR-NI": "Nimba", - "LR-RG": "River Gee", - "LR-RI": "River Cess\n(Local variant: Rivercess)", - "LR-SI": "Sinoe", - "DM-02": "Saint Andrew", - "DM-03": "Saint David", - "DM-04": "Saint George", - "DM-05": "Saint John", - "DM-06": "Saint Joseph", - "DM-07": "Saint Luke", - "DM-08": "Saint Mark", - "DM-09": "Saint Patrick", - "DM-10": "Saint Paul", - "DM-11": "Saint Peter", - "GL-AV": "Avannaata", - "GL-KU": "Kujalleq", - "GL-QE": "Qeqqata", - "GL-QT": "Qeqertalik", - "GL-SM": "Sermersooq", - "LB-AK": "Akkar", - "LB-AS": "North Lebanon", - "LB-BA": "Beirut", - "LB-BH": "Baalbek-Hermel", - "LB-BI": "Beqaa", - "LB-JA": "South Lebanon", - "LB-JL": "Mount Lebanon", - "LB-NA": "Nabatieh", - "BH-13": "Capital Governorate", - "BH-14": "Southern Governorate", - "BH-15": "Muharraq Governorate", - "BH-17": "Northern Governorate", - "SE-AB": "Stockholms län", - "SE-AC": "Västerbottens län", - "SE-BD": "Norrbottens län", - "SE-C": "Uppsala län", - "SE-D": "Södermanlands län", - "SE-E": "Östergötlands län", - "SE-F": "Jönköpings län", - "SE-G": "Kronobergs län", - "SE-H": "Kalmar län", - "SE-I": "Gotlands län", - "SE-K": "Blekinge län", - "SE-M": "Skåne län", - "SE-N": "Hallands län", - "SE-O": "Västra Götalands län", - "SE-S": "Värmlands län", - "SE-T": "Örebro län", - "SE-U": "Västmanlands län", - "SE-W": "Dalarnas län", - "SE-X": "Gävleborgs län", - "SE-Y": "Västernorrlands län", - "SE-Z": "Jämtlands län", - "CA-AB": "Alberta", - "CA-BC": "British Columbia", - "CA-MB": "Manitoba", - "CA-NB": "New Brunswick", - "CA-NL": "Newfoundland and Labrador", - "CA-NS": "Nova Scotia", - "CA-NT": "Northwest Territories", - "CA-NU": "Nunavut", - "CA-ON": "Ontario", - "CA-PE": "Prince Edward Island", - "CA-QC": "Quebec", - "CA-SK": "Saskatchewan", - "CA-YT": "Yukon", - "GY-BA": "Barima-Waini", - "GY-CU": "Cuyuni-Mazaruni", - "GY-DE": "Demerara-Mahaica", - "GY-EB": "East Berbice-Corentyne", - "GY-ES": "Essequibo Islands-West Demerara", - "GY-MA": "Mahaica-Berbice", - "GY-PM": "Pomeroon-Supenaam", - "GY-PT": "Potaro-Siparuni", - "GY-UD": "Upper Demerara-Berbice", - "GY-UT": "Upper Takutu-Upper Essequibo", - "GM-B": "Banjul", - "GM-L": "Lower River", - "GM-M": "Central River", - "GM-N": "North Bank", - "GM-U": "Upper River", - "GM-W": "Western", - "AO-BGO": "Bengo", - "AO-BGU": "Benguela", - "AO-BIE": "Bie", - "AO-CAB": "Cabinda", - "AO-CCU": "Cuando Cubango", - "AO-CNN": "Cunene", - "AO-CNO": "North Cuanza", - "AO-CUS": "South Cuanza", - "AO-HUA": "Huambo", - "AO-HUI": "Huila", - "AO-LNO": "North Lunda", - "AO-LSU": "South Lunda", - "AO-LUA": "Luanda", - "AO-MAL": "Malanje", - "AO-MOX": "Moxico", - "AO-NAM": "Namibe", - "AO-UIG": "Uige", - "AO-ZAI": "Zaire", - "AF-BAL": "Balkh", - "AF-BAM": "Bamyan", - "AF-BDG": "Badghis", - "AF-BDS": "Badakhshan", - "AF-BGL": "Baghlan", - "AF-DAY": "Daykundi", - "AF-FRA": "Farah", - "AF-FYB": "Faryab", - "AF-GHA": "Ghazni", - "AF-GHO": "Ghōr", - "AF-HEL": "Helmand", - "AF-HER": "Herat", - "AF-JOW": "Jowzjan", - "AF-KAB": "Kabul", - "AF-KAN": "Kandahar", - "AF-KAP": "Kapisa", - "AF-KDZ": "Kunduz", - "AF-KHO": "Khost", - "AF-KNR": "Kunar", - "AF-LAG": "Laghman", - "AF-LOG": "Logar", - "AF-NAN": "Nangarhar", - "AF-NIM": "Nimruz", - "AF-NUR": "Nuristan", - "AF-PAN": "Panjshir", - "AF-PAR": "Parwan", - "AF-PIA": "Paktia", - "AF-PKA": "Paktika", - "AF-SAM": "Samangan", - "AF-SAR": "Sar-e Pol", - "AF-TAK": "Takhar", - "AF-URU": "Urozgan", - "AF-WAR": "Maidan Wardak", - "AF-ZAB": "Zabul", - "TG-C": "Central", - "TG-K": "Kara", - "TG-M": "Maritime", - "TG-P": "Plateaus", - "TG-S": "Savannahs", - "MH-L": "Ralik chain", - "MH-T": "Ratak chain", - "MH-ALK": "Ailuk", - "MH-ALL": "Ailinglaplap", - "MH-ARN": "Arno", - "MH-AUR": "Aur", - "MH-EBO": "Ebon", - "MH-ENI": "Enewetak & Ujelang", - "MH-JAB": "Jabat", - "MH-JAL": "Jaluit", - "MH-KIL": "Bikini & Kili", - "MH-KWA": "Kwajalein", - "MH-LAE": "Lae", - "MH-LIB": "Lib", - "MH-LIK": "Likiep", - "MH-MAJ": "Majuro", - "MH-MAL": "Maloelap", - "MH-MEJ": "Mejit", - "MH-MIL": "Mili", - "MH-NMK": "Namdrik", - "MH-NMU": "Namu", - "MH-RON": "Rongelap", - "MH-UJA": "Ujae", - "MH-UTI": "Utrik", - "MH-WTH": "Wotho", - "MH-WTJ": "Wotje", - "SY-DI": "Damascus", - "SY-DR": "Daraa", - "SY-DY": "Deir Ezzor", - "SY-HA": "Hasaka", - "SY-HI": "Homs", - "SY-HL": "Aleppo", - "SY-HM": "Hama", - "SY-ID": "Idlib", - "SY-LA": "Latakia", - "SY-QU": "Quneitra", - "SY-RA": "Raqqa", - "SY-RD": "Damascus Countryside", - "SY-SU": "Suwayda", - "SY-TA": "Tartus", - "UZ-AN": "Andijan", - "UZ-BU": "Bukhara", - "UZ-FA": "Fergana", - "UZ-JI": "Jizzakh", - "UZ-NG": "Namangan", - "UZ-NW": "Navoiy", - "UZ-QA": "Qashqadaryo", - "UZ-QR": "Karakalpakstan", - "UZ-SA": "Samarqand", - "UZ-SI": "Sirdaryo", - "UZ-SU": "Surkhondaryo", - "UZ-TK": "Tashkent City", - "UZ-TO": "Tashkent", - "UZ-XO": "Khorezm", - "IN-AN": "Andaman and Nicobar Islands", - "IN-AP": "Andhra Pradesh", - "IN-AR": "Arunāchal Pradesh", - "IN-AS": "Assam", - "IN-BR": "Bihār", - "IN-CG": "Chhattīsgarh", - "IN-CH": "Chandīgarh", - "IN-DH": "Dādra and Nagar Haveli and Damān and Diu[2]", - "IN-DL": "Delhi", - "IN-GA": "Goa", - "IN-GJ": "Gujarāt", - "IN-HP": "Himāchal Pradesh", - "IN-HR": "Haryāna", - "IN-JH": "Jhārkhand", - "IN-JK": "Jammu and Kashmīr", - "IN-KA": "Karnātaka", - "IN-KL": "Kerala", - "IN-LA": "Ladākh", - "IN-LD": "Lakshadweep", - "IN-MH": "Mahārāshtra", - "IN-ML": "Meghālaya", - "IN-MN": "Manipur", - "IN-MP": "Madhya Pradesh", - "IN-MZ": "Mizoram", - "IN-NL": "Nāgāland", - "IN-OD": "Odisha", - "IN-PB": "Punjab", - "IN-PY": "Puducherry (Local variant: Pondicherry)", - "IN-RJ": "Rājasthān", - "IN-SK": "Sikkim", - "IN-TN": "Tamil Nādu", - "IN-TR": "Tripura", - "IN-TS": "Telangāna[3]", - "IN-UK": "Uttarākhand", - "IN-UP": "Uttar Pradesh", - "IN-WB": "West Bengal", - "IS-1": "Capital Region", - "IS-2": "Southern Peninsula", - "IS-3": "Western Region", - "IS-4": "Westfjords", - "IS-5": "Northwestern Region", - "IS-6": "Northeastern Region", - "IS-7": "Eastern Region", - "IS-8": "Southern Region", - "IS-AKN": "Akranes (Market) Town", - "IS-AKU": "Akureyri Town", - "IS-ARN": "Arnes District", - "IS-ASA": "Asa District", - "IS-BLA": "Blaskoga Settlement", - "IS-BOG": "Borgar Settlement", - "IS-BOL": "Bolungarvik (Market) Town", - "IS-DAB": "Dala Settlement", - "IS-DAV": "Dalvik Settlement", - "IS-EOM": "Eyja and Miklaholt District", - "IS-EYF": "Eyjafjordur Village", - "IS-FJD": "Fjarda Settlement", - "IS-FJL": "Fjalla Settlement", - "IS-FLA": "Floa District", - "IS-FLR": "Fljotsdalur District", - "IS-GAR": "Garda Town", - "IS-GOG": "Grimsnes and Grafnings District", - "IS-GRN": "Grindavik Town", - "IS-GRU": "Grundarfjordur Town", - "IS-GRY": "Grytubakka District", - "IS-HAF": "Hafnarfjordur (Market) Town", - "IS-HRG": "Horgar Village", - "IS-HRU": "Hrunamanna District", - "IS-HUG": "Huna Settlement", - "IS-HUV": "Western Hunathing", - "IS-HVA": "Hvalfjordur Village", - "IS-HVE": "Hveragerdi Town", - "IS-ISA": "Isafjordur Town", - "IS-KAL": "Kaldrananes District", - "IS-KJO": "Kjosar District", - "IS-KOP": "Kopavogur Town", - "IS-LAN": "Langanes Settlement", - "IS-MOS": "Mosfell Town", - "IS-MUL": "Mulathing", - "IS-MYR": "Myrdalur District", - "IS-NOR": "Nordurthing", - "IS-RGE": "Eastern Rangarthing", - "IS-RGY": "Outer Rangarthing", - "IS-RHH": "Reykhola District", - "IS-RKN": "Reykjanes Town", - "IS-RKV": "Reykjavik City", - "IS-SBT": "Svalbardsstrond District", - "IS-SDN": "Sudurnesja Town", - "IS-SDV": "Sudavik District", - "IS-SEL": "Seltjarnarnes Town", - "IS-SFA": "Arborg Township", - "IS-SHF": "Hornafjordur Township", - "IS-SKF": "Skaftar District", - "IS-SKG": "Skaga Settlement", - "IS-SKO": "Skorradalur District", - "IS-SKR": "Skagafjordur", - "IS-SNF": "Snaefell Town", - "IS-SOG": "Skeida and Gnupverja District", - "IS-SOL": "Olfus Township", - "IS-SSS": "Skagastrond Township", - "IS-STR": "Stranda Settlement", - "IS-STY": "Stykkisholmur Town", - "IS-SVG": "Vogar Township", - "IS-TAL": "Talknafjordur District", - "IS-THG": "Thingeyjar Village", - "IS-TJO": "Tjornes District", - "IS-VEM": "Vestmannaeyja Town", - "IS-VER": "Western Settlement", - "IS-VOP": "Vopnafjordur District", - "SC-01": "Anse aux Pins", - "SC-02": "Anse Boileau", - "SC-03": "Anse Etoile", - "SC-04": "Au Cap", - "SC-05": "Anse Royale", - "SC-06": "Baie Lazare", - "SC-07": "Baie Sainte Anne", - "SC-08": "Beau Vallon", - "SC-09": "Bel Air", - "SC-10": "Bel Ombre", - "SC-11": "Cascade", - "SC-12": "Glacis", - "SC-13": "Grand Anse Mahe", - "SC-14": "Grand Anse Praslin", - "SC-15": "La Digue", - "SC-16": "English River", - "SC-17": "Mont Buxton", - "SC-18": "Mont Fleuri", - "SC-19": "Plaisance", - "SC-20": "Pointe Larue", - "SC-21": "Port Glaud", - "SC-22": "Saint Louis", - "SC-23": "Takamaka", - "SC-24": "Les Mamelles", - "SC-25": "Roche Caiman", - "SC-26": "Ile Perseverance I", - "SC-27": "Ile Perseverance II", - "JM-01": "Kingston", - "JM-02": "Saint Andrew", - "JM-03": "Saint Thomas", - "JM-04": "Portland", - "JM-05": "Saint Mary", - "JM-06": "Saint Ann", - "JM-07": "Trelawny", - "JM-08": "Saint James", - "JM-09": "Hanover", - "JM-10": "Westmoreland", - "JM-11": "Saint Elizabeth", - "JM-12": "Manchester", - "JM-13": "Clarendon", - "JM-14": "Saint Catherine", - "CL-AI": "Aisen", - "CL-AN": "Antofagasta", - "CL-AP": "Arica and Parinacota", - "CL-AR": "La Araucania", - "CL-AT": "Atacama", - "CL-BI": "Biobio", - "CL-CO": "Coquimbo", - "CL-LI": "O'Higgins", - "CL-LL": "The Lakes", - "CL-LR": "The Rivers", - "CL-MA": "Magellan", - "CL-ML": "Maule", - "CL-NB": "Nuble", - "CL-RM": "Santiago Metropolitan Region", - "CL-TA": "Tarapaca", - "CL-VS": "Valparaiso", - "DK-81": "North Denmark", - "DK-82": "Central Denmark", - "DK-83": "Southern Denmark", - "DK-84": "Capital Region", - "DK-85": "Zealand", - "CO-AMA": "Amazonia", - "CO-ANT": "Antioquia", - "CO-ARA": "Arauca", - "CO-ATL": "Atlantico", - "CO-BOL": "Bolivar", - "CO-BOY": "Boyaca", - "CO-CAL": "Caldas", - "CO-CAQ": "Caqueta", - "CO-CAS": "Casanare", - "CO-CAU": "Cauca", - "CO-CES": "Cesar", - "CO-CHO": "Choco", - "CO-COR": "Cordoba", - "CO-CUN": "Cundinamarca", - "CO-DC": "Bogota", - "CO-GUA": "Guainia", - "CO-GUV": "Guaviare", - "CO-HUI": "Huila", - "CO-LAG": "La Guajira", - "CO-MAG": "Magdalena", - "CO-MET": "Meta", - "CO-NAR": "Narino", - "CO-NSA": "North Santander", - "CO-PUT": "Putumayo", - "CO-QUI": "Quindio", - "CO-RIS": "Risaralda", - "CO-SAN": "Santander", - "CO-SAP": "San Andres", - "CO-SUC": "Sucre", - "CO-TOL": "Tolima", - "CO-VAC": "Cauca Valley", - "CO-VAU": "Vaupes", - "CO-VID": "Vichada", - "AT-1": "Burgenland", - "AT-2": "Carinthia", - "AT-3": "Lower Austria", - "AT-4": "Upper Austria", - "AT-5": "Salzburg", - "AT-6": "Styria", - "AT-7": "Tyrol", - "AT-8": "Vorarlberg", - "AT-9": "Vienna", - "UM-67": "Johnston Atoll", - "UM-71": "Midway Islands", - "UM-76": "Navassa Island", - "UM-79": "Wake Island", - "UM-81": "Baker Island", - "UM-84": "Howland Island", - "UM-86": "Jarvis Island", - "UM-89": "Kingman Reef", - "UM-95": "Palmyra Atoll", - "PG-CPK": "Chimbu", - "PG-CPM": "Central", - "PG-EBR": "East New Britain", - "PG-EHG": "Eastern Highlands", - "PG-EPW": "Enga", - "PG-ESW": "East Sepik", - "PG-GPK": "Gulf", - "PG-HLA": "Hela", - "PG-JWK": "Jiwaka", - "PG-MBA": "Milne Bay", - "PG-MPL": "Morobe", - "PG-MPM": "Madang", - "PG-MRL": "Manus", - "PG-NCD": "National Capital District (Port Moresby)", - "PG-NIK": "New Ireland", - "PG-NPP": "Northern", - "PG-NSB": "Bougainville", - "PG-SAN": "West Sepik", - "PG-SHM": "Southern Highlands", - "PG-WBK": "West New Britain", - "PG-WHM": "Western Highlands", - "PG-WPD": "Western", - "GR-69": "Mount Athos", - "GR-A": "Eastern Macedonia and Thrace", - "GR-B": "Central Macedonia", - "GR-C": "Western Macedonia", - "GR-D": "Epirus", - "GR-E": "Thessaly", - "GR-F": "Ionian Islands", - "GR-G": "Western Greece", - "GR-H": "Central Greece", - "GR-I": "Attica", - "GR-J": "Peloponnese", - "GR-K": "Northern Aegean", - "GR-L": "Southern Aegean", - "GR-M": "Crete", - "KI-G": "Gilbert Islands", - "KI-L": "Line Islands", - "KI-P": "Phoenix Islands", - "FR-20R": "Corsica", - "FR-ARA": "Auvergne-Rhone-Alps", - "FR-BFC": "Burgundy-Free County", - "FR-BRE": "Brittany", - "FR-CVL": "Center-Loire Valley", - "FR-GES": "Great East", - "FR-HDF": "Upper France", - "FR-IDF": "Paris", - "FR-NAQ": "New Aquitania", - "FR-NOR": "Normandy", - "FR-OCC": "Occitania", - "FR-PAC": "Provence-Alps-French Riviera", - "FR-PDL": "Loire Country", - "FR-01": "Ain", - "FR-02": "Aisne", - "FR-03": "Allier", - "FR-04": "Upper Provence Alps", - "FR-05": "Upper Alps", - "FR-06": "Maritime Alps", - "FR-07": "Ardeche", - "FR-08": "Ardennes", - "FR-09": "Ariege", - "FR-10": "Aube", - "FR-11": "Aude", - "FR-12": "Aveyron", - "FR-13": "Rhone Delta", - "FR-14": "Calvados", - "FR-15": "Cantal", - "FR-16": "Charente", - "FR-17": "Maritime Charente", - "FR-18": "Cher", - "FR-19": "Correze", - "FR-21": "Gold Coast", - "FR-22": "Sea Coasts", - "FR-23": "Creuse", - "FR-24": "Dordogne", - "FR-25": "Doubs", - "FR-26": "Drome", - "FR-27": "Eure", - "FR-28": "Eure and Loir", - "FR-29": "Finistere", - "FR-2A": "Southern Corsica", - "FR-2B": "Upper Corsica", - "FR-30": "Gard", - "FR-31": "Upper Garonne", - "FR-32": "Gers", - "FR-33": "Gironde", - "FR-34": "Herault", - "FR-35": "Ille and Vilaine", - "FR-36": "Indre", - "FR-37": "Indre and Loire", - "FR-38": "Isere", - "FR-39": "Jura", - "FR-40": "Landes", - "FR-41": "Loir and Cher", - "FR-42": "Loire", - "FR-43": "Upper Loire", - "FR-44": "Atlantic Loire", - "FR-45": "Loiret", - "FR-46": "Lot", - "FR-47": "Lot and Garonne", - "FR-48": "Lozere", - "FR-49": "Maine and Loire", - "FR-50": "Manche", - "FR-51": "Marne", - "FR-52": "Upper Marne", - "FR-53": "Mayenne", - "FR-54": "Meurthe and Moselle", - "FR-55": "Meuse", - "FR-56": "Morbihan", - "FR-57": "Moselle", - "FR-58": "Nievre", - "FR-59": "North", - "FR-60": "Oise", - "FR-61": "Orne", - "FR-62": "Calais Passage", - "FR-63": "Dome Hill", - "FR-64": "Atlantic Pyrenees", - "FR-65": "Upper Pyrenees", - "FR-66": "Oriental Pyrenees", - "FR-69": "Rhone", - "FR-69M": "Lyon", - "FR-6AE": "Alsace", - "FR-70": "Upper Saone", - "FR-71": "Saone and Loire", - "FR-72": "Sarthe", - "FR-73": "Savoy", - "FR-74": "Upper Savoy", - "FR-75C": "Paris City", - "FR-76": "Maritime Seine", - "FR-77": "Seine and Marne", - "FR-78": "Yvelines", - "FR-79": "Two Sevres", - "FR-80": "Somme", - "FR-81": "Tarn", - "FR-82": "Tarn and Garonne", - "FR-83": "Var", - "FR-84": "Vaucluse", - "FR-85": "Vendee", - "FR-86": "Vienne", - "FR-87": "Upper Vienne", - "FR-88": "Vosges", - "FR-89": "Yonne", - "FR-90": "Belfort Territory", - "FR-91": "Essonne", - "FR-92": "Upper Seine", - "FR-93": "Saint Denis Seine", - "FR-94": "Marne Valley", - "FR-95": "Oise Valley", - "FR-971": "Guadeloupe", - "FR-972": "Martinique", - "FR-973": "French Guiana", - "FR-974": "Reunion", - "FR-976": "Mayotte", - "FR-67": "Lower Rhine", - "FR-68": "Upper Rhine", - "FR-BL": "Saint Barts", - "FR-CP": "Clipperton", - "FR-MF": "Saint Martin", - "FR-NC": "New Caledonia", - "FR-PF": "French Polynesia", - "FR-PM": "Saint Peter and Miquelon", - "FR-TF": "French Southern Territories", - "FR-WF": "Wallis and Futuna", - "FR-A": "Alsace", - "FR-B": "Aquitaine", - "FR-C": "Auvergne", - "FR-D": "Burgundy", - "FR-E": "Brittany", - "FR-F": "Centre-Val de Loire", - "FR-G": "Champagne-Ardenne", - "FR-H": "Corsica", - "FR-I": "Franche-Comté", - "FR-J": "Île-de-France", - "FR-K": "Languedoc-Roussillon", - "FR-L": "Limousin", - "FR-M": "Lorraine", - "FR-N": "Midi-Pyrénées", - "FR-O": "Nord-Pas-de-Calais", - "FR-P": "Lower Normandy", - "FR-Q": "Upper Normandy", - "FR-R": "Pays de la Loire", - "FR-S": "Picardy", - "FR-T": "Poitou-Charentes", - "FR-U": "Provence-Alpes-Côte d'Azur", - "FR-V": "Rhône-Alpes", - "CG-11": "Bouenza", - "CG-12": "Pool", - "CG-13": "Sangha", - "CG-14": "Plateaux", - "CG-15": "West Cuvette", - "CG-16": "Black Point", - "CG-2": "Lekoumou", - "CG-5": "Kouilou", - "CG-7": "Likouala", - "CG-8": "Cuvette", - "CG-9": "Niari", - "CG-BZV": "Brazzaville", - "GD-01": "Saint Andrew", - "GD-02": "Saint David", - "GD-03": "Saint George", - "GD-04": "Saint John", - "GD-05": "Saint Mark", - "GD-06": "Saint Patrick", - "GD-10": "Southern Grenadine Islands", - "SD-DC": "Central Darfur\n(local variant: Zalingei)", - "SD-DE": "East Darfur", - "SD-DN": "North Darfur", - "SD-DS": "South Darfur", - "SD-DW": "West Darfur", - "SD-GD": "Gedaref", - "SD-GK": "West Kordofan", - "SD-GZ": "Gezira", - "SD-KA": "Kassala", - "SD-KH": "Khartoum", - "SD-KN": "North Kordofan", - "SD-KS": "South Kordofan", - "SD-NB": "Blue Nile", - "SD-NO": "Northern", - "SD-NR": "River Nile", - "SD-NW": "White Nile", - "SD-RS": "Red Sea", - "SD-SI": "Sennar", - "GT-01": "Guatemala", - "GT-02": "El Progreso", - "GT-03": "Sacatepéquez", - "GT-04": "Chimaltenango", - "GT-05": "Escuintla", - "GT-06": "Saint Rose", - "GT-07": "Sololá", - "GT-08": "Totonicapán", - "GT-09": "Quetzaltenango", - "GT-10": "Suchitepéquez", - "GT-11": "Retalhuleu", - "GT-12": "Saint Mark", - "GT-13": "Huehuetenango", - "GT-14": "Quiché", - "GT-15": "Lower Verapaz", - "GT-16": "Upper Verapaz", - "GT-17": "Petén", - "GT-18": "Izabal", - "GT-19": "Zacapa", - "GT-20": "Chiquimula", - "GT-21": "Jalapa", - "GT-22": "Jutiapa", - "MT-01": "Attard", - "MT-02": "Balzan", - "MT-03": "Birgu", - "MT-04": "Birkirkara", - "MT-05": "Birżebbuġa", - "MT-06": "Bormla", - "MT-07": "Dingli", - "MT-08": "Fgura", - "MT-09": "Floriana", - "MT-10": "Fontana", - "MT-11": "Gudja", - "MT-12": "Gżira", - "MT-13": "Għajnsielem", - "MT-14": "Għarb", - "MT-15": "Għargħur", - "MT-16": "Għasri", - "MT-17": "Għaxaq", - "MT-18": "Ħamrun", - "MT-19": "Iklin", - "MT-20": "Isla", - "MT-21": "Kalkara", - "MT-22": "Kerċem", - "MT-23": "Kirkop", - "MT-24": "Lija", - "MT-25": "Luqa", - "MT-26": "Marsa", - "MT-27": "Marsaskala", - "MT-28": "Marsaxlokk", - "MT-29": "Mdina", - "MT-30": "Mellieħa", - "MT-31": "Mġarr", - "MT-32": "Mosta", - "MT-33": "Mqabba", - "MT-34": "Msida", - "MT-35": "Mtarfa", - "MT-36": "Munxar", - "MT-37": "Nadur", - "MT-38": "Naxxar", - "MT-39": "Paola", - "MT-40": "Pembroke", - "MT-41": "Pietà", - "MT-42": "Qala", - "MT-43": "Qormi", - "MT-44": "Qrendi", - "MT-45": "Rabat Gozo", - "MT-46": "Rabat Malta", - "MT-47": "Safi", - "MT-48": "Saint Julian's", - "MT-49": "Saint John", - "MT-50": "Saint Lawrence", - "MT-51": "Saint Paul's Bay", - "MT-52": "Sannat", - "MT-53": "Saint Lucia's", - "MT-54": "Santa Venera", - "MT-55": "Siġġiewi", - "MT-56": "Sliema", - "MT-57": "Swieqi", - "MT-58": "Ta' Xbiex", - "MT-59": "Tarxien", - "MT-60": "Valletta", - "MT-61": "Xagħra", - "MT-62": "Xewkija", - "MT-63": "Xgħajra", - "MT-64": "Żabbar", - "MT-65": "Żebbuġ Gozo", - "MT-66": "Żebbuġ Malta", - "MT-67": "Żejtun", - "MT-68": "Żurrieq", - "JO-AJ": "Ajloun", - "JO-AM": "Amman", - "JO-AQ": "Aqaba", - "JO-AT": "Tafilah", - "JO-AZ": "Zarqa", - "JO-BA": "Balqa", - "JO-IR": "Irbid", - "JO-JA": "Jerash", - "JO-KA": "Karak", - "JO-MA": "Mafraq", - "JO-MD": "Madaba", - "JO-MN": "Ma'an", - "HT-AR": "Artibonite", - "HT-CE": "Center", - "HT-GA": "Big Cove", - "HT-ND": "North", - "HT-NE": "Northeast", - "HT-NI": "Nippes", - "HT-NO": "Northwest", - "HT-OU": "West", - "HT-SD": "South", - "HT-SE": "Southeast", - "ZW-BU": "Bulawayo", - "ZW-HA": "Harare", - "ZW-MA": "Manicaland", - "ZW-MC": "Mashonaland Central", - "ZW-ME": "Mashonaland East", - "ZW-MI": "Midlands", - "ZW-MN": "Matabeleland North", - "ZW-MS": "Matabeleland South", - "ZW-MV": "Masvingo", - "ZW-MW": "Mashonaland West", - "SL-E": "Eastern", - "SL-N": "Northern", - "SL-NW": "North Western", - "SL-S": "Southern", - "SL-W": "Western Area (Freetown)", - "TD-BA": "Batha", - "TD-BG": "Bahr El Gazal", - "TD-BO": "Borkou", - "TD-CB": "Chari-Baguirmi", - "TD-EE": "East Ennedi", - "TD-EO": "West Ennedi", - "TD-GR": "Guera", - "TD-HL": "Hadjer Lamis", - "TD-KA": "Kanem", - "TD-LC": "Lake", - "TD-LO": "Western Logone", - "TD-LR": "Eastern Logone", - "TD-MA": "Mandoul", - "TD-MC": "Middle Chari", - "TD-ME": "East Mayo-Kebbi", - "TD-MO": "West Mayo-Kebbi", - "TD-ND": "N'Djamena City", - "TD-OD": "Wadai", - "TD-SA": "Salamat", - "TD-SI": "Sila", - "TD-TA": "Tandjile", - "TD-TI": "Tibesti", - "TD-WF": "Wadi Fira", - "BZ-BZ": "Belize", - "BZ-CY": "Cayo", - "BZ-CZL": "Corozal", - "BZ-OW": "Orange Walk", - "BZ-SC": "Stann Creek", - "BZ-TOL": "Toledo", - "TT-ARI": "Arima", - "TT-CHA": "Chaguanas", - "TT-CTT": "Couva-Tabaquite-Talparo", - "TT-DMN": "Diego Martin", - "TT-MRC": "Mayaro-Rio Claro", - "TT-PED": "Penal-Debe", - "TT-POS": "Port of Spain", - "TT-PRT": "Princes Town", - "TT-PTF": "Point Fortin", - "TT-SFO": "San Fernando", - "TT-SGE": "Sangre Grande", - "TT-SIP": "Siparia", - "TT-SJL": "San Juan-Laventille", - "TT-TOB": "Tobago", - "TT-TUP": "Tunapuna-Piarco", - "TZ-01": "", - "TZ-02": "", - "TZ-03": "", - "TZ-04": "", - "TZ-05": "", - "TZ-06": "Pemba North", - "TZ-07": "Zanzibar North", - "TZ-08": "", - "TZ-09": "", - "TZ-10": "Pemba South", - "TZ-11": "Zanzibar South", - "TZ-12": "", - "TZ-13": "", - "TZ-14": "", - "TZ-15": "Zanzibar West", - "TZ-16": "", - "TZ-17": "", - "TZ-18": "", - "TZ-19": "Coast", - "TZ-20": "", - "TZ-21": "", - "TZ-22": "", - "TZ-23": "", - "TZ-24": "", - "TZ-25": "", - "TZ-26": "", - "TZ-27": "", - "TZ-28": "", - "TZ-29": "", - "TZ-30": "", - "TZ-31": "Songwe", - "EC-A": "Azuay", - "EC-B": "Bolivar", - "EC-C": "Carchi", - "EC-D": "Orellana", - "EC-E": "Esmeraldas", - "EC-F": "Canar", - "EC-G": "Guayas", - "EC-H": "Chimborazo", - "EC-I": "Imbabura", - "EC-L": "Loja", - "EC-M": "Manabi", - "EC-N": "Napo", - "EC-O": "The Gold", - "EC-P": "Pichincha", - "EC-R": "The Rivers", - "EC-S": "Morona Santiago", - "EC-SD": "Saint Dominic", - "EC-SE": "Saint Helen", - "EC-T": "Tungurahua", - "EC-U": "Sucumbios", - "EC-W": "Galapagos", - "EC-X": "Cotopaxi", - "EC-Y": "Pastaza", - "EC-Z": "Zamora Chinchipe", - "BS-AK": "Acklins", - "BS-BI": "Bimini", - "BS-BP": "Black Point", - "BS-BY": "Berry Islands", - "BS-CE": "Central Eleuthera", - "BS-CI": "Cat Island", - "BS-CK": "Crooked Island and Long Cay", - "BS-CO": "Central Abaco", - "BS-CS": "Central Andros", - "BS-EG": "East Grand Bahama", - "BS-EX": "Exuma", - "BS-FP": "City of Freeport", - "BS-GC": "Grand Cay", - "BS-HI": "Harbour Island", - "BS-HT": "Hope Town", - "BS-IN": "Inagua", - "BS-LI": "Long Island", - "BS-MC": "Mangrove Cay", - "BS-MG": "Mayaguana", - "BS-MI": "Moore's Island", - "BS-NE": "North Eleuthera", - "BS-NO": "North Abaco", - "BS-NP": "New Providence", - "BS-NS": "North Andros", - "BS-RC": "Rum Cay", - "BS-RI": "Ragged Island", - "BS-SA": "South Andros", - "BS-SE": "South Eleuthera", - "BS-SO": "South Abaco", - "BS-SS": "San Salvador", - "BS-SW": "Spanish Wells", - "BS-WG": "West Grand Bahama", - "SG-01": "Central Singapore", - "SG-02": "North East", - "SG-03": "North West", - "SG-04": "South East", - "SG-05": "South West", - "IR-00": "Markazi", - "IR-01": "Gilan", - "IR-02": "Mazandaran", - "IR-03": "East Azerbaijan", - "IR-04": "West Azerbaijan", - "IR-05": "Kermanshah", - "IR-06": "Khuzestan", - "IR-07": "Fars", - "IR-08": "Kerman", - "IR-09": "Central Khorasan", - "IR-10": "Isfahan", - "IR-11": "Sistan and Baluchestan", - "IR-12": "Kurdistan", - "IR-13": "Hamadan", - "IR-14": "Chaharmahal and Bakhtiari", - "IR-15": "Lorestan", - "IR-16": "Ilam", - "IR-17": "Kohgiluyeh and Boyer-Ahmad", - "IR-18": "Bushehr", - "IR-19": "Zanjan", - "IR-20": "Semnan", - "IR-21": "Yazd", - "IR-22": "Hormozgan", - "IR-23": "Tehran", - "IR-24": "Ardabil", - "IR-25": "Qom", - "IR-26": "Qazvin", - "IR-27": "Golestan", - "IR-28": "North Khorasan", - "IR-29": "South Khorasan", - "IR-30": "Alborz", - "DE-BB": "Brandenburg", - "DE-BE": "Berlin", - "DE-BW": "Baden-Württemberg", - "DE-BY": "Bavaria", - "DE-HB": "Bremen", - "DE-HE": "Hesse", - "DE-HH": "Hamburg", - "DE-MV": "Mecklenburg-Western Pomerania", - "DE-NI": "Lower Saxony", - "DE-NW": "North Rhine-Westphalia", - "DE-RP": "Rhineland-Palatinate", - "DE-SH": "Schleswig-Holstein", - "DE-SL": "Saarland", - "DE-SN": "Saxony", - "DE-ST": "Saxony-Anhalt", - "DE-TH": "Thuringia", - "CU-01": "Pinar del Rio", - "CU-03": "Havana", - "CU-04": "Matanzas", - "CU-05": "Clara City", - "CU-06": "Cienfuegos", - "CU-07": "Holy Spirit", - "CU-08": "Ciego de Avila", - "CU-09": "Camaguey", - "CU-10": "Las Tunas", - "CU-11": "Holguin", - "CU-12": "Granma", - "CU-13": "Santiago", - "CU-14": "Guantanamo", - "CU-15": "Artemisa", - "CU-16": "Mayabeque", - "CU-99": "Isle of Youth", - "LC-01": "Anse la Raye", - "LC-02": "Castries", - "LC-03": "Choiseul", - "LC-05": "Dennery", - "LC-06": "Gros Islet", - "LC-07": "Laborie", - "LC-08": "Micoud", - "LC-10": "Soufrière", - "LC-11": "Vieux Fort", - "LC-12": "Canaries", - "BA-BIH": "Federation of Bosnia and Herzegovina", - "BA-BRC": "Brčko District", - "BA-SRP": "Republika Srpska", - "NL-DR": "Drenthe", - "NL-FL": "Flevoland", - "NL-FR": "Friesland", - "NL-GE": "Gelderland", - "NL-GR": "Groningen", - "NL-LI": "Limburg", - "NL-NB": "North Brabant", - "NL-NH": "North Holland", - "NL-OV": "Overijssel", - "NL-UT": "Utrecht", - "NL-ZE": "Zeeland", - "NL-ZH": "South Holland", - "RW-01": "City of Kigali", - "RW-02": "Eastern", - "RW-03": "Northern", - "RW-04": "Western", - "RW-05": "Southern", - "DO-33": "Northeast Cibao", - "DO-34": "Northwest Cibao", - "DO-35": "North Cibao", - "DO-36": "South Cibao", - "DO-37": "The Valley", - "DO-38": "Enriquillo", - "DO-39": "Higuamo", - "DO-40": "Ozama", - "DO-41": "Valdesia", - "DO-42": "Yuma", - "DO-01": "Santo Domingo City", - "DO-02": "Azua", - "DO-03": "Baoruco", - "DO-04": "Barahona", - "DO-05": "Dajabon", - "DO-06": "Duarte", - "DO-07": "Elias Pina", - "DO-08": "El Seibo", - "DO-09": "Espaillat", - "DO-10": "Independence", - "DO-11": "La Altagracia", - "DO-12": "La Romana", - "DO-13": "La Vega", - "DO-14": "Maria Trinidad Sanchez", - "DO-15": "Christ Mountain", - "DO-16": "Pedernales", - "DO-17": "Peravia", - "DO-18": "Silver Port", - "DO-19": "Mirabal Sisters", - "DO-20": "Samana", - "DO-21": "Saint Christopher", - "DO-22": "Saint John", - "DO-23": "Saint Peter", - "DO-24": "Sanchez Ramirez", - "DO-25": "Santiago", - "DO-26": "Santiago Rodriguez", - "DO-27": "Valverde", - "DO-28": "Monsignor Nouel", - "DO-29": "Silver Mountain", - "DO-30": "Great Herd", - "DO-31": "Saint Joseph", - "DO-32": "Santo Domingo", - "SB-CE": "Central", - "SB-CH": "Choiseul", - "SB-CT": "Capital Territory (Honiara)", - "SB-GU": "Guadalcanal", - "SB-IS": "Isabel", - "SB-MK": "Makira-Ulawa", - "SB-ML": "Malaita", - "SB-RB": "Rennell and Bellona", - "SB-TE": "Temotu", - "SB-WE": "Western", - "CM-AD": "Adamaoua", - "CM-CE": "Centre", - "CM-EN": "Far North", - "CM-ES": "East", - "CM-LT": "Littoral", - "CM-NO": "North", - "CM-NW": "North-West", - "CM-OU": "West", - "CM-SU": "South", - "CM-SW": "South-West", - "GW-L": "East", - "GW-N": "North", - "GW-S": "South", - "VE-A": "Caracas", - "VE-B": "Anzoategui", - "VE-C": "Apure", - "VE-D": "Aragua", - "VE-E": "Barinas", - "VE-F": "Bolivar", - "VE-G": "Carabobo", - "VE-H": "Cojedes", - "VE-I": "Falcon", - "VE-J": "Guarico", - "VE-K": "Lara", - "VE-L": "Merida", - "VE-M": "Miranda", - "VE-N": "Monagas", - "VE-O": "New Sparta", - "VE-P": "Portuguesa", - "VE-R": "Sucre", - "VE-S": "Tachira", - "VE-T": "Trujillo", - "VE-U": "Yaracuy", - "VE-V": "Zulia", - "VE-W": "Federal Dependencies", - "VE-X": "La Guaira", - "VE-Y": "Amacuro Delta", - "VE-Z": "Amazonia", - "AZ-NX": "Nakhchivan", - "AZ-ABS": "Absheron", - "AZ-AGA": "Aghstafa", - "AZ-AGC": "Aghjabadi", - "AZ-AGM": "Aghdam", - "AZ-AGS": "Agdash", - "AZ-AGU": "Aghsu", - "AZ-AST": "Astara", - "AZ-BA": "Baku", - "AZ-BAB": "Babek", - "AZ-BAL": "Balakan", - "AZ-BAR": "Barda", - "AZ-BEY": "Beylagan", - "AZ-BIL": "Bilasuvar", - "AZ-CAB": "Jabrayil", - "AZ-CAL": "Jalilabad", - "AZ-CUL": "Julfa", - "AZ-DAS": "Dashkasan", - "AZ-FUZ": "Fuzuli", - "AZ-GA": "Ganja", - "AZ-GAD": "Gadabay", - "AZ-GOR": "Goranboy", - "AZ-GOY": "Goychay", - "AZ-GYG": "Goygol", - "AZ-HAC": "Hajigabul", - "AZ-IMI": "Imishli", - "AZ-ISM": "Ismayilli", - "AZ-KAL": "Kalbajar", - "AZ-KAN": "Kangarli", - "AZ-KUR": "Kurdamir", - "AZ-LA": "Lankaran City", - "AZ-LAC": "Lachin", - "AZ-LAN": "Lankaran", - "AZ-LER": "Lerik", - "AZ-MAS": "Masally", - "AZ-MI": "Mingachevir", - "AZ-NA": "Naftalan", - "AZ-NEF": "Neftchala", - "AZ-NV": "Nakhchivan City", - "AZ-OGU": "Oghuz", - "AZ-ORD": "Ordubad", - "AZ-QAB": "Gabala", - "AZ-QAX": "Gakh", - "AZ-QAZ": "Gazakh", - "AZ-QBA": "Guba", - "AZ-QBI": "Gubadlı", - "AZ-QOB": "Gobustan", - "AZ-QUS": "Gusar", - "AZ-SA": "Shaki City", - "AZ-SAB": "Sabirabad", - "AZ-SAD": "Sadarak", - "AZ-SAH": "Shahbuz", - "AZ-SAK": "Shaki", - "AZ-SAL": "Salyan", - "AZ-SAR": "Sharur", - "AZ-SAT": "Saatly", - "AZ-SBN": "Shabran", - "AZ-SIY": "Siyazan", - "AZ-SKR": "Shamkir", - "AZ-SM": "Sumgayit", - "AZ-SMI": "Shamakhi", - "AZ-SMX": "Samukh", - "AZ-SR": "Shirvan", - "AZ-SUS": "Shusha", - "AZ-TAR": "Tartar", - "AZ-TOV": "Tovuz", - "AZ-UCA": "Ujar", - "AZ-XA": "Stepanakert", - "AZ-XAC": "Khachmaz", - "AZ-XCI": "Khojaly", - "AZ-XIZ": "Khizi", - "AZ-XVD": "Khojavend", - "AZ-YAR": "Yardimli", - "AZ-YE": "Yevlakh City", - "AZ-YEV": "Yevlakh", - "AZ-ZAN": "Zangilan", - "AZ-ZAQ": "Zagatala", - "AZ-ZAR": "Zardab", - "MU-AG": "Agalega Islands", - "MU-BL": "Black River", - "MU-CC": "Cargados Carajos Shoals\n(local variant: Saint Brandon Islands)", - "MU-FL": "Flacq", - "MU-GP": "Grand Port", - "MU-MO": "Moka", - "MU-PA": "Pamplemousses", - "MU-PL": "Port Louis", - "MU-PW": "Plaines Wilhems", - "MU-RO": "Rodrigues Island", - "MU-RR": "Rivière du Rempart", - "MU-SA": "Savanne", - "PK-BA": "Balochistan", - "PK-GB": "Gilgit-Baltistan", - "PK-IS": "Islamabad", - "PK-JK": "Azad Jammu and Kashmir\n(local variant: AJ&K)", - "PK-KP": "Khyber Pakhtunkhwa", - "PK-PB": "Punjab", - "PK-SD": "Sindh", - "PK-TA": "Federally Administered Tribal Areas", - "AG-03": "Saint George", - "AG-04": "Saint John", - "AG-05": "Saint Mary", - "AG-06": "Saint Paul", - "AG-07": "Saint Peter", - "AG-08": "Saint Philip", - "AG-10": "Barbuda", - "AG-11": "Redonda", - "ER-AN": "Anseba", - "ER-DK": "Southern Red Sea", - "ER-DU": "Southern", - "ER-GB": "Gash-Barka", - "ER-MA": "Central", - "ER-SK": "Northern Red Sea", - "SO-AW": "Awdal", - "SO-BK": "Bakool", - "SO-BN": "Banaadir", - "SO-BR": "Bari", - "SO-BY": "Bay", - "SO-GA": "Galguduud", - "SO-GE": "Gedo", - "SO-HI": "Hiiraan", - "SO-JD": "Middle Juba", - "SO-JH": "Lower Juba", - "SO-MU": "Mudug", - "SO-NU": "Nugaal", - "SO-SA": "Sanaag", - "SO-SD": "Middle Shabelle", - "SO-SH": "Lower Shabelle", - "SO-SO": "Sool", - "SO-TO": "Togdheer", - "SO-WO": "Northwest", - "CN-AH": "Anhui", - "CN-BJ": "Beijing", - "CN-CQ": "Chongqing", - "CN-FJ": "Fujian", - "CN-GD": "Guangdong", - "CN-GS": "Gansu", - "CN-GX": "Guangxi", - "CN-GZ": "Guizhou", - "CN-HA": "Henan", - "CN-HB": "Hubei", - "CN-HE": "Hebei", - "CN-HI": "Hainan", - "CN-HK": "Hong Kong", - "CN-HL": "Heilongjiang", - "CN-HN": "Hunan", - "CN-JL": "Jilin", - "CN-JS": "Jiangsu", - "CN-JX": "Jiangxi", - "CN-LN": "Liaoning", - "CN-MO": "Macao", - "CN-NM": "Inner Mongolia", - "CN-NX": "Ningxia", - "CN-QH": "Qinghai", - "CN-SC": "Sichuan", - "CN-SD": "Shandong", - "CN-SH": "Shanghai", - "CN-SN": "Shaanxi", - "CN-SX": "Shanxi", - "CN-TJ": "Tianjin", - "CN-TW": "Taiwan", - "CN-XJ": "Xinjiang", - "CN-XZ": "Tibet", - "CN-YN": "Yunnan", - "CN-ZJ": "Zhejiang", - "SS-BN": "Northern Bahr el Ghazal", - "SS-BW": "Western Bahr el Ghazal", - "SS-EC": "Central Equatoria", - "SS-EE": "Eastern Equatoria", - "SS-EW": "Western Equatoria", - "SS-JG": "Jonglei", - "SS-LK": "Lakes", - "SS-NU": "Upper Nile", - "SS-UY": "Unity", - "SS-WR": "Warrap", - "GB-ENG": "England", - "GB-NIR": "Northern Ireland", - "GB-SCT": "Scotland", - "GB-WLS": "Wales [Cymru GB-CYM]", - "GB-ABC": "Armagh City, Banbridge and Craigavon", - "GB-ABD": "Aberdeenshire", - "GB-ABE": "Aberdeen City", - "GB-AGB": "Argyll and Bute", - "GB-AGY": "Isle of Anglesey [Sir Ynys Môn GB-YNM]", - "GB-AND": "Ards and North Down", - "GB-ANN": "Antrim and Newtownabbey", - "GB-ANS": "Angus", - "GB-BAS": "Bath and North East Somerset", - "GB-BBD": "Blackburn with Darwen", - "GB-BCP": "Bournemouth, Christchurch and Poole", - "GB-BDF": "Bedford", - "GB-BDG": "Barking and Dagenham", - "GB-BEN": "Brent", - "GB-BEX": "Bexley", - "GB-BFS": "Belfast City", - "GB-BGE": "Bridgend [Pen-y-bont ar Ogwr GB-POG]", - "GB-BGW": "Blaenau Gwent", - "GB-BIR": "Birmingham", - "GB-BKM": "Buckinghamshire", - "GB-BNE": "Barnet", - "GB-BNH": "Brighton and Hove", - "GB-BNS": "Barnsley", - "GB-BOL": "Bolton", - "GB-BPL": "Blackpool", - "GB-BRC": "Bracknell Forest", - "GB-BRD": "Bradford", - "GB-BRY": "Bromley", - "GB-BST": "Bristol, City of", - "GB-BUR": "Bury", - "GB-CAM": "Cambridgeshire", - "GB-CAY": "Caerphilly [Caerffili GB-CAF]", - "GB-CBF": "Central Bedfordshire", - "GB-CCG": "Causeway Coast and Glens", - "GB-CGN": "Ceredigion [Sir Ceredigion]", - "GB-CHE": "Cheshire East", - "GB-CHW": "Cheshire West and Chester", - "GB-CLD": "Calderdale", - "GB-CLK": "Clackmannanshire", - "GB-CMA": "Cumbria", - "GB-CMD": "Camden", - "GB-CMN": "Carmarthenshire [Sir Gaerfyrddin GB-GFY]", - "GB-CON": "Cornwall", - "GB-COV": "Coventry", - "GB-CRF": "Cardiff [Caerdydd GB-CRD]", - "GB-CRY": "Croydon", - "GB-CWY": "Conwy", - "GB-DAL": "Darlington", - "GB-DBY": "Derbyshire", - "GB-DEN": "Denbighshire [Sir Ddinbych GB-DDB]", - "GB-DER": "Derby", - "GB-DEV": "Devon", - "GB-DGY": "Dumfries and Galloway", - "GB-DNC": "Doncaster", - "GB-DND": "Dundee City", - "GB-DOR": "Dorset", - "GB-DRS": "Derry and Strabane", - "GB-DUD": "Dudley", - "GB-DUR": "Durham, County", - "GB-EAL": "Ealing", - "GB-EAY": "East Ayrshire", - "GB-EDH": "Edinburgh, City of", - "GB-EDU": "East Dunbartonshire", - "GB-ELN": "East Lothian", - "GB-ELS": "Eilean Siar", - "GB-ENF": "Enfield", - "GB-ERW": "East Renfrewshire", - "GB-ERY": "East Riding of Yorkshire", - "GB-ESS": "Essex", - "GB-ESX": "East Sussex", - "GB-FAL": "Falkirk", - "GB-FIF": "Fife", - "GB-FLN": "Flintshire [Sir y Fflint GB-FFL]", - "GB-FMO": "Fermanagh and Omagh", - "GB-GAT": "Gateshead", - "GB-GLG": "Glasgow City", - "GB-GLS": "Gloucestershire", - "GB-GRE": "Greenwich", - "GB-GWN": "Gwynedd", - "GB-HAL": "Halton", - "GB-HAM": "Hampshire", - "GB-HAV": "Havering", - "GB-HCK": "Hackney", - "GB-HEF": "Herefordshire", - "GB-HIL": "Hillingdon", - "GB-HLD": "Highland", - "GB-HMF": "Hammersmith and Fulham", - "GB-HNS": "Hounslow", - "GB-HPL": "Hartlepool", - "GB-HRT": "Hertfordshire", - "GB-HRW": "Harrow", - "GB-HRY": "Haringey", - "GB-IOS": "Isles of Scilly", - "GB-IOW": "Isle of Wight", - "GB-ISL": "Islington", - "GB-IVC": "Inverclyde", - "GB-KEC": "Kensington and Chelsea", - "GB-KEN": "Kent", - "GB-KHL": "Kingston upon Hull", - "GB-KIR": "Kirklees", - "GB-KTT": "Kingston upon Thames", - "GB-KWL": "Knowsley", - "GB-LAN": "Lancashire", - "GB-LBC": "Lisburn and Castlereagh", - "GB-LBH": "Lambeth", - "GB-LCE": "Leicester", - "GB-LDS": "Leeds", - "GB-LEC": "Leicestershire", - "GB-LEW": "Lewisham", - "GB-LIN": "Lincolnshire", - "GB-LIV": "Liverpool", - "GB-LND": "London, City of", - "GB-LUT": "Luton", - "GB-MAN": "Manchester", - "GB-MDB": "Middlesbrough", - "GB-MDW": "Medway", - "GB-MEA": "Mid and East Antrim", - "GB-MIK": "Milton Keynes", - "GB-MLN": "Midlothian", - "GB-MON": "Monmouthshire [Sir Fynwy GB-FYN]", - "GB-MRT": "Merton", - "GB-MRY": "Moray", - "GB-MTY": "Merthyr Tydfil [Merthyr Tudful GB-MTU]", - "GB-MUL": "Mid-Ulster", - "GB-NAY": "North Ayrshire", - "GB-NBL": "Northumberland", - "GB-NEL": "North East Lincolnshire", - "GB-NET": "Newcastle upon Tyne", - "GB-NFK": "Norfolk", - "GB-NGM": "Nottingham", - "GB-NLK": "North Lanarkshire", - "GB-NLN": "North Lincolnshire", - "GB-NMD": "Newry, Mourne and Down", - "GB-NNH": "North Northamptonshire", - "GB-NSM": "North Somerset", - "GB-NTL": "Neath Port Talbot [Castell-nedd Port Talbot GB-CTL]", - "GB-NTT": "Nottinghamshire", - "GB-NTY": "North Tyneside", - "GB-NWM": "Newham", - "GB-NWP": "Newport [Casnewydd GB-CNW]", - "GB-NYK": "North Yorkshire", - "GB-OLD": "Oldham", - "GB-ORK": "Orkney Islands", - "GB-OXF": "Oxfordshire", - "GB-PEM": "Pembrokeshire [Sir Benfro GB-BNF]", - "GB-PKN": "Perth and Kinross", - "GB-PLY": "Plymouth", - "GB-POR": "Portsmouth", - "GB-POW": "Powys", - "GB-PTE": "Peterborough", - "GB-RCC": "Redcar and Cleveland", - "GB-RCH": "Rochdale", - "GB-RCT": "Rhondda Cynon Taff [Rhondda CynonTaf]", - "GB-RDB": "Redbridge", - "GB-RDG": "Reading", - "GB-RFW": "Renfrewshire", - "GB-RIC": "Richmond upon Thames", - "GB-ROT": "Rotherham", - "GB-RUT": "Rutland", - "GB-SAW": "Sandwell", - "GB-SAY": "South Ayrshire", - "GB-SCB": "Scottish Borders", - "GB-SFK": "Suffolk", - "GB-SFT": "Sefton", - "GB-SGC": "South Gloucestershire", - "GB-SHF": "Sheffield", - "GB-SHN": "St. Helens", - "GB-SHR": "Shropshire", - "GB-SKP": "Stockport", - "GB-SLF": "Salford", - "GB-SLG": "Slough", - "GB-SLK": "South Lanarkshire", - "GB-SND": "Sunderland", - "GB-SOL": "Solihull", - "GB-SOM": "Somerset", - "GB-SOS": "Southend-on-Sea", - "GB-SRY": "Surrey", - "GB-STE": "Stoke-on-Trent", - "GB-STG": "Stirling", - "GB-STH": "Southampton", - "GB-STN": "Sutton", - "GB-STS": "Staffordshire", - "GB-STT": "Stockton-on-Tees", - "GB-STY": "South Tyneside", - "GB-SWA": "Swansea [Abertawe GB-ATA]", - "GB-SWD": "Swindon", - "GB-SWK": "Southwark", - "GB-TAM": "Tameside", - "GB-TFW": "Telford and Wrekin", - "GB-THR": "Thurrock", - "GB-TOB": "Torbay", - "GB-TOF": "Torfaen [Tor-faen]", - "GB-TRF": "Trafford", - "GB-TWH": "Tower Hamlets", - "GB-VGL": "Vale of Glamorgan, The [Bro Morgannwg GB-BMG]", - "GB-WAR": "Warwickshire", - "GB-WBK": "West Berkshire", - "GB-WDU": "West Dunbartonshire", - "GB-WFT": "Waltham Forest", - "GB-WGN": "Wigan", - "GB-WIL": "Wiltshire", - "GB-WKF": "Wakefield", - "GB-WLL": "Walsall", - "GB-WLN": "West Lothian", - "GB-WLV": "Wolverhampton", - "GB-WND": "Wandsworth", - "GB-WNH": "West Northamptonshire", - "GB-WNM": "Windsor and Maidenhead", - "GB-WOK": "Wokingham", - "GB-WOR": "Worcestershire", - "GB-WRL": "Wirral", - "GB-WRT": "Warrington", - "GB-WRX": "Wrexham [Wrecsam GB-WRC]", - "GB-WSM": "Westminster", - "GB-WSX": "West Sussex", - "GB-YOR": "York", - "GB-ZET": "Shetland Islands", - "PA-1": "Bocas del Toro", - "PA-10": "West Panama", - "PA-2": "Cocle", - "PA-3": "Colon", - "PA-4": "Chiriqui", - "PA-5": "Darien", - "PA-6": "Herrera", - "PA-7": "Los Santos", - "PA-8": "Panama", - "PA-9": "Veraguas", - "PA-EM": "Embera", - "PA-KY": "Guna Yala", - "PA-NB": "Ngabe-Bugle", - "PA-NT": "Naso Tjer Di", - "BW-CE": "Central", - "BW-CH": "Chobe", - "BW-FR": "Francistown", - "BW-GA": "Gaborone", - "BW-GH": "Ghanzi", - "BW-JW": "Jwaneng", - "BW-KG": "Kgalagadi", - "BW-KL": "Kgatleng", - "BW-KW": "Kweneng", - "BW-LO": "Lobatse", - "BW-NE": "North East", - "BW-NW": "North West", - "BW-SE": "South East", - "BW-SO": "Southern", - "BW-SP": "Selibe Phikwe", - "BW-ST": "Sowa Town", - "FI-01": "Åland", - "FI-02": "South Karelia", - "FI-03": "Southern Ostrobothnia", - "FI-04": "Southern Savonia", - "FI-05": "Kainuu", - "FI-06": "Tavastia Proper", - "FI-07": "Central Ostrobothnia", - "FI-08": "Central Finland", - "FI-09": "Kymenlaakso", - "FI-10": "Lapland", - "FI-11": "Pirkanmaa", - "FI-12": "Ostrobothnia", - "FI-13": "North Karelia", - "FI-14": "Northern Ostrobothnia", - "FI-15": "Northern Savonia", - "FI-16": "Päijänne Tavastia", - "FI-17": "Satakunta", - "FI-18": "Uusimaa", - "FI-19": "Southwest Finland", - "ZM-01": "Western", - "ZM-02": "Central", - "ZM-03": "Eastern", - "ZM-04": "Luapula", - "ZM-05": "Northern", - "ZM-06": "North-Western", - "ZM-07": "Southern", - "ZM-08": "Copperbelt", - "ZM-09": "Lusaka", - "ZM-10": "Muchinga", - "NG-AB": "Abia", - "NG-AD": "Adamawa", - "NG-AK": "Akwa Ibom", - "NG-AN": "Anambra", - "NG-BA": "Bauchi", - "NG-BE": "Benue", - "NG-BO": "Borno", - "NG-BY": "Bayelsa", - "NG-CR": "Cross River", - "NG-DE": "Delta", - "NG-EB": "Ebonyi", - "NG-ED": "Edo", - "NG-EK": "Ekiti", - "NG-EN": "Enugu", - "NG-FC": "Abuja Federal Capital Territory", - "NG-GO": "Gombe", - "NG-IM": "Imo", - "NG-JI": "Jigawa", - "NG-KD": "Kaduna", - "NG-KE": "Kebbi", - "NG-KN": "Kano", - "NG-KO": "Kogi", - "NG-KT": "Katsina", - "NG-KW": "Kwara", - "NG-LA": "Lagos", - "NG-NA": "Nasarawa", - "NG-NI": "Niger", - "NG-OG": "Ogun", - "NG-ON": "Ondo", - "NG-OS": "Osun", - "NG-OY": "Oyo", - "NG-PL": "Plateau", - "NG-RI": "Rivers", - "NG-SO": "Sokoto", - "NG-TA": "Taraba", - "NG-YO": "Yobe", - "NG-ZA": "Zamfara", - "LK-1": "Western Province", - "LK-2": "Central Province", - "LK-3": "Southern Province", - "LK-4": "Northern Province", - "LK-5": "Eastern Province", - "LK-6": "North Western Province", - "LK-7": "North Central Province", - "LK-8": "Uva Province", - "LK-9": "Sabaragamuwa Province", - "LK-11": "Colombo", - "LK-12": "Gampaha", - "LK-13": "Kalutara", - "LK-21": "Kandy", - "LK-22": "Matale", - "LK-23": "Nuwara Eliya", - "LK-31": "Galle", - "LK-32": "Matara", - "LK-33": "Hambantota", - "LK-41": "Jaffna", - "LK-42": "Kilinochchi", - "LK-43": "Mannar", - "LK-44": "Vavuniya", - "LK-45": "Mullaittivu", - "LK-51": "Batticaloa", - "LK-52": "Ampara", - "LK-53": "Trincomalee", - "LK-61": "Kurunegala", - "LK-62": "Puttalam", - "LK-71": "Anuradhapura", - "LK-72": "Polonnaruwa", - "LK-81": "Badulla", - "LK-82": "Monaragala", - "LK-91": "Ratnapura", - "LK-92": "Kegalla", - "CI-AB": "Abidjan", - "CI-BS": "Lower Sassandra", - "CI-CM": "Comoé", - "CI-DN": "Denguélé", - "CI-GD": "Gôh-Djiboua", - "CI-LC": "Lakes", - "CI-LG": "Lagoons", - "CI-MG": "Mountains", - "CI-SM": "Sassandra-Marahoué", - "CI-SV": "Savannahs", - "CI-VB": "Bandama Valley", - "CI-WR": "Woroba", - "CI-YM": "Yamoussoukro", - "CI-ZZ": "Zanzan", - "KG-B": "Batken", - "KG-C": "Chuy", - "KG-GB": "Bishkek", - "KG-GO": "Osh City", - "KG-J": "Jalal-Abad", - "KG-N": "Naryn", - "KG-O": "Osh", - "KG-T": "Talas", - "KG-Y": "Issyk-Kul", - "VC-01": "Charlotte", - "VC-02": "Saint Andrew", - "VC-03": "Saint David", - "VC-04": "Saint George", - "VC-05": "Saint Patrick", - "VC-06": "Grenadines", - "PY-1": "Concepcion", - "PY-10": "Upper Parana", - "PY-11": "Central", - "PY-12": "Neembucu", - "PY-13": "Amambay", - "PY-14": "Canindeyu", - "PY-15": "President Hayes", - "PY-16": "Upper Paraguay", - "PY-19": "Boqueron", - "PY-2": "Saint Peter", - "PY-3": "Cordillera", - "PY-4": "Guaira", - "PY-5": "Caaguazu", - "PY-6": "Caazapa", - "PY-7": "Itapua", - "PY-8": "Misiones", - "PY-9": "Paraguari", - "PY-ASU": "Asuncion", - "PT-01": "Aveiro", - "PT-02": "Beja", - "PT-03": "Braga", - "PT-04": "Bragança", - "PT-05": "White Castle", - "PT-06": "Coimbra", - "PT-07": "Evora", - "PT-08": "Faro", - "PT-09": "Guarda", - "PT-10": "Leiria", - "PT-11": "Lisbon", - "PT-12": "Portalegre", - "PT-13": "Porto", - "PT-14": "Santarém", - "PT-15": "Setúbal", - "PT-16": "Viana do Castelo", - "PT-17": "Royal Town", - "PT-18": "Viseu", - "PT-20": "Azores", - "PT-30": "Madeira", - "(BGN/PCGN 1979)": "(BGN/PCGN 1947)", - "BY-BR": "Брэсцкая вобласць", - "BY-HM": "Горад Мінск", - "BY-HO": "Гомельская вобласць", - "BY-HR": "Гродзенская вобласць", - "BY-MA": "Магілёўская вобласць", - "BY-MI": "Мінская вобласць", - "BY-VI": "Віцебская вобласць", - "SK-BC": "Banská Bystrica", - "SK-BL": "Bratislava", - "SK-KI": "Košice", - "SK-NI": "Nitra", - "SK-PV": "Prešov", - "SK-TA": "Trnava", - "SK-TC": "Trenčín", - "SK-ZI": "Žilina", - "LT-AL": "Alytus County", - "LT-KL": "Klaipėda County", - "LT-KU": "Kaunas County", - "LT-MR": "Marijampolė County", - "LT-PN": "Panevėžys County", - "LT-SA": "Šiauliai County", - "LT-TA": "Tauragė County", - "LT-TE": "Telšiai County", - "LT-UT": "Utena County", - "LT-VL": "Vilnius County", - "SH-AC": "Ascension", - "SH-HL": "Saint Helena", - "SH-TA": "Tristan da Cunha", - "IE-C": "Connaught", - "IE-L": "Leinster", - "IE-M": "Munster", - "IE-U": "Ulster", - "IE-CE": "Clare", - "IE-CN": "Cavan", - "IE-CO": "Cork", - "IE-CW": "Carlow", - "IE-D": "Dublin", - "IE-DL": "Donegal", - "IE-G": "Galway", - "IE-KE": "Kildare", - "IE-KK": "Kilkenny", - "IE-KY": "Kerry", - "IE-LD": "Longford", - "IE-LH": "Louth", - "IE-LK": "Limerick", - "IE-LM": "Leitrim", - "IE-LS": "Laois", - "IE-MH": "Meath", - "IE-MN": "Monaghan", - "IE-MO": "Mayo", - "IE-OY": "Offaly", - "IE-RN": "Roscommon", - "IE-SO": "Sligo", - "IE-TA": "Tipperary", - "IE-WD": "Waterford", - "IE-WH": "Westmeath", - "IE-WW": "Wicklow", - "IE-WX": "Wexford", - "HR-01": "Zagreb County", - "HR-02": "Krapina-Zagorje", - "HR-03": "Sisak-Moslavina", - "HR-04": "Karlovac", - "HR-05": "Varaždin", - "HR-06": "Koprivnica-Križevci", - "HR-07": "Bjelovar-Bilogora", - "HR-08": "Primorje-Gorski Kotar", - "HR-09": "Lika-Senj", - "HR-10": "Virovitica-Podravina", - "HR-11": "Požega-Slavonia", - "HR-12": "Brod-Posavina", - "HR-13": "Zadar", - "HR-14": "Osijek-Baranja", - "HR-15": "Šibenik-Knin", - "HR-16": "Vukovar-Srijem", - "HR-17": "Split-Dalmatia", - "HR-18": "Istria", - "HR-19": "Dubrovnik-Neretva", - "HR-20": "Međimurje", - "HR-21": "Zagreb City", - "UA-05": "Vinnytsia", - "UA-07": "Volyn", - "UA-09": "Luhansk", - "UA-12": "Dnipropetrovsk", - "UA-14": "Donetsk", - "UA-18": "Zhytomyr", - "UA-21": "Transcarpathia", - "UA-23": "Zaporizhzhia", - "UA-26": "Ivano-Frankivsk", - "UA-30": "Kyiv City", - "UA-32": "Kyiv", - "UA-35": "Kirovohrad", - "UA-40": "Sevastopol", - "UA-43": "Crimea", - "UA-46": "Lviv", - "UA-48": "Mykolaiv", - "UA-51": "Odesa", - "UA-53": "Poltava", - "UA-56": "Rivne", - "UA-59": "Sumy", - "UA-61": "Ternopil", - "UA-63": "Kharkiv", - "UA-65": "Kherson", - "UA-68": "Khmelnytskyi", - "UA-71": "Cherkasy", - "UA-74": "Chernihiv", - "UA-77": "Chernivtsi", - "TJ-DU": "Dushanbe", - "TJ-GB": "Gorno-Badakhshan", - "TJ-KT": "Khatlon", - "TJ-RA": "districts under government jurisdiction", - "TJ-SU": "Sughd", - "AU-ACT": "Australian Capital Territory", - "AU-NSW": "New South Wales", - "AU-NT": "Northern Territory", - "AU-QLD": "Queensland", - "AU-SA": "South Australia", - "AU-TAS": "Tasmania", - "AU-VIC": "Victoria", - "AU-WA": "Western Australia", - "NI-AN": "North Caribbean Coast", - "NI-AS": "South Caribbean Coast", - "NI-BO": "Boaco", - "NI-CA": "Carazo", - "NI-CI": "Chinandega", - "NI-CO": "Chontales", - "NI-ES": "Estelí", - "NI-GR": "Granada", - "NI-JI": "Jinotega", - "NI-LE": "León", - "NI-MD": "Madriz", - "NI-MN": "Managua", - "NI-MS": "Masaya", - "NI-MT": "Matagalpa", - "NI-NS": "New Segovia", - "NI-RI": "Rivas", - "NI-SJ": "Saint John River", - "IQ-AN": "Anbar", - "IQ-AR": "Erbil", - "IQ-BA": "Basra", - "IQ-BB": "Babylon", - "IQ-BG": "Bagdad", - "IQ-DA": "Duhok", - "IQ-DI": "Diyala", - "IQ-DQ": "Dhi Qar", - "IQ-KA": "Karbala", - "IQ-KI": "Kirkuk", - "IQ-KR": "Kurdistan", - "IQ-MA": "Maysan", - "IQ-MU": "Muthanna", - "IQ-NA": "Najaf", - "IQ-NI": "Nineveh", - "IQ-QA": "Qadisiya", - "IQ-SD": "Saladin", - "IQ-SU": "Sulaymaniya", - "IQ-WA": "Wasit", - "TM-A": "Ahal", - "TM-B": "Balkan", - "TM-D": "Dashoguz", - "TM-L": "Lebap", - "TM-M": "Mary", - "TM-S": "Ashgabat", - "FM-KSA": "Kosrae", - "FM-PNI": "Pohnpei", - "FM-TRK": "Chuuk", - "FM-YAP": "Yap", - "ID-JW": "Java", - "ID-KA": "Kalimantan", - "ID-ML": "Moluccas", - "ID-NU": "Lesser Sunda Islands", - "ID-PP": "Western New Guinea", - "ID-SL": "Sulawesi", - "ID-SM": "Sumatra", - "ID-AC": "Aceh", - "ID-BA": "Bali", - "ID-BB": "Bangka Belitung Islands", - "ID-BE": "Bengkulu", - "ID-BT": "Banten", - "ID-GO": "Gorontalo", - "ID-JA": "Jambi", - "ID-JB": "West Java", - "ID-JI": "East Java", - "ID-JK": "Jakarta", - "ID-JT": "Central Java", - "ID-KB": "West Kalimantan", - "ID-KI": "East Kalimantan", - "ID-KR": "Riau Islands", - "ID-KS": "South Kalimantan", - "ID-KT": "Central Kalimantan", - "ID-KU": "North Kalimantan", - "ID-LA": "Lampung", - "ID-MA": "Maluku", - "ID-MU": "North Maluku", - "ID-NB": "West Nusa Tenggara", - "ID-NT": "East Nusa Tenggara", - "ID-PA": "Papua", - "ID-PB": "West Papua", - "ID-PD": "Southwest Papua", - "ID-PE": "Highland Papua", - "ID-PS": "South Papua", - "ID-PT": "Central Papua", - "ID-RI": "Riau", - "ID-SA": "North Sulawesi", - "ID-SB": "West Sumatra", - "ID-SG": "Southeast Sulawesi", - "ID-SN": "South Sulawesi", - "ID-SR": "West Sulawesi", - "ID-SS": "South Sumatra", - "ID-ST": "Central Sulawesi", - "ID-SU": "North Sumatra", - "ID-YO": "Yogyakarta", - "NZ-AUK": "Auckland", - "NZ-BOP": "Bay of Plenty", - "NZ-CAN": "Canterbury", - "NZ-CIT": "Chatham Islands Territory", - "NZ-GIS": "Gisborne", - "NZ-HKB": "Hawke's Bay", - "NZ-MBH": "Marlborough", - "NZ-MWT": "Manawatū-Whanganui", - "NZ-NSN": "Nelson", - "NZ-NTL": "Northland", - "NZ-OTA": "Otago", - "NZ-STL": "Southland", - "NZ-TAS": "Tasman", - "NZ-TKI": "Taranaki", - "NZ-WGN": "Greater Wellington", - "NZ-WKO": "Waikato", - "NZ-WTC": "West Coast", - "GA-1": "Estuary", - "GA-2": "Upper Ogooué", - "GA-3": "Middle Ogooué", - "GA-4": "Ngounié", - "GA-5": "Nyanga", - "GA-6": "Ogooué-Ivindo", - "GA-7": "Ogooué-Lolo", - "GA-8": "Maritime Ogooué", - "GA-9": "Woleu-Ntem", - "PL-02": "Lower Silesia", - "PL-04": "Kuyavia-Pomerania", - "PL-06": "Lublin", - "PL-08": "Lubusz", - "PL-10": "Łódź", - "PL-12": "Lesser Poland", - "PL-14": "Mazovia", - "PL-16": "Upper Silesia", - "PL-18": "Subcarpathia", - "PL-20": "Podlaskie", - "PL-22": "Pomerania", - "PL-24": "Silesia", - "PL-26": "Holy Cross", - "PL-28": "Warmia-Masuria", - "PL-30": "Greater Poland", - "PL-32": "West Pomerania", - "TV-FUN": "Funafuti", - "TV-NIT": "Niutao", - "TV-NKF": "Nukufetau", - "TV-NKL": "Nukulaelae", - "TV-NMA": "Nanumea", - "TV-NMG": "Nanumaga", - "TV-NUI": "Nui", - "TV-VAI": "Vaitupu", - "CD-BC": "Central Kongo", - "CD-BU": "Lower Uele", - "CD-EQ": "Equator", - "CD-HK": "Upper Katanga", - "CD-HL": "Upper Lomami", - "CD-HU": "Upper Uele", - "CD-IT": "Ituri", - "CD-KC": "Central Kasai", - "CD-KE": "Eastern Kasai", - "CD-KG": "Kwango", - "CD-KL": "Kwilu", - "CD-KN": "Kinshasa", - "CD-KS": "Kasai", - "CD-LO": "Lomami", - "CD-LU": "Lualaba", - "CD-MA": "Maniema", - "CD-MN": "Mai-Ndombe", - "CD-MO": "Mongala", - "CD-NK": "North Kivu", - "CD-NU": "North Ubangi", - "CD-SA": "Sankuru", - "CD-SK": "South Kivu", - "CD-SU": "South Ubangi", - "CD-TA": "Tanganyika", - "CD-TO": "Tshopo", - "CD-TU": "Tshuapa", - "KW-AH": "Ahmadi", - "KW-FA": "Farwaniya", - "KW-HA": "Hawalli", - "KW-JA": "Jahra", - "KW-KU": "Kuwait", - "KW-MU": "Mubarak Al-Kabeer", - "NA-CA": "Zambezi", - "NA-ER": "Erongo", - "NA-HA": "Hardap", - "NA-KA": "//Karas\n(local variants are Karas and !Karas)", - "NA-KE": "Kavango East", - "NA-KH": "Khomas", - "NA-KU": "Kunene", - "NA-KW": "Kavango West", - "NA-OD": "Otjozondjupa", - "NA-OH": "Omaheke", - "NA-ON": "Oshana", - "NA-OS": "Omusati", - "NA-OT": "Oshikoto", - "NA-OW": "Ohangwena", - "GQ-C": "Continental", - "GQ-I": "Insular", - "GQ-AN": "Annobon", - "GQ-BN": "North Bioko", - "GQ-BS": "South Bioko", - "GQ-CS": "South Center", - "GQ-DJ": "Djibloho", - "GQ-KN": "Kie-Ntem", - "GQ-LI": "Coast", - "GQ-WN": "Wele-Nzas", - "LY-BA": "Benghazi", - "LY-BU": "Butnan", - "LY-DR": "Derna", - "LY-GT": "Ghat", - "LY-JA": "Green Mountain", - "LY-JG": "Western Mountain", - "LY-JI": "Jafara", - "LY-JU": "Jufra", - "LY-KF": "Kufra", - "LY-MB": "Murqub", - "LY-MI": "Misrata", - "LY-MJ": "Meadows", - "LY-MQ": "Murzuq", - "LY-NL": "Nalut", - "LY-NQ": "Nuqat al Khams", - "LY-SB": "Sabha", - "LY-SR": "Sirte", - "LY-TB": "Tripoli", - "LY-WA": "Oases", - "LY-WD": "Wadi al Hayaa", - "LY-WS": "Wadi ash Shati", - "LY-ZA": "Zawiya", - "KZ-10": "Abai", - "KZ-11": "Akmola", - "KZ-15": "Aktobe", - "KZ-19": "Almaty", - "KZ-23": "Atyrau", - "KZ-27": "West Kazakhstan", - "KZ-31": "Jambyl", - "KZ-33": "Jetisu", - "KZ-35": "Karaganda", - "KZ-39": "Kostanay", - "KZ-43": "Kyzylorda", - "KZ-47": "Mangystau", - "KZ-55": "Pavlodar", - "KZ-59": "North Kazakhstan", - "KZ-61": "Turkistan", - "KZ-62": "Ulytau", - "KZ-63": "East Kazakhstan", - "KZ-71": "Astana", - "KZ-75": "Almaty City", - "KZ-79": "Shymkent", - "MV-00": "South Ari Atoll", - "MV-01": "Addu City", - "MV-02": "North Ari Atoll", - "MV-03": "Faadhippolhu", - "MV-04": "Felidhu Atoll", - "MV-05": "Hahdhunmathi", - "MV-07": "North Thiladhunmathi", - "MV-08": "Kolhumadulu", - "MV-12": "Mulaku Atoll", - "MV-13": "North Maalhosmadulu", - "MV-14": "North Nilandhe Atoll", - "MV-17": "South Nilandhe Atoll", - "MV-20": "South Maalhosmadulu", - "MV-23": "South Thiladhunmathi", - "MV-24": "North Miladhunmadulu", - "MV-25": "South Miladhunmadulu", - "MV-26": "Male Atoll", - "MV-27": "North Huvadhu Atoll", - "MV-28": "South Huvadhu Atoll", - "MV-29": "Fuvammulah", - "MV-MLE": "Male", - "MV-CE": "Central", - "MV-NC": "North Central", - "MV-NO": "North", - "MV-SC": "South Central", - "MV-SU": "South", - "MV-UN": "Upper North", - "MV-US": "Upper South", - "BN-BE": "Belait", - "BN-BM": "Brunei-Muara", - "BN-TE": "Temburong", - "BN-TU": "Tutong", - "KN-K": "Saint Kitts", - "KN-N": "Nevis", - "KN-01": "Christ Church Nichola Town", - "KN-02": "Saint Anne Sandy Point", - "KN-03": "Saint George Basseterre", - "KN-04": "Saint George Gingerland", - "KN-05": "Saint James Windward", - "KN-06": "Saint John Capisterre", - "KN-07": "Saint John Figtree", - "KN-08": "Saint Mary Cayon", - "KN-09": "Saint Paul Capisterre", - "KN-10": "Saint Paul Charlestown", - "KN-11": "Saint Peter Basseterre", - "KN-12": "Saint Thomas Lowland", - "KN-13": "Saint Thomas Middle Island", - "KN-15": "Trinity Palmetto Point", - "PS-BTH": "Bethlehem", - "PS-DEB": "Deir El Balah", - "PS-GZA": "Gaza", - "PS-HBN": "Hebron", - "PS-JEM": "Jerusalem", - "PS-JEN": "Jenin", - "PS-JRH": "Jericho and Al Aghwar", - "PS-KYS": "Khan Yunis", - "PS-NBS": "Nablus", - "PS-NGZ": "North Gaza", - "PS-QQA": "Qalqilya", - "PS-RBH": "Ramallah", - "PS-RFH": "Rafah", - "PS-SLT": "Salfit", - "PS-TBS": "Tubas", - "PS-TKM": "Tulkarm", - "IT-21": "Piedmont", - "IT-23": "Aosta Valley", - "IT-25": "Lombardy", - "IT-32": "Trentino-South Tyrol", - "IT-34": "Veneto", - "IT-36": "Friuli Venezia Giulia", - "IT-42": "Liguria", - "IT-45": "Emilia-Romagna", - "IT-52": "Tuscany", - "IT-55": "Umbria", - "IT-57": "Marche", - "IT-62": "Lazio", - "IT-65": "Abruzzo", - "IT-67": "Molise", - "IT-72": "Campania", - "IT-75": "Apulia", - "IT-77": "Basilicata", - "IT-78": "Calabria", - "IT-82": "Sicily", - "IT-88": "Sardinia" -} \ No newline at end of file diff --git a/priv/iso_3166-2.json b/priv/iso_3166-2.json index bdd2ac7..02f4921 100644 --- a/priv/iso_3166-2.json +++ b/priv/iso_3166-2.json @@ -37,37 +37,37 @@ }, { "code": "AE-AJ", - "name": "‘Ajmān", + "name": "Ajman", "type": "Emirate" }, { "code": "AE-AZ", - "name": "Abū Z̧aby", + "name": "Abu Dhabi", "type": "Emirate" }, { "code": "AE-DU", - "name": "Dubayy", + "name": "Dubai", "type": "Emirate" }, { "code": "AE-FU", - "name": "Al Fujayrah", + "name": "Fujairah", "type": "Emirate" }, { "code": "AE-RK", - "name": "Ra’s al Khaymah", + "name": "Ras al-Khaimah", "type": "Emirate" }, { "code": "AE-SH", - "name": "Ash Shāriqah", + "name": "Sharjah", "type": "Emirate" }, { "code": "AE-UQ", - "name": "Umm al Qaywayn", + "name": "Umm al-Quwain", "type": "Emirate" }, { @@ -77,42 +77,42 @@ }, { "code": "AF-BAM", - "name": "Bāmyān", + "name": "Bamyan", "type": "Province" }, { "code": "AF-BDG", - "name": "Bādghīs", + "name": "Badghis", "type": "Province" }, { "code": "AF-BDS", - "name": "Badakhshān", + "name": "Badakhshan", "type": "Province" }, { "code": "AF-BGL", - "name": "Baghlān", + "name": "Baghlan", "type": "Province" }, { "code": "AF-DAY", - "name": "Dāykundī", + "name": "Daykundi", "type": "Province" }, { "code": "AF-FRA", - "name": "Farāh", + "name": "Farah", "type": "Province" }, { "code": "AF-FYB", - "name": "Fāryāb", + "name": "Faryab", "type": "Province" }, { "code": "AF-GHA", - "name": "Ghaznī", + "name": "Ghazni", "type": "Province" }, { @@ -127,27 +127,27 @@ }, { "code": "AF-HER", - "name": "Herāt", + "name": "Herat", "type": "Province" }, { "code": "AF-JOW", - "name": "Jowzjān", + "name": "Jowzjan", "type": "Province" }, { "code": "AF-KAB", - "name": "Kābul", + "name": "Kabul", "type": "Province" }, { "code": "AF-KAN", - "name": "Kandahār", + "name": "Kandahar", "type": "Province" }, { "code": "AF-KAP", - "name": "Kāpīsā", + "name": "Kapisa", "type": "Province" }, { @@ -157,87 +157,87 @@ }, { "code": "AF-KHO", - "name": "Khōst", + "name": "Khost", "type": "Province" }, { "code": "AF-KNR", - "name": "Kunaṟ", + "name": "Kunar", "type": "Province" }, { "code": "AF-LAG", - "name": "Laghmān", + "name": "Laghman", "type": "Province" }, { "code": "AF-LOG", - "name": "Lōgar", + "name": "Logar", "type": "Province" }, { "code": "AF-NAN", - "name": "Nangarhār", + "name": "Nangarhar", "type": "Province" }, { "code": "AF-NIM", - "name": "Nīmrōz", + "name": "Nimruz", "type": "Province" }, { "code": "AF-NUR", - "name": "Nūristān", + "name": "Nuristan", "type": "Province" }, { "code": "AF-PAN", - "name": "Panjshayr", + "name": "Panjshir", "type": "Province" }, { "code": "AF-PAR", - "name": "Parwān", + "name": "Parwan", "type": "Province" }, { "code": "AF-PIA", - "name": "Paktiyā", + "name": "Paktia", "type": "Province" }, { "code": "AF-PKA", - "name": "Paktīkā", + "name": "Paktika", "type": "Province" }, { "code": "AF-SAM", - "name": "Samangān", + "name": "Samangan", "type": "Province" }, { "code": "AF-SAR", - "name": "Sar-e Pul", + "name": "Sar-e Pol", "type": "Province" }, { "code": "AF-TAK", - "name": "Takhār", + "name": "Takhar", "type": "Province" }, { "code": "AF-URU", - "name": "Uruzgān", + "name": "Urozgan", "type": "Province" }, { "code": "AF-WAR", - "name": "Wardak", + "name": "Maidan Wardak", "type": "Province" }, { "code": "AF-ZAB", - "name": "Zābul", + "name": "Zabul", "type": "Province" }, { @@ -282,67 +282,67 @@ }, { "code": "AL-01", - "name": "Berat", + "name": "Berat County", "type": "County" }, { "code": "AL-02", - "name": "Durrës", + "name": "Durrës County", "type": "County" }, { "code": "AL-03", - "name": "Elbasan", + "name": "Elbasan County", "type": "County" }, { "code": "AL-04", - "name": "Fier", + "name": "Fier County", "type": "County" }, { "code": "AL-05", - "name": "Gjirokastër", + "name": "Gjirokastër County", "type": "County" }, { "code": "AL-06", - "name": "Korçë", + "name": "Korçë County", "type": "County" }, { "code": "AL-07", - "name": "Kukës", + "name": "Kukës County", "type": "County" }, { "code": "AL-08", - "name": "Lezhë", + "name": "Lezhë County", "type": "County" }, { "code": "AL-09", - "name": "Dibër", + "name": "Dibër County", "type": "County" }, { "code": "AL-10", - "name": "Shkodër", + "name": "Shkodër County", "type": "County" }, { "code": "AL-11", - "name": "Tiranë", + "name": "Tirana County", "type": "County" }, { "code": "AL-12", - "name": "Vlorë", + "name": "Vlorë County", "type": "County" }, { "code": "AM-AG", - "name": "Aragac̣otn", + "name": "Aragatsotn", "type": "Region" }, { @@ -357,42 +357,42 @@ }, { "code": "AM-ER", - "name": "Erevan", + "name": "Yerevan", "type": "City" }, { "code": "AM-GR", - "name": "Geġark'unik'", + "name": "Gegharkunik", "type": "Region" }, { "code": "AM-KT", - "name": "Kotayk'", + "name": "Kotayk", "type": "Region" }, { "code": "AM-LO", - "name": "Loṙi", + "name": "Lori", "type": "Region" }, { "code": "AM-SH", - "name": "Širak", + "name": "Shirak", "type": "Region" }, { "code": "AM-SU", - "name": "Syunik'", + "name": "Syunik", "type": "Region" }, { "code": "AM-TV", - "name": "Tavuš", + "name": "Tavush", "type": "Region" }, { "code": "AM-VD", - "name": "Vayoć Jor", + "name": "Vayots Dzor", "type": "Region" }, { @@ -427,12 +427,12 @@ }, { "code": "AO-CNO", - "name": "Cuanza-Norte", + "name": "Cuanza Norte", "type": "Province" }, { "code": "AO-CUS", - "name": "Cuanza-Sul", + "name": "Cuanza Sul", "type": "Province" }, { @@ -447,12 +447,12 @@ }, { "code": "AO-LNO", - "name": "Lunda-Norte", + "name": "Lunda Norte", "type": "Province" }, { "code": "AO-LSU", - "name": "Lunda-Sul", + "name": "Lunda Sul", "type": "Province" }, { @@ -462,7 +462,7 @@ }, { "code": "AO-MAL", - "name": "Malange", + "name": "Malanje", "type": "Province" }, { @@ -492,12 +492,12 @@ }, { "code": "AR-B", - "name": "Buenos Aires", + "name": "Buenos Aires Province", "type": "Province" }, { "code": "AR-C", - "name": "Ciudad Autónoma de Buenos Aires", + "name": "Buenos Aires", "type": "City" }, { @@ -612,17 +612,17 @@ }, { "code": "AT-2", - "name": "Kärnten", + "name": "Carinthia", "type": "State" }, { "code": "AT-3", - "name": "Niederösterreich", + "name": "Lower Austria", "type": "State" }, { "code": "AT-4", - "name": "Oberösterreich", + "name": "Upper Austria", "type": "State" }, { @@ -632,12 +632,12 @@ }, { "code": "AT-6", - "name": "Steiermark", + "name": "Styria", "type": "State" }, { "code": "AT-7", - "name": "Tirol", + "name": "Tyrol", "type": "State" }, { @@ -647,7 +647,7 @@ }, { "code": "AT-9", - "name": "Wien", + "name": "Vienna", "type": "State" }, { @@ -692,32 +692,32 @@ }, { "code": "AZ-ABS", - "name": "Abşeron", + "name": "Absheron", "type": "Rayon" }, { "code": "AZ-AGA", - "name": "Ağstafa", + "name": "Agstafa", "type": "Rayon" }, { "code": "AZ-AGC", - "name": "Ağcabədi", + "name": "Aghjabadi", "type": "Rayon" }, { "code": "AZ-AGM", - "name": "Ağdam", + "name": "Agdam", "type": "Rayon" }, { "code": "AZ-AGS", - "name": "Ağdaş", + "name": "Agdash", "type": "Rayon" }, { "code": "AZ-AGU", - "name": "Ağsu", + "name": "Agsu", "type": "Rayon" }, { @@ -727,67 +727,67 @@ }, { "code": "AZ-BA", - "name": "Bakı", + "name": "Baku", "type": "Municipality" }, { "code": "AZ-BAB", - "name": "Babək", + "name": "Babek", "type": "Rayon" }, { "code": "AZ-BAL", - "name": "Balakən", + "name": "Balakan", "type": "Rayon" }, { "code": "AZ-BAR", - "name": "Bərdə", + "name": "Barda", "type": "Rayon" }, { "code": "AZ-BEY", - "name": "Beyləqan", + "name": "Beylagan", "type": "Rayon" }, { "code": "AZ-BIL", - "name": "Biləsuvar", + "name": "Bilasuvar", "type": "Rayon" }, { "code": "AZ-CAB", - "name": "Cəbrayıl", + "name": "Jabrayil", "type": "Rayon" }, { "code": "AZ-CAL", - "name": "Cəlilabad", + "name": "Jalilabad", "type": "Rayon" }, { "code": "AZ-CUL", - "name": "Culfa", + "name": "Julfa", "type": "Rayon" }, { "code": "AZ-DAS", - "name": "Daşkəsən", + "name": "Dashkasan", "type": "Rayon" }, { "code": "AZ-FUZ", - "name": "Füzuli", + "name": "Fizuli", "type": "Rayon" }, { "code": "AZ-GA", - "name": "Gəncə", + "name": "Ganja", "type": "Municipality" }, { "code": "AZ-GAD", - "name": "Gədəbəy", + "name": "Gadabay", "type": "Rayon" }, { @@ -797,57 +797,57 @@ }, { "code": "AZ-GOY", - "name": "Göyçay", + "name": "Goychay", "type": "Rayon" }, { "code": "AZ-GYG", - "name": "Göygöl", + "name": "Goygol", "type": "Rayon" }, { "code": "AZ-HAC", - "name": "Hacıqabul", + "name": "Hajigabul", "type": "Rayon" }, { "code": "AZ-IMI", - "name": "İmişli", + "name": "Imishli", "type": "Rayon" }, { "code": "AZ-ISM", - "name": "İsmayıllı", + "name": "Ismailli", "type": "Rayon" }, { "code": "AZ-KAL", - "name": "Kəlbəcər", + "name": "Kalbajar", "type": "Rayon" }, { "code": "AZ-KAN", - "name": "Kǝngǝrli", + "name": "Kangarli", "type": "Rayon" }, { "code": "AZ-KUR", - "name": "Kürdəmir", + "name": "Kurdamir", "type": "Rayon" }, { "code": "AZ-LA", - "name": "Lənkəran", + "name": "Lankaran", "type": "Municipality" }, { "code": "AZ-LAC", - "name": "Laçın", + "name": "Lachin", "type": "Rayon" }, { "code": "AZ-LAN", - "name": "Lənkəran", + "name": "Lankaran District", "type": "Rayon" }, { @@ -857,12 +857,12 @@ }, { "code": "AZ-MAS", - "name": "Masallı", + "name": "Masally", "type": "Rayon" }, { "code": "AZ-MI", - "name": "Mingəçevir", + "name": "Mingachevir", "type": "Municipality" }, { @@ -872,22 +872,22 @@ }, { "code": "AZ-NEF", - "name": "Neftçala", + "name": "Neftchala", "type": "Rayon" }, { "code": "AZ-NV", - "name": "Naxçıvan", + "name": "Nakhchivan", "type": "Municipality" }, { "code": "AZ-NX", - "name": "Naxçıvan", + "name": "Nakhchivan AR", "type": "Autonomous republic" }, { "code": "AZ-OGU", - "name": "Oğuz", + "name": "Oghuz", "type": "Rayon" }, { @@ -897,17 +897,17 @@ }, { "code": "AZ-QAB", - "name": "Qəbələ", + "name": "Qabala", "type": "Rayon" }, { "code": "AZ-QAX", - "name": "Qax", + "name": "Qakh", "type": "Rayon" }, { "code": "AZ-QAZ", - "name": "Qazax", + "name": "Qazakh", "type": "Rayon" }, { @@ -917,12 +917,12 @@ }, { "code": "AZ-QBI", - "name": "Qubadlı", + "name": "Qubadli", "type": "Rayon" }, { "code": "AZ-QOB", - "name": "Qobustan", + "name": "Gobustan", "type": "Rayon" }, { @@ -932,7 +932,7 @@ }, { "code": "AZ-SA", - "name": "Şəki", + "name": "Shaki", "type": "Municipality" }, { @@ -942,17 +942,17 @@ }, { "code": "AZ-SAD", - "name": "Sədərək", + "name": "Sadarak", "type": "Rayon" }, { "code": "AZ-SAH", - "name": "Şahbuz", + "name": "Shahbuz", "type": "Rayon" }, { "code": "AZ-SAK", - "name": "Şəki", + "name": "Shaki District", "type": "Rayon" }, { @@ -962,57 +962,57 @@ }, { "code": "AZ-SAR", - "name": "Şərur", + "name": "Sharur", "type": "Rayon" }, { "code": "AZ-SAT", - "name": "Saatlı", + "name": "Saatly", "type": "Rayon" }, { "code": "AZ-SBN", - "name": "Şabran", + "name": "Shabran", "type": "Rayon" }, { "code": "AZ-SIY", - "name": "Siyəzən", + "name": "Siazan", "type": "Rayon" }, { "code": "AZ-SKR", - "name": "Şəmkir", + "name": "Shamkir", "type": "Rayon" }, { "code": "AZ-SM", - "name": "Sumqayıt", + "name": "Sumqayit", "type": "Municipality" }, { "code": "AZ-SMI", - "name": "Şamaxı", + "name": "Shamakhi", "type": "Rayon" }, { "code": "AZ-SMX", - "name": "Samux", + "name": "Samukh", "type": "Rayon" }, { "code": "AZ-SR", - "name": "Şirvan", + "name": "Shirvan", "type": "Municipality" }, { "code": "AZ-SUS", - "name": "Şuşa", + "name": "Shusha", "type": "Rayon" }, { "code": "AZ-TAR", - "name": "Tərtər", + "name": "Tartar", "type": "Rayon" }, { @@ -1022,52 +1022,52 @@ }, { "code": "AZ-UCA", - "name": "Ucar", + "name": "Ujar", "type": "Rayon" }, { "code": "AZ-XA", - "name": "Xankəndi", + "name": "Stepanakert", "type": "Municipality" }, { "code": "AZ-XAC", - "name": "Xaçmaz", + "name": "Khachmaz", "type": "Rayon" }, { "code": "AZ-XCI", - "name": "Xocalı", + "name": "Khojali", "type": "Rayon" }, { "code": "AZ-XIZ", - "name": "Xızı", + "name": "Khizi", "type": "Rayon" }, { "code": "AZ-XVD", - "name": "Xocavənd", + "name": "Khojavend", "type": "Rayon" }, { "code": "AZ-YAR", - "name": "Yardımlı", + "name": "Yardymli", "type": "Rayon" }, { "code": "AZ-YE", - "name": "Yevlax", + "name": "Yevlakh", "type": "Municipality" }, { "code": "AZ-YEV", - "name": "Yevlax", + "name": "Yevlakh District", "type": "Rayon" }, { "code": "AZ-ZAN", - "name": "Zəngilan", + "name": "Zangilan", "type": "Rayon" }, { @@ -1077,17 +1077,17 @@ }, { "code": "AZ-ZAR", - "name": "Zərdab", + "name": "Zardab", "type": "Rayon" }, { "code": "BA-BIH", - "name": "Federacija Bosne i Hercegovine", + "name": "Federation of Bosnia and Herzegovina", "type": "Entity" }, { "code": "BA-BRC", - "name": "Brčko distrikt", + "name": "Brčko District", "type": "District with special status" }, { @@ -1162,7 +1162,7 @@ }, { "code": "BD-03", - "name": "Bogura", + "name": "Bogra", "type": "District" }, { @@ -1177,7 +1177,7 @@ }, { "code": "BD-06", - "name": "Barishal", + "name": "Barisal Division", "type": "District" }, { @@ -1187,7 +1187,7 @@ }, { "code": "BD-08", - "name": "Cumilla", + "name": "Comilla", "type": "District" }, { @@ -1197,12 +1197,12 @@ }, { "code": "BD-10", - "name": "Chattogram", + "name": "Chittagong", "type": "District" }, { "code": "BD-11", - "name": "Cox's Bazar", + "name": "Cox’s Bazar", "type": "District" }, { @@ -1257,7 +1257,7 @@ }, { "code": "BD-22", - "name": "Jashore", + "name": "Jessore", "type": "District" }, { @@ -1272,7 +1272,7 @@ }, { "code": "BD-25", - "name": "Jhalakathi", + "name": "Jhalokati", "type": "District" }, { @@ -1292,7 +1292,7 @@ }, { "code": "BD-29", - "name": "Khagrachhari", + "name": "Khagrachari", "type": "District" }, { @@ -1337,7 +1337,7 @@ }, { "code": "BD-38", - "name": "Moulvibazar", + "name": "Maulvi Bazar", "type": "District" }, { @@ -1352,7 +1352,7 @@ }, { "code": "BD-41", - "name": "Netrakona", + "name": "Netrokona", "type": "District" }, { @@ -1372,7 +1372,7 @@ }, { "code": "BD-45", - "name": "Chapai Nawabganj", + "name": "Nawabganj", "type": "District" }, { @@ -1427,7 +1427,7 @@ }, { "code": "BD-56", - "name": "Rangamati", + "name": "Rangamati Hill", "type": "District" }, { @@ -1472,62 +1472,62 @@ }, { "code": "BD-A", - "name": "Barishal", + "name": "Barisal", "type": "Division" }, { "code": "BD-B", - "name": "Chattogram", + "name": "Chittagong Division", "type": "Division" }, { "code": "BD-C", - "name": "Dhaka", + "name": "Dhaka Division", "type": "Division" }, { "code": "BD-D", - "name": "Khulna", + "name": "Khulna Division", "type": "Division" }, { "code": "BD-E", - "name": "Rajshahi", + "name": "Rajshahi Division", "type": "Division" }, { "code": "BD-F", - "name": "Rangpur", + "name": "Rangpur Division", "type": "Division" }, { "code": "BD-G", - "name": "Sylhet", + "name": "Sylhet Division", "type": "Division" }, { "code": "BD-H", - "name": "Mymensingh", + "name": "Mymensingh Division", "type": "Division" }, { "code": "BE-BRU", - "name": "Bruxelles-Capitale, Région de", + "name": "Brussels", "type": "Region" }, { "code": "BE-VAN", - "name": "Antwerpen", + "name": "Antwerp", "type": "Province" }, { "code": "BE-VBR", - "name": "Vlaams-Brabant", + "name": "Flemish Brabant", "type": "Province" }, { "code": "BE-VLG", - "name": "Vlaams Gewest", + "name": "Flanders", "type": "Region" }, { @@ -1537,22 +1537,22 @@ }, { "code": "BE-VOV", - "name": "Oost-Vlaanderen", + "name": "East Flanders", "type": "Province" }, { "code": "BE-VWV", - "name": "West-Vlaanderen", + "name": "West Flanders", "type": "Province" }, { "code": "BE-WAL", - "name": "wallonne, Région", + "name": "Wallonia", "type": "Region" }, { "code": "BE-WBR", - "name": "Brabant wallon", + "name": "Walloon Brabant", "type": "Province" }, { @@ -1972,12 +1972,12 @@ }, { "code": "BG-22", - "name": "Sofia (stolitsa)", + "name": "Sofia", "type": "District" }, { "code": "BG-23", - "name": "Sofia", + "name": "Sofia District", "type": "District" }, { @@ -2007,22 +2007,22 @@ }, { "code": "BH-13", - "name": "Al ‘Āşimah", + "name": "Capital", "type": "Governorate" }, { "code": "BH-14", - "name": "Al Janūbīyah", + "name": "Southern", "type": "Governorate" }, { "code": "BH-15", - "name": "Al Muḩarraq", + "name": "Muharraq", "type": "Governorate" }, { "code": "BH-17", - "name": "Ash Shamālīyah", + "name": "Northern", "type": "Governorate" }, { @@ -2037,7 +2037,7 @@ }, { "code": "BI-BM", - "name": "Bujumbura Mairie", + "name": "Bujumbura", "type": "Province" }, { @@ -2117,7 +2117,7 @@ }, { "code": "BJ-AK", - "name": "Atacora", + "name": "Atakora", "type": "Department" }, { @@ -2147,7 +2147,7 @@ }, { "code": "BJ-KO", - "name": "Couffo", + "name": "Kouffo", "type": "Department" }, { @@ -2197,7 +2197,7 @@ }, { "code": "BO-B", - "name": "El Beni", + "name": "Beni", "type": "Department" }, { @@ -2287,7 +2287,7 @@ }, { "code": "BR-DF", - "name": "Distrito Federal", + "name": "Federal District", "type": "Federal district" }, { @@ -2422,7 +2422,7 @@ }, { "code": "BS-CK", - "name": "Crooked Island and Long Cay", + "name": "Crooked Island", "type": "District" }, { @@ -2447,7 +2447,7 @@ }, { "code": "BS-FP", - "name": "City of Freeport", + "name": "Freeport", "type": "District" }, { @@ -2487,7 +2487,7 @@ }, { "code": "BS-MI", - "name": "Moore's Island", + "name": "Moore’s Island", "type": "District" }, { @@ -2557,7 +2557,7 @@ }, { "code": "BT-12", - "name": "Chhukha", + "name": "Chukha", "type": "District" }, { @@ -2622,17 +2622,17 @@ }, { "code": "BT-42", - "name": "Monggar", + "name": "Mongar", "type": "District" }, { "code": "BT-43", - "name": "Pema Gatshel", + "name": "Pemagatshel", "type": "District" }, { "code": "BT-44", - "name": "Lhuentse", + "name": "Lhuntse", "type": "District" }, { @@ -2647,7 +2647,7 @@ }, { "code": "BT-TY", - "name": "Trashi Yangtse", + "name": "Trashiyangtse", "type": "District" }, { @@ -2732,37 +2732,37 @@ }, { "code": "BY-BR", - "name": "Bresckaja voblasć", + "name": "Brest", "type": "Oblast" }, { "code": "BY-HM", - "name": "Gorod Minsk", + "name": "Minsk", "type": "City" }, { "code": "BY-HO", - "name": "Gomel'skaja oblast'", + "name": "Homel", "type": "Oblast" }, { "code": "BY-HR", - "name": "Grodnenskaja oblast'", + "name": "Hrodna", "type": "Oblast" }, { "code": "BY-MA", - "name": "Mahilioŭskaja voblasć", + "name": "Magileu", "type": "Oblast" }, { "code": "BY-MI", - "name": "Minskaja oblast'", + "name": "Minsk Region", "type": "Oblast" }, { "code": "BY-VI", - "name": "Viciebskaja voblasć", + "name": "Vitebsk", "type": "Oblast" }, { @@ -2862,7 +2862,7 @@ }, { "code": "CD-BC", - "name": "Kongo Central", + "name": "Bas-Congo", "type": "Province" }, { @@ -2902,7 +2902,7 @@ }, { "code": "CD-KE", - "name": "Kasaï Oriental", + "name": "Kasaï-Oriental", "type": "Province" }, { @@ -2952,7 +2952,7 @@ }, { "code": "CD-NK", - "name": "Nord-Kivu", + "name": "North Kivu", "type": "Province" }, { @@ -2967,7 +2967,7 @@ }, { "code": "CD-SK", - "name": "Sud-Kivu", + "name": "South Kivu", "type": "Province" }, { @@ -3022,17 +3022,17 @@ }, { "code": "CF-HS", - "name": "Haute-Sangha / Mambéré-Kadéï", + "name": "Mambéré-Kadéï", "type": "Prefecture" }, { "code": "CF-KB", - "name": "Gribingui", + "name": "Nana-Grébizi", "type": "Economic prefecture" }, { "code": "CF-KG", - "name": "Kémo-Gribingui", + "name": "Kémo", "type": "Prefecture" }, { @@ -3047,7 +3047,7 @@ }, { "code": "CF-MP", - "name": "Ombella-Mpoko", + "name": "Ombella-M’Poko", "type": "Prefecture" }, { @@ -3062,7 +3062,7 @@ }, { "code": "CF-SE", - "name": "Sangha", + "name": "Sangha-Mbaéré", "type": "Economic prefecture" }, { @@ -3152,7 +3152,7 @@ }, { "code": "CH-BE", - "name": "Berne", + "name": "Bern", "type": "Canton" }, { @@ -3172,7 +3172,7 @@ }, { "code": "CH-GE", - "name": "Genève", + "name": "Geneva", "type": "Canton" }, { @@ -3192,7 +3192,7 @@ }, { "code": "CH-LU", - "name": "Luzern", + "name": "Lucerne", "type": "Canton" }, { @@ -3212,7 +3212,7 @@ }, { "code": "CH-SG", - "name": "Sankt Gallen", + "name": "St. Gallen", "type": "Canton" }, { @@ -3272,7 +3272,7 @@ }, { "code": "CI-BS", - "name": "Bas-Sassandra", + "name": "Bas-Sassandra²", "type": "District" }, { @@ -3282,7 +3282,7 @@ }, { "code": "CI-DN", - "name": "Denguélé", + "name": "Denguélé²", "type": "District" }, { @@ -3292,12 +3292,12 @@ }, { "code": "CI-LC", - "name": "Lacs", + "name": "Lacs²", "type": "District" }, { "code": "CI-LG", - "name": "Lagunes", + "name": "Lagunes²", "type": "District" }, { @@ -3317,7 +3317,7 @@ }, { "code": "CI-VB", - "name": "Vallée du Bandama", + "name": "Vallée du Bandama²", "type": "District" }, { @@ -3332,12 +3332,12 @@ }, { "code": "CI-ZZ", - "name": "Zanzan", + "name": "Zanzan²", "type": "District" }, { "code": "CL-AI", - "name": "Aisén del General Carlos Ibañez del Campo", + "name": "Aysén", "type": "Region" }, { @@ -3352,7 +3352,7 @@ }, { "code": "CL-AR", - "name": "La Araucanía", + "name": "Araucanía", "type": "Region" }, { @@ -3362,7 +3362,7 @@ }, { "code": "CL-BI", - "name": "Biobío", + "name": "Bío Bío", "type": "Region" }, { @@ -3372,7 +3372,7 @@ }, { "code": "CL-LI", - "name": "Libertador General Bernardo O'Higgins", + "name": "Libertador General Bernardo O’Higgins", "type": "Region" }, { @@ -3387,7 +3387,7 @@ }, { "code": "CL-MA", - "name": "Magallanes", + "name": "Magallanes Region", "type": "Region" }, { @@ -3402,7 +3402,7 @@ }, { "code": "CL-RM", - "name": "Región Metropolitana de Santiago", + "name": "Santiago Metropolitan", "type": "Region" }, { @@ -3417,7 +3417,7 @@ }, { "code": "CM-AD", - "name": "Adamaoua", + "name": "Adamawa", "type": "Region" }, { @@ -3447,7 +3447,7 @@ }, { "code": "CM-NW", - "name": "North-West", + "name": "Northwest", "type": "Region" }, { @@ -3462,177 +3462,177 @@ }, { "code": "CM-SW", - "name": "South-West", + "name": "Southwest", "type": "Region" }, { "code": "CN-AH", - "name": "Anhui Sheng", + "name": "Anhui", "type": "Province" }, { "code": "CN-BJ", - "name": "Beijing Shi", + "name": "Beijing", "type": "Municipality" }, { "code": "CN-CQ", - "name": "Chongqing Shi", + "name": "Chongqing", "type": "Municipality" }, { "code": "CN-FJ", - "name": "Fujian Sheng", + "name": "Fujian", "type": "Province" }, { "code": "CN-GD", - "name": "Guangdong Sheng", + "name": "Guangdong", "type": "Province" }, { "code": "CN-GS", - "name": "Gansu Sheng", + "name": "Gansu", "type": "Province" }, { "code": "CN-GX", - "name": "Guangxi Zhuangzu Zizhiqu", + "name": "Guangxi", "type": "Autonomous region" }, { "code": "CN-GZ", - "name": "Guizhou Sheng", + "name": "Guizhou", "type": "Province" }, { "code": "CN-HA", - "name": "Henan Sheng", + "name": "Henan", "type": "Province" }, { "code": "CN-HB", - "name": "Hubei Sheng", + "name": "Hubei", "type": "Province" }, { "code": "CN-HE", - "name": "Hebei Sheng", + "name": "Hebei", "type": "Province" }, { "code": "CN-HI", - "name": "Hainan Sheng", + "name": "Hainan", "type": "Province" }, { "code": "CN-HK", - "name": "Hong Kong SAR", + "name": "Hong Kong", "type": "Special administrative region" }, { "code": "CN-HL", - "name": "Heilongjiang Sheng", + "name": "Heilongjiang", "type": "Province" }, { "code": "CN-HN", - "name": "Hunan Sheng", + "name": "Hunan", "type": "Province" }, { "code": "CN-JL", - "name": "Jilin Sheng", + "name": "Jilin", "type": "Province" }, { "code": "CN-JS", - "name": "Jiangsu Sheng", + "name": "Jiangsu", "type": "Province" }, { "code": "CN-JX", - "name": "Jiangxi Sheng", + "name": "Jiangxi", "type": "Province" }, { "code": "CN-LN", - "name": "Liaoning Sheng", + "name": "Liaoning", "type": "Province" }, { "code": "CN-MO", - "name": "Macao SAR", + "name": "Macau", "type": "Special administrative region" }, { "code": "CN-NM", - "name": "Nei Mongol Zizhiqu", + "name": "Inner Mongolia", "type": "Autonomous region" }, { "code": "CN-NX", - "name": "Ningxia Huizu Zizhiqu", + "name": "Ningxia", "type": "Autonomous region" }, { "code": "CN-QH", - "name": "Qinghai Sheng", + "name": "Qinghai", "type": "Province" }, { "code": "CN-SC", - "name": "Sichuan Sheng", + "name": "Sichuan", "type": "Province" }, { "code": "CN-SD", - "name": "Shandong Sheng", + "name": "Shandong", "type": "Province" }, { "code": "CN-SH", - "name": "Shanghai Shi", + "name": "Shanghai", "type": "Municipality" }, { "code": "CN-SN", - "name": "Shaanxi Sheng", + "name": "Shaanxi", "type": "Province" }, { "code": "CN-SX", - "name": "Shanxi Sheng", + "name": "Shanxi", "type": "Province" }, { "code": "CN-TJ", - "name": "Tianjin Shi", + "name": "Tianjin", "type": "Municipality" }, { "code": "CN-TW", - "name": "Taiwan Sheng", + "name": "Taiwan", "type": "Province" }, { "code": "CN-XJ", - "name": "Xinjiang Uygur Zizhiqu", + "name": "Xinjiang", "type": "Autonomous region" }, { "code": "CN-XZ", - "name": "Xizang Zizhiqu", + "name": "Tibet", "type": "Autonomous region" }, { "code": "CN-YN", - "name": "Yunnan Sheng", + "name": "Yunnan", "type": "Province" }, { "code": "CN-ZJ", - "name": "Zhejiang Sheng", + "name": "Zhejiang", "type": "Province" }, { @@ -3707,7 +3707,7 @@ }, { "code": "CO-DC", - "name": "Distrito Capital de Bogotá", + "name": "Capital District", "type": "Capital district" }, { @@ -3772,7 +3772,7 @@ }, { "code": "CO-SAP", - "name": "San Andrés, Providencia y Santa Catalina", + "name": "San Andrés & Providencia", "type": "Department" }, { @@ -3842,7 +3842,7 @@ }, { "code": "CU-03", - "name": "La Habana", + "name": "Havana", "type": "Province" }, { @@ -3917,7 +3917,7 @@ }, { "code": "CV-B", - "name": "Ilhas de Barlavento", + "name": "Barlavento Islands", "type": "Geographical region" }, { @@ -3987,7 +3987,7 @@ }, { "code": "CV-S", - "name": "Ilhas de Sotavento", + "name": "Sotavento Islands", "type": "Geographical region" }, { @@ -4037,42 +4037,42 @@ }, { "code": "CY-01", - "name": "Lefkosia", + "name": "Nicosia", "type": "District" }, { "code": "CY-02", - "name": "Lemesos", + "name": "Limassol", "type": "District" }, { "code": "CY-03", - "name": "Larnaka", + "name": "Larnaca", "type": "District" }, { "code": "CY-04", - "name": "Ammochostos", + "name": "Famagusta", "type": "District" }, { "code": "CY-05", - "name": "Baf", + "name": "Paphos", "type": "District" }, { "code": "CY-06", - "name": "Girne", + "name": "Kyrenia", "type": "District" }, { "code": "CZ-10", - "name": "Praha, Hlavní město", + "name": "Prague, Hlavní mešto", "type": "Capital city" }, { "code": "CZ-20", - "name": "Středočeský kraj", + "name": "Středočeský", "type": "Region" }, { @@ -4117,12 +4117,12 @@ }, { "code": "CZ-209", - "name": "Praha-východ", + "name": "Prague-East", "type": "District" }, { "code": "CZ-20A", - "name": "Praha-západ", + "name": "Prague-West", "type": "District" }, { @@ -4137,7 +4137,7 @@ }, { "code": "CZ-31", - "name": "Jihočeský kraj", + "name": "Jihočeský", "type": "Region" }, { @@ -4177,7 +4177,7 @@ }, { "code": "CZ-32", - "name": "Plzeňský kraj", + "name": "Plzeňský", "type": "Region" }, { @@ -4192,17 +4192,17 @@ }, { "code": "CZ-323", - "name": "Plzeň-město", + "name": "Plzeň", "type": "District" }, { "code": "CZ-324", - "name": "Plzeň-jih", + "name": "Plzeň-South", "type": "District" }, { "code": "CZ-325", - "name": "Plzeň-sever", + "name": "Plzeň-North", "type": "District" }, { @@ -4217,7 +4217,7 @@ }, { "code": "CZ-41", - "name": "Karlovarský kraj", + "name": "Karlovarský", "type": "Region" }, { @@ -4237,7 +4237,7 @@ }, { "code": "CZ-42", - "name": "Ústecký kraj", + "name": "Ústecký", "type": "Region" }, { @@ -4277,7 +4277,7 @@ }, { "code": "CZ-51", - "name": "Liberecký kraj", + "name": "Liberecký", "type": "Region" }, { @@ -4302,7 +4302,7 @@ }, { "code": "CZ-52", - "name": "Královéhradecký kraj", + "name": "Královéhradecký", "type": "Region" }, { @@ -4332,7 +4332,7 @@ }, { "code": "CZ-53", - "name": "Pardubický kraj", + "name": "Pardubický", "type": "Region" }, { @@ -4357,7 +4357,7 @@ }, { "code": "CZ-63", - "name": "Kraj Vysočina", + "name": "Vysočina", "type": "Region" }, { @@ -4387,7 +4387,7 @@ }, { "code": "CZ-64", - "name": "Jihomoravský kraj", + "name": "Jihomoravský", "type": "Region" }, { @@ -4427,7 +4427,7 @@ }, { "code": "CZ-71", - "name": "Olomoucký kraj", + "name": "Olomoucký", "type": "Region" }, { @@ -4457,7 +4457,7 @@ }, { "code": "CZ-72", - "name": "Zlínský kraj", + "name": "Zlínský", "type": "Region" }, { @@ -4482,7 +4482,7 @@ }, { "code": "CZ-80", - "name": "Moravskoslezský kraj", + "name": "Moravskoslezský", "type": "Region" }, { @@ -4512,7 +4512,7 @@ }, { "code": "CZ-806", - "name": "Ostrava-město", + "name": "Ostrava", "type": "District" }, { @@ -4532,7 +4532,7 @@ }, { "code": "DE-BY", - "name": "Bayern", + "name": "Bavaria", "type": "Land" }, { @@ -4542,7 +4542,7 @@ }, { "code": "DE-HE", - "name": "Hessen", + "name": "Hesse", "type": "Land" }, { @@ -4557,17 +4557,17 @@ }, { "code": "DE-NI", - "name": "Niedersachsen", + "name": "Lower Saxony", "type": "Land" }, { "code": "DE-NW", - "name": "Nordrhein-Westfalen", + "name": "North Rhine-Westphalia", "type": "Land" }, { "code": "DE-RP", - "name": "Rheinland-Pfalz", + "name": "Rhineland-Palatinate", "type": "Land" }, { @@ -4582,17 +4582,17 @@ }, { "code": "DE-SN", - "name": "Sachsen", + "name": "Saxony", "type": "Land" }, { "code": "DE-ST", - "name": "Sachsen-Anhalt", + "name": "Saxony-Anhalt", "type": "Land" }, { "code": "DE-TH", - "name": "Thüringen", + "name": "Thuringia", "type": "Land" }, { @@ -4627,27 +4627,27 @@ }, { "code": "DK-81", - "name": "Nordjylland", + "name": "Northern Denmark", "type": "Region" }, { "code": "DK-82", - "name": "Midtjylland", + "name": "Central Denmark", "type": "Region" }, { "code": "DK-83", - "name": "Syddanmark", + "name": "Southern Denmark", "type": "Region" }, { "code": "DK-84", - "name": "Hovedstaden", + "name": "Capital Region", "type": "Region" }, { "code": "DK-85", - "name": "Sjælland", + "name": "Zealand", "type": "Region" }, { @@ -4702,7 +4702,7 @@ }, { "code": "DO-01", - "name": "Distrito Nacional (Santo Domingo)", + "name": "Distrito Nacional", "type": "District" }, { @@ -4892,7 +4892,7 @@ }, { "code": "DO-39", - "name": "Higuamo", + "name": "Higüamo", "type": "Region" }, { @@ -4927,7 +4927,7 @@ }, { "code": "DZ-04", - "name": "Oum el Bouaghi", + "name": "Oum El Bouaghi", "type": "Province" }, { @@ -4962,7 +4962,7 @@ }, { "code": "DZ-11", - "name": "Tamanrasset", + "name": "Tamanghasset", "type": "Province" }, { @@ -4987,7 +4987,7 @@ }, { "code": "DZ-16", - "name": "Alger", + "name": "Algiers", "type": "Province" }, { @@ -5047,7 +5047,7 @@ }, { "code": "DZ-28", - "name": "M'sila", + "name": "M’Sila", "type": "Province" }, { @@ -5117,7 +5117,7 @@ }, { "code": "DZ-42", - "name": "Tipaza", + "name": "Tipasa", "type": "Province" }, { @@ -5277,7 +5277,7 @@ }, { "code": "EC-S", - "name": "Morona Santiago", + "name": "Morona-Santiago", "type": "Province" }, { @@ -5317,7 +5317,7 @@ }, { "code": "EC-Z", - "name": "Zamora Chinchipe", + "name": "Zamora-Chinchipe", "type": "Province" }, { @@ -5447,12 +5447,12 @@ }, { "code": "EE-37", - "name": "Harjumaa", + "name": "Harju", "type": "County" }, { "code": "EE-39", - "name": "Hiiumaa", + "name": "Hiiu", "type": "County" }, { @@ -5612,7 +5612,7 @@ }, { "code": "EE-663", - "name": "Rakvere", + "name": "Rakvere²", "type": "Urban municipality" }, { @@ -5677,7 +5677,7 @@ }, { "code": "EE-74", - "name": "Saaremaa", + "name": "Saare", "type": "County" }, { @@ -5702,7 +5702,7 @@ }, { "code": "EE-796", - "name": "Tartu", + "name": "Tartu²", "type": "Rural municipality" }, { @@ -5732,7 +5732,7 @@ }, { "code": "EE-84", - "name": "Viljandimaa", + "name": "Viljandi", "type": "County" }, { @@ -5752,12 +5752,12 @@ }, { "code": "EE-897", - "name": "Viljandi", + "name": "Viljandi²", "type": "Urban municipality" }, { "code": "EE-899", - "name": "Viljandi", + "name": "Viljandi³", "type": "Rural municipality" }, { @@ -5777,7 +5777,7 @@ }, { "code": "EE-917", - "name": "Võru", + "name": "Võru²", "type": "Rural municipality" }, { @@ -5792,152 +5792,152 @@ }, { "code": "EG-ALX", - "name": "Al Iskandarīyah", + "name": "Alexandria", "type": "Governorate" }, { "code": "EG-ASN", - "name": "Aswān", + "name": "Aswan", "type": "Governorate" }, { "code": "EG-AST", - "name": "Asyūţ", + "name": "Asyut", "type": "Governorate" }, { "code": "EG-BA", - "name": "Al Baḩr al Aḩmar", + "name": "Red Sea", "type": "Governorate" }, { "code": "EG-BH", - "name": "Al Buḩayrah", + "name": "Beheira", "type": "Governorate" }, { "code": "EG-BNS", - "name": "Banī Suwayf", + "name": "Beni Suef", "type": "Governorate" }, { "code": "EG-C", - "name": "Al Qāhirah", + "name": "Cairo", "type": "Governorate" }, { "code": "EG-DK", - "name": "Ad Daqahlīyah", + "name": "Dakahlia", "type": "Governorate" }, { "code": "EG-DT", - "name": "Dumyāţ", + "name": "Damietta", "type": "Governorate" }, { "code": "EG-FYM", - "name": "Al Fayyūm", + "name": "Faiyum", "type": "Governorate" }, { "code": "EG-GH", - "name": "Al Gharbīyah", + "name": "Gharbia", "type": "Governorate" }, { "code": "EG-GZ", - "name": "Al Jīzah", + "name": "Giza", "type": "Governorate" }, { "code": "EG-IS", - "name": "Al Ismā'īlīyah", + "name": "Ismailia", "type": "Governorate" }, { "code": "EG-JS", - "name": "Janūb Sīnā'", + "name": "South Sinai", "type": "Governorate" }, { "code": "EG-KB", - "name": "Al Qalyūbīyah", + "name": "Qalyubia", "type": "Governorate" }, { "code": "EG-KFS", - "name": "Kafr ash Shaykh", + "name": "Kafr el-Sheikh", "type": "Governorate" }, { "code": "EG-KN", - "name": "Qinā", + "name": "Qena", "type": "Governorate" }, { "code": "EG-LX", - "name": "Al Uqşur", + "name": "Luxor", "type": "Governorate" }, { "code": "EG-MN", - "name": "Al Minyā", + "name": "Minya", "type": "Governorate" }, { "code": "EG-MNF", - "name": "Al Minūfīyah", + "name": "Monufia", "type": "Governorate" }, { "code": "EG-MT", - "name": "Maţrūḩ", + "name": "Matrouh", "type": "Governorate" }, { "code": "EG-PTS", - "name": "Būr Sa‘īd", + "name": "Port Said", "type": "Governorate" }, { "code": "EG-SHG", - "name": "Sūhāj", + "name": "Sohag", "type": "Governorate" }, { "code": "EG-SHR", - "name": "Ash Sharqīyah", + "name": "Al Sharqia", "type": "Governorate" }, { "code": "EG-SIN", - "name": "Shamāl Sīnā'", + "name": "North Sinai", "type": "Governorate" }, { "code": "EG-SUZ", - "name": "As Suways", + "name": "Suez", "type": "Governorate" }, { "code": "EG-WAD", - "name": "Al Wādī al Jadīd", + "name": "New Valley", "type": "Governorate" }, { "code": "ER-AN", - "name": "Ansabā", + "name": "Anseba", "type": "Region" }, { "code": "ER-DK", - "name": "Debubawi K’eyyĭḥ Baḥri", + "name": "Southern Red Sea", "type": "Region" }, { "code": "ER-DU", - "name": "Al Janūbī", + "name": "Debub", "type": "Region" }, { @@ -5947,17 +5947,17 @@ }, { "code": "ER-MA", - "name": "Al Awsaţ", + "name": "Maekel", "type": "Region" }, { "code": "ER-SK", - "name": "Semienawi K’eyyĭḥ Baḥri", + "name": "Northern Red Sea", "type": "Region" }, { "code": "ES-A", - "name": "Alacant*", + "name": "Alicante", "type": "Province" }, { @@ -5972,17 +5972,17 @@ }, { "code": "ES-AN", - "name": "Andalucía", + "name": "Andalusia", "type": "Autonomous community" }, { "code": "ES-AR", - "name": "Aragón", + "name": "Aragon", "type": "Autonomous community" }, { "code": "ES-AS", - "name": "Asturias, Principado de", + "name": "Asturias", "type": "Autonomous community" }, { @@ -5992,7 +5992,7 @@ }, { "code": "ES-B", - "name": "Barcelona [Barcelona]", + "name": "Barcelona", "type": "Province" }, { @@ -6002,7 +6002,7 @@ }, { "code": "ES-BI", - "name": "Bizkaia", + "name": "Biscay", "type": "Province" }, { @@ -6012,7 +6012,7 @@ }, { "code": "ES-C", - "name": "A Coruña [La Coruña]", + "name": "A Coruña", "type": "Province" }, { @@ -6037,17 +6037,17 @@ }, { "code": "ES-CL", - "name": "Castilla y León", + "name": "Castile and León", "type": "Autonomous community" }, { "code": "ES-CM", - "name": "Castilla-La Mancha", + "name": "Castile-La Mancha", "type": "Autonomous community" }, { "code": "ES-CN", - "name": "Canarias", + "name": "Canary Islands", "type": "Autonomous community" }, { @@ -6062,12 +6062,12 @@ }, { "code": "ES-CS", - "name": "Castelló*", + "name": "Castellón", "type": "Province" }, { "code": "ES-CT", - "name": "Catalunya [Cataluña]", + "name": "Catalonia", "type": "Autonomous community" }, { @@ -6082,7 +6082,7 @@ }, { "code": "ES-GA", - "name": "Galicia [Galicia]", + "name": "Galicia", "type": "Autonomous community" }, { @@ -6092,7 +6092,7 @@ }, { "code": "ES-GI", - "name": "Girona [Gerona]", + "name": "Girona", "type": "Province" }, { @@ -6117,7 +6117,7 @@ }, { "code": "ES-IB", - "name": "Illes Balears [Islas Baleares]", + "name": "Balearic Islands", "type": "Autonomous community" }, { @@ -6127,7 +6127,7 @@ }, { "code": "ES-L", - "name": "Lleida [Lérida]", + "name": "Lleida", "type": "Province" }, { @@ -6137,17 +6137,17 @@ }, { "code": "ES-LO", - "name": "La Rioja", + "name": "La Rioja Province", "type": "Province" }, { "code": "ES-LU", - "name": "Lugo [Lugo]", + "name": "Lugo", "type": "Province" }, { "code": "ES-M", - "name": "Madrid", + "name": "Madrid Province", "type": "Province" }, { @@ -6157,12 +6157,12 @@ }, { "code": "ES-MC", - "name": "Murcia, Región de", + "name": "Murcia Region", "type": "Autonomous community" }, { "code": "ES-MD", - "name": "Madrid, Comunidad de", + "name": "Madrid Autonomous Community", "type": "Autonomous community" }, { @@ -6177,22 +6177,22 @@ }, { "code": "ES-NA", - "name": "Nafarroa*", + "name": "Navarra", "type": "Province" }, { "code": "ES-NC", - "name": "Nafarroako Foru Komunitatea*", + "name": "Navarra Chartered Community", "type": "Autonomous community" }, { "code": "ES-O", - "name": "Asturias", + "name": "Asturias Province", "type": "Province" }, { "code": "ES-OR", - "name": "Ourense [Orense]", + "name": "Ourense", "type": "Province" }, { @@ -6202,17 +6202,17 @@ }, { "code": "ES-PM", - "name": "Illes Balears [Islas Baleares]", + "name": "Balears Province", "type": "Province" }, { "code": "ES-PO", - "name": "Pontevedra [Pontevedra]", + "name": "Pontevedra", "type": "Province" }, { "code": "ES-PV", - "name": "Euskal Herria", + "name": "Basque Country", "type": "Autonomous community" }, { @@ -6222,7 +6222,7 @@ }, { "code": "ES-S", - "name": "Cantabria", + "name": "Cantabria Province", "type": "Province" }, { @@ -6232,7 +6232,7 @@ }, { "code": "ES-SE", - "name": "Sevilla", + "name": "Seville", "type": "Province" }, { @@ -6252,7 +6252,7 @@ }, { "code": "ES-T", - "name": "Tarragona [Tarragona]", + "name": "Tarragona", "type": "Province" }, { @@ -6282,12 +6282,12 @@ }, { "code": "ES-VC", - "name": "Valenciana, Comunidad", + "name": "Valencian Community", "type": "Autonomous community" }, { "code": "ES-VI", - "name": "Araba*", + "name": "Álava", "type": "Province" }, { @@ -6312,12 +6312,12 @@ }, { "code": "ET-AM", - "name": "Amara", + "name": "Amhara", "type": "Regional state" }, { "code": "ET-BE", - "name": "Benshangul-Gumaz", + "name": "Benishangul-Gumuz", "type": "Regional state" }, { @@ -6327,12 +6327,12 @@ }, { "code": "ET-GA", - "name": "Gambela Peoples", + "name": "Gambela", "type": "Regional state" }, { "code": "ET-HA", - "name": "Harari People", + "name": "Harari", "type": "Regional state" }, { @@ -6347,7 +6347,7 @@ }, { "code": "ET-SN", - "name": "Southern Nations, Nationalities and Peoples", + "name": "Southern Nations, Nationalities, and Peoples", "type": "Regional state" }, { @@ -6362,27 +6362,27 @@ }, { "code": "ET-TI", - "name": "Tigrai", + "name": "Tigray", "type": "Regional state" }, { "code": "FI-01", - "name": "Landskapet Åland", + "name": "Åland Islands", "type": "Region" }, { "code": "FI-02", - "name": "Etelä-Karjala", + "name": "South Karelia", "type": "Region" }, { "code": "FI-03", - "name": "Etelä-Pohjanmaa", + "name": "Southern Ostrobothnia", "type": "Region" }, { "code": "FI-04", - "name": "Etelä-Savo", + "name": "Southern Savonia", "type": "Region" }, { @@ -6392,17 +6392,17 @@ }, { "code": "FI-06", - "name": "Kanta-Häme", + "name": "Tavastia Proper", "type": "Region" }, { "code": "FI-07", - "name": "Keski-Pohjanmaa", + "name": "Central Ostrobothnia", "type": "Region" }, { "code": "FI-08", - "name": "Keski-Suomi", + "name": "Central Finland", "type": "Region" }, { @@ -6412,7 +6412,7 @@ }, { "code": "FI-10", - "name": "Lappi", + "name": "Lapland", "type": "Region" }, { @@ -6422,27 +6422,27 @@ }, { "code": "FI-12", - "name": "Pohjanmaa", + "name": "Ostrobothnia", "type": "Region" }, { "code": "FI-13", - "name": "Pohjois-Karjala", + "name": "North Karelia", "type": "Region" }, { "code": "FI-14", - "name": "Pohjois-Pohjanmaa", + "name": "Northern Ostrobothnia", "type": "Region" }, { "code": "FI-15", - "name": "Pohjois-Savo", + "name": "Northern Savonia", "type": "Region" }, { "code": "FI-16", - "name": "Päijät-Häme", + "name": "Päijänne Tavastia", "type": "Region" }, { @@ -6457,7 +6457,7 @@ }, { "code": "FI-19", - "name": "Varsinais-Suomi", + "name": "Southwest Finland", "type": "Region" }, { @@ -6497,7 +6497,7 @@ }, { "code": "FJ-08", - "name": "Nadroga and Navosa", + "name": "Nadroga-Navosa", "type": "Province" }, { @@ -6677,12 +6677,12 @@ }, { "code": "FR-21", - "name": "Côte-d'Or", + "name": "Côte-d’Or", "type": "Metropolitan department" }, { "code": "FR-22", - "name": "Côtes-d'Armor", + "name": "Côtes-d’Armor", "type": "Metropolitan department" }, { @@ -7067,7 +7067,7 @@ }, { "code": "FR-95", - "name": "Val-d'Oise", + "name": "Val-d’Oise", "type": "Metropolitan department" }, { @@ -7102,22 +7102,22 @@ }, { "code": "FR-BFC", - "name": "Bourgogne-Franche-Comté", + "name": "Burgundy-Franche-Comté", "type": "Metropolitan region" }, { "code": "FR-BL", - "name": "Saint-Barthélemy", + "name": "St. Barthélemy", "type": "Overseas collectivity" }, { "code": "FR-BRE", - "name": "Bretagne", + "name": "Brittany", "type": "Metropolitan region" }, { "code": "FR-CP", - "name": "Clipperton", + "name": "Clipperton Island", "type": "Dependency" }, { @@ -7137,12 +7137,12 @@ }, { "code": "FR-IDF", - "name": "Île-de-France", + "name": "Île-de-France²", "type": "Metropolitan region" }, { "code": "FR-MF", - "name": "Saint-Martin", + "name": "St. Martin", "type": "Overseas collectivity" }, { @@ -7152,7 +7152,7 @@ }, { "code": "FR-NC", - "name": "Nouvelle-Calédonie", + "name": "New Caledonia", "type": "Overseas collectivity with special status" }, { @@ -7177,22 +7177,22 @@ }, { "code": "FR-PF", - "name": "Polynésie française", + "name": "French Polynesia", "type": "Overseas collectivity" }, { "code": "FR-PM", - "name": "Saint-Pierre-et-Miquelon", + "name": "St. Pierre & Miquelon", "type": "Overseas collectivity" }, { "code": "FR-TF", - "name": "Terres australes françaises", + "name": "French Southern Territories", "type": "Overseas territory" }, { "code": "FR-WF", - "name": "Wallis-et-Futuna", + "name": "Wallis & Futuna", "type": "Overseas collectivity" }, { @@ -7242,7 +7242,7 @@ }, { "code": "GB-ABC", - "name": "Armagh City, Banbridge and Craigavon", + "name": "Armagh, Banbridge and Craigavon", "type": "District" }, { @@ -7252,7 +7252,7 @@ }, { "code": "GB-ABE", - "name": "Aberdeen City", + "name": "Aberdeen", "type": "Council area" }, { @@ -7262,7 +7262,7 @@ }, { "code": "GB-AGY", - "name": "Isle of Anglesey [Sir Ynys Môn GB-YNM]", + "name": "Anglesey", "type": "Unitary authority" }, { @@ -7317,12 +7317,12 @@ }, { "code": "GB-BFS", - "name": "Belfast City", + "name": "Belfast", "type": "District" }, { "code": "GB-BGE", - "name": "Bridgend [Pen-y-bont ar Ogwr GB-POG]", + "name": "Bridgend", "type": "Unitary authority" }, { @@ -7382,7 +7382,7 @@ }, { "code": "GB-BST", - "name": "Bristol, City of", + "name": "Bristol", "type": "Unitary authority" }, { @@ -7397,7 +7397,7 @@ }, { "code": "GB-CAY", - "name": "Caerphilly [Caerffili GB-CAF]", + "name": "Caerphilly", "type": "Unitary authority" }, { @@ -7412,7 +7412,7 @@ }, { "code": "GB-CGN", - "name": "Ceredigion [Sir Ceredigion]", + "name": "Ceredigion", "type": "Unitary authority" }, { @@ -7447,7 +7447,7 @@ }, { "code": "GB-CMN", - "name": "Carmarthenshire [Sir Gaerfyrddin GB-GFY]", + "name": "Carmarthenshire", "type": "Unitary authority" }, { @@ -7462,7 +7462,7 @@ }, { "code": "GB-CRF", - "name": "Cardiff [Caerdydd GB-CRD]", + "name": "Cardiff", "type": "Unitary authority" }, { @@ -7487,7 +7487,7 @@ }, { "code": "GB-DEN", - "name": "Denbighshire [Sir Ddinbych GB-DDB]", + "name": "Denbighshire", "type": "Unitary authority" }, { @@ -7512,7 +7512,7 @@ }, { "code": "GB-DND", - "name": "Dundee City", + "name": "Dundee", "type": "Council area" }, { @@ -7532,7 +7532,7 @@ }, { "code": "GB-DUR", - "name": "Durham, County", + "name": "Durham", "type": "Unitary authority" }, { @@ -7547,7 +7547,7 @@ }, { "code": "GB-EDH", - "name": "Edinburgh, City of", + "name": "Edinburgh", "type": "Council area" }, { @@ -7562,7 +7562,7 @@ }, { "code": "GB-ELS", - "name": "Eilean Siar", + "name": "Outer Hebrides", "type": "Council area" }, { @@ -7607,7 +7607,7 @@ }, { "code": "GB-FLN", - "name": "Flintshire [Sir y Fflint GB-FFL]", + "name": "Flintshire", "type": "Unitary authority" }, { @@ -7622,7 +7622,7 @@ }, { "code": "GB-GLG", - "name": "Glasgow City", + "name": "Glasgow", "type": "Council area" }, { @@ -7802,7 +7802,7 @@ }, { "code": "GB-LND", - "name": "London, City of", + "name": "London", "type": "City corporation" }, { @@ -7842,7 +7842,7 @@ }, { "code": "GB-MON", - "name": "Monmouthshire [Sir Fynwy GB-FYN]", + "name": "Monmouthshire", "type": "Unitary authority" }, { @@ -7857,12 +7857,12 @@ }, { "code": "GB-MTY", - "name": "Merthyr Tydfil [Merthyr Tudful GB-MTU]", + "name": "Merthyr Tydfil", "type": "Unitary authority" }, { "code": "GB-MUL", - "name": "Mid-Ulster", + "name": "Mid Ulster", "type": "District" }, { @@ -7927,7 +7927,7 @@ }, { "code": "GB-NTL", - "name": "Neath Port Talbot [Castell-nedd Port Talbot GB-CTL]", + "name": "Neath Port Talbot", "type": "Unitary authority" }, { @@ -7947,7 +7947,7 @@ }, { "code": "GB-NWP", - "name": "Newport [Casnewydd GB-CNW]", + "name": "Newport", "type": "Unitary authority" }, { @@ -7972,7 +7972,7 @@ }, { "code": "GB-PEM", - "name": "Pembrokeshire [Sir Benfro GB-BNF]", + "name": "Pembrokeshire", "type": "Unitary authority" }, { @@ -7997,7 +7997,7 @@ }, { "code": "GB-PTE", - "name": "Peterborough", + "name": "Peter", "type": "Unitary authority" }, { @@ -8012,7 +8012,7 @@ }, { "code": "GB-RCT", - "name": "Rhondda Cynon Taff [Rhondda CynonTaf]", + "name": "Rhondda Cynon Taf", "type": "Unitary authority" }, { @@ -8087,7 +8087,7 @@ }, { "code": "GB-SHN", - "name": "St. Helens", + "name": "Saint Helens", "type": "Metropolitan district" }, { @@ -8177,7 +8177,7 @@ }, { "code": "GB-SWA", - "name": "Swansea [Abertawe GB-ATA]", + "name": "Swansea", "type": "Unitary authority" }, { @@ -8212,7 +8212,7 @@ }, { "code": "GB-TOF", - "name": "Torfaen [Tor-faen]", + "name": "Torfaen", "type": "Unitary authority" }, { @@ -8227,7 +8227,7 @@ }, { "code": "GB-VGL", - "name": "Vale of Glamorgan, The [Bro Morgannwg GB-BMG]", + "name": "Vale of Glamorgan", "type": "Unitary authority" }, { @@ -8277,7 +8277,7 @@ }, { "code": "GB-WLS", - "name": "Wales [Cymru GB-CYM]", + "name": "Wales", "type": "Country" }, { @@ -8322,7 +8322,7 @@ }, { "code": "GB-WRX", - "name": "Wrexham [Wrecsam GB-WRC]", + "name": "Wrexham", "type": "Unitary authority" }, { @@ -8342,7 +8342,7 @@ }, { "code": "GB-ZET", - "name": "Shetland Islands", + "name": "Shetland", "type": "Council area" }, { @@ -8377,7 +8377,7 @@ }, { "code": "GD-10", - "name": "Southern Grenadine Islands", + "name": "Carriacou and Petite Martinique", "type": "Dependency" }, { @@ -8387,7 +8387,7 @@ }, { "code": "GE-AJ", - "name": "Ajaria", + "name": "Adjara", "type": "Autonomous republic" }, { @@ -8402,7 +8402,7 @@ }, { "code": "GE-KA", - "name": "K'akheti", + "name": "Kakheti", "type": "Region" }, { @@ -8417,7 +8417,7 @@ }, { "code": "GE-RL", - "name": "Rach'a-Lechkhumi-Kvemo Svaneti", + "name": "Racha-Lechkhumi and Kvemo Svaneti", "type": "Region" }, { @@ -8527,12 +8527,12 @@ }, { "code": "GL-KU", - "name": "Kommune Kujalleq", + "name": "Kujalleq", "type": "Municipality" }, { "code": "GL-QE", - "name": "Qeqqata Kommunia", + "name": "Qeqqata", "type": "Municipality" }, { @@ -8542,7 +8542,7 @@ }, { "code": "GL-SM", - "name": "Kommuneqarfik Sermersooq", + "name": "Sermersooq", "type": "Municipality" }, { @@ -8552,32 +8552,32 @@ }, { "code": "GM-L", - "name": "Lower River", + "name": "Lower River Division", "type": "Division" }, { "code": "GM-M", - "name": "Central River", + "name": "Central River Division", "type": "Division" }, { "code": "GM-N", - "name": "North Bank", + "name": "North Bank Division", "type": "Division" }, { "code": "GM-U", - "name": "Upper River", + "name": "Upper River Division", "type": "Division" }, { "code": "GM-W", - "name": "Western", + "name": "West Coast Division", "type": "Division" }, { "code": "GN-B", - "name": "Boké", + "name": "Boké Region", "type": "Administrative region" }, { @@ -8607,7 +8607,7 @@ }, { "code": "GN-D", - "name": "Kindia", + "name": "Kindia Region", "type": "Administrative region" }, { @@ -8632,7 +8632,7 @@ }, { "code": "GN-F", - "name": "Faranah", + "name": "Faranah Region", "type": "Administrative region" }, { @@ -8657,12 +8657,12 @@ }, { "code": "GN-GU", - "name": "Guékédou", + "name": "Guéckédou", "type": "Prefecture" }, { "code": "GN-K", - "name": "Kankan", + "name": "Kankan Region", "type": "Administrative region" }, { @@ -8702,7 +8702,7 @@ }, { "code": "GN-L", - "name": "Labé", + "name": "Labé Region", "type": "Administrative region" }, { @@ -8722,7 +8722,7 @@ }, { "code": "GN-M", - "name": "Mamou", + "name": "Mamou Region", "type": "Administrative region" }, { @@ -8747,7 +8747,7 @@ }, { "code": "GN-N", - "name": "Nzérékoré", + "name": "Nzérékoré Region", "type": "Administrative region" }, { @@ -8782,27 +8782,27 @@ }, { "code": "GQ-AN", - "name": "Annobon", + "name": "Annobón", "type": "Province" }, { "code": "GQ-BN", - "name": "Bioko Nord", + "name": "Bioko Norte", "type": "Province" }, { "code": "GQ-BS", - "name": "Bioko Sud", + "name": "Bioko Sur", "type": "Province" }, { "code": "GQ-C", - "name": "Région Continentale", + "name": "Río Muni", "type": "Region" }, { "code": "GQ-CS", - "name": "Centro Sud", + "name": "Centro Sur", "type": "Province" }, { @@ -8812,7 +8812,7 @@ }, { "code": "GQ-I", - "name": "Région Insulaire", + "name": "Insular", "type": "Region" }, { @@ -8822,7 +8822,7 @@ }, { "code": "GQ-LI", - "name": "Littoral", + "name": "Litoral", "type": "Province" }, { @@ -8832,72 +8832,72 @@ }, { "code": "GR-69", - "name": "Ágion Óros", + "name": "Mount Athos", "type": "Self-governed part" }, { "code": "GR-A", - "name": "Anatolikí Makedonía kai Thráki", + "name": "East Macedonia and Thrace", "type": "Administrative region" }, { "code": "GR-B", - "name": "Kentrikí Makedonía", + "name": "Central Macedonia", "type": "Administrative region" }, { "code": "GR-C", - "name": "Dytikí Makedonía", + "name": "West Macedonia", "type": "Administrative region" }, { "code": "GR-D", - "name": "Ípeiros", + "name": "Epirus", "type": "Administrative region" }, { "code": "GR-E", - "name": "Thessalía", + "name": "Thessaly", "type": "Administrative region" }, { "code": "GR-F", - "name": "Ionía Nísia", + "name": "Ionian Islands", "type": "Administrative region" }, { "code": "GR-G", - "name": "Dytikí Elláda", + "name": "West Greece", "type": "Administrative region" }, { "code": "GR-H", - "name": "Stereá Elláda", + "name": "Central Greece", "type": "Administrative region" }, { "code": "GR-I", - "name": "Attikí", + "name": "Attica", "type": "Administrative region" }, { "code": "GR-J", - "name": "Pelopónnisos", + "name": "Peloponnese", "type": "Administrative region" }, { "code": "GR-K", - "name": "Vóreio Aigaío", + "name": "North Aegean", "type": "Administrative region" }, { "code": "GR-L", - "name": "Nótio Aigaío", + "name": "South Aegean", "type": "Administrative region" }, { "code": "GR-M", - "name": "Kríti", + "name": "Crete", "type": "Administrative region" }, { @@ -9017,7 +9017,7 @@ }, { "code": "GW-BL", - "name": "Bolama / Bijagós", + "name": "Bolama", "type": "Region" }, { @@ -9167,7 +9167,7 @@ }, { "code": "HN-IB", - "name": "Islas de la Bahía", + "name": "Bay Islands", "type": "Department" }, { @@ -9212,107 +9212,107 @@ }, { "code": "HR-01", - "name": "Zagrebačka županija", + "name": "Zagreb County", "type": "County" }, { "code": "HR-02", - "name": "Krapinsko-zagorska županija", + "name": "Krapina-Zagorje", "type": "County" }, { "code": "HR-03", - "name": "Sisačko-moslavačka županija", + "name": "Sisak-Moslavina", "type": "County" }, { "code": "HR-04", - "name": "Karlovačka županija", + "name": "Karlovac", "type": "County" }, { "code": "HR-05", - "name": "Varaždinska županija", + "name": "Varaždin", "type": "County" }, { "code": "HR-06", - "name": "Koprivničko-križevačka županija", + "name": "Koprivnica-Križevci", "type": "County" }, { "code": "HR-07", - "name": "Bjelovarsko-bilogorska županija", + "name": "Bjelovar-Bilogora", "type": "County" }, { "code": "HR-08", - "name": "Primorsko-goranska županija", + "name": "Primorje-Gorski Kotar", "type": "County" }, { "code": "HR-09", - "name": "Ličko-senjska županija", + "name": "Lika-Senj", "type": "County" }, { "code": "HR-10", - "name": "Virovitičko-podravska županija", + "name": "Virovitica-Podravina", "type": "County" }, { "code": "HR-11", - "name": "Požeško-slavonska županija", + "name": "Požega-Slavonia", "type": "County" }, { "code": "HR-12", - "name": "Brodsko-posavska županija", + "name": "Brod-Posavina", "type": "County" }, { "code": "HR-13", - "name": "Zadarska županija", + "name": "Zadar", "type": "County" }, { "code": "HR-14", - "name": "Osječko-baranjska županija", + "name": "Osijek-Baranja", "type": "County" }, { "code": "HR-15", - "name": "Šibensko-kninska županija", + "name": "Šibenik-Knin", "type": "County" }, { "code": "HR-16", - "name": "Vukovarsko-srijemska županija", + "name": "Vukovar-Syrmia", "type": "County" }, { "code": "HR-17", - "name": "Splitsko-dalmatinska županija", + "name": "Split-Dalmatia", "type": "County" }, { "code": "HR-18", - "name": "Istarska županija", + "name": "Istria", "type": "County" }, { "code": "HR-19", - "name": "Dubrovačko-neretvanska županija", + "name": "Dubrovnik-Neretva", "type": "County" }, { "code": "HR-20", - "name": "Međimurska županija", + "name": "Međimurje", "type": "County" }, { "code": "HR-21", - "name": "Grad Zagreb", + "name": "Zagreb", "type": "City" }, { @@ -9327,7 +9327,7 @@ }, { "code": "HT-GA", - "name": "Grande’Anse", + "name": "Grand’Anse", "type": "Department" }, { @@ -9397,7 +9397,7 @@ }, { "code": "HU-CS", - "name": "Csongrád-Csanád", + "name": "Csongrád", "type": "County" }, { @@ -9562,7 +9562,7 @@ }, { "code": "HU-VE", - "name": "Veszprém", + "name": "Veszprém County", "type": "County" }, { @@ -9592,7 +9592,7 @@ }, { "code": "ID-BB", - "name": "Kepulauan Bangka Belitung", + "name": "Bangka–Belitung Islands", "type": "Province" }, { @@ -9617,27 +9617,27 @@ }, { "code": "ID-JB", - "name": "Jawa Barat", + "name": "West Java", "type": "Province" }, { "code": "ID-JI", - "name": "Jawa Timur", + "name": "East Java", "type": "Province" }, { "code": "ID-JK", - "name": "Jakarta Raya", + "name": "Jakarta", "type": "Capital district" }, { "code": "ID-JT", - "name": "Jawa Tengah", + "name": "Central Java", "type": "Province" }, { "code": "ID-JW", - "name": "Jawa", + "name": "Java", "type": "Geographical unit" }, { @@ -9647,32 +9647,32 @@ }, { "code": "ID-KB", - "name": "Kalimantan Barat", + "name": "West Kalimantan", "type": "Province" }, { "code": "ID-KI", - "name": "Kalimantan Timur", + "name": "East Kalimantan", "type": "Province" }, { "code": "ID-KR", - "name": "Kepulauan Riau", + "name": "Riau Islands", "type": "Province" }, { "code": "ID-KS", - "name": "Kalimantan Selatan", + "name": "South Kalimantan", "type": "Province" }, { "code": "ID-KT", - "name": "Kalimantan Tengah", + "name": "Central Kalimantan", "type": "Province" }, { "code": "ID-KU", - "name": "Kalimantan Utara", + "name": "North Kalimantan", "type": "Province" }, { @@ -9687,27 +9687,27 @@ }, { "code": "ID-ML", - "name": "Maluku", + "name": "Maluku Islands", "type": "Geographical unit" }, { "code": "ID-MU", - "name": "Maluku Utara", + "name": "North Maluku", "type": "Province" }, { "code": "ID-NB", - "name": "Nusa Tenggara Barat", + "name": "West Nusa Tenggara", "type": "Province" }, { "code": "ID-NT", - "name": "Nusa Tenggara Timur", + "name": "East Nusa Tenggara", "type": "Province" }, { "code": "ID-NU", - "name": "Nusa Tenggara", + "name": "Lesser Sunda Islands", "type": "Geographical unit" }, { @@ -9717,7 +9717,7 @@ }, { "code": "ID-PB", - "name": "Papua Barat", + "name": "West Papua", "type": "Province" }, { @@ -9732,7 +9732,7 @@ }, { "code": "ID-PP", - "name": "Papua", + "name": "Papua Islands", "type": "Geographical unit" }, { @@ -9752,17 +9752,17 @@ }, { "code": "ID-SA", - "name": "Sulawesi Utara", + "name": "North Sulawesi", "type": "Province" }, { "code": "ID-SB", - "name": "Sumatera Barat", + "name": "West Sumatra", "type": "Province" }, { "code": "ID-SG", - "name": "Sulawesi Tenggara", + "name": "Southeast Sulawesi", "type": "Province" }, { @@ -9772,32 +9772,32 @@ }, { "code": "ID-SM", - "name": "Sumatera", + "name": "Sumatra", "type": "Geographical unit" }, { "code": "ID-SN", - "name": "Sulawesi Selatan", + "name": "South Sulawesi", "type": "Province" }, { "code": "ID-SR", - "name": "Sulawesi Barat", + "name": "West Sulawesi", "type": "Province" }, { "code": "ID-SS", - "name": "Sumatera Selatan", + "name": "South Sumatra", "type": "Province" }, { "code": "ID-ST", - "name": "Sulawesi Tengah", + "name": "Central Sulawesi", "type": "Province" }, { "code": "ID-SU", - "name": "Sumatera Utara", + "name": "North Sumatra", "type": "Province" }, { @@ -9807,7 +9807,7 @@ }, { "code": "IE-C", - "name": "Connaught", + "name": "Connacht", "type": "Province" }, { @@ -9957,32 +9957,32 @@ }, { "code": "IL-D", - "name": "Al Janūbī", + "name": "Southern District", "type": "District" }, { "code": "IL-HA", - "name": "H̱efa", + "name": "Haifa District", "type": "District" }, { "code": "IL-JM", - "name": "Al Quds", + "name": "Jerusalem", "type": "District" }, { "code": "IL-M", - "name": "Al Awsaţ", + "name": "Central District", "type": "District" }, { "code": "IL-TA", - "name": "Tall Abīb", + "name": "Tel Aviv District", "type": "District" }, { "code": "IL-Z", - "name": "Ash Shamālī", + "name": "Northern District", "type": "District" }, { @@ -9997,7 +9997,7 @@ }, { "code": "IN-AR", - "name": "Arunāchal Pradesh", + "name": "Arunachal Pradesh", "type": "State" }, { @@ -10007,7 +10007,7 @@ }, { "code": "IN-BR", - "name": "Bihār", + "name": "Bihar", "type": "State" }, { @@ -10017,7 +10017,7 @@ }, { "code": "IN-CH", - "name": "Chandīgarh", + "name": "Chandigarh", "type": "Union territory" }, { @@ -10037,32 +10037,32 @@ }, { "code": "IN-GJ", - "name": "Gujarāt", + "name": "Gujarat", "type": "State" }, { "code": "IN-HP", - "name": "Himāchal Pradesh", + "name": "Himachal Pradesh", "type": "State" }, { "code": "IN-HR", - "name": "Haryāna", + "name": "Haryana", "type": "State" }, { "code": "IN-JH", - "name": "Jhārkhand", + "name": "Jharkhand", "type": "State" }, { "code": "IN-JK", - "name": "Jammu and Kashmīr", + "name": "Jammu and Kashmir", "type": "Union territory" }, { "code": "IN-KA", - "name": "Karnātaka", + "name": "Karnataka", "type": "State" }, { @@ -10072,7 +10072,7 @@ }, { "code": "IN-LA", - "name": "Ladākh", + "name": "Ladakh", "type": "Union territory" }, { @@ -10082,12 +10082,12 @@ }, { "code": "IN-MH", - "name": "Mahārāshtra", + "name": "Maharashtra", "type": "State" }, { "code": "IN-ML", - "name": "Meghālaya", + "name": "Meghalaya", "type": "State" }, { @@ -10107,7 +10107,7 @@ }, { "code": "IN-NL", - "name": "Nāgāland", + "name": "Nagaland", "type": "State" }, { @@ -10127,7 +10127,7 @@ }, { "code": "IN-RJ", - "name": "Rājasthān", + "name": "Rajasthan", "type": "State" }, { @@ -10137,7 +10137,7 @@ }, { "code": "IN-TN", - "name": "Tamil Nādu", + "name": "Tamil Nadu", "type": "State" }, { @@ -10167,97 +10167,97 @@ }, { "code": "IQ-AN", - "name": "Al Anbār", + "name": "Al Anbar", "type": "Governorate" }, { "code": "IQ-AR", - "name": "Arbīl", + "name": "Erbil", "type": "Governorate" }, { "code": "IQ-BA", - "name": "Al Başrah", + "name": "Basra", "type": "Governorate" }, { "code": "IQ-BB", - "name": "Bābil", + "name": "Babylon", "type": "Governorate" }, { "code": "IQ-BG", - "name": "Baghdād", + "name": "Baghdad", "type": "Governorate" }, { "code": "IQ-DA", - "name": "Dahūk", + "name": "Dohuk", "type": "Governorate" }, { "code": "IQ-DI", - "name": "Diyālá", + "name": "Diyala", "type": "Governorate" }, { "code": "IQ-DQ", - "name": "Dhī Qār", + "name": "Dhi Qar", "type": "Governorate" }, { "code": "IQ-KA", - "name": "Karbalā’", + "name": "Karbala", "type": "Governorate" }, { "code": "IQ-KI", - "name": "Kirkūk", + "name": "Kirkuk", "type": "Governorate" }, { "code": "IQ-KR", - "name": "Herêm-î Kurdistan", + "name": "Kurdistan", "type": "Region" }, { "code": "IQ-MA", - "name": "Maysān", + "name": "Maysan", "type": "Governorate" }, { "code": "IQ-MU", - "name": "Al Muthanná", + "name": "Al Muthanna", "type": "Governorate" }, { "code": "IQ-NA", - "name": "An Najaf", + "name": "Najaf", "type": "Governorate" }, { "code": "IQ-NI", - "name": "Nīnawá", + "name": "Nineveh", "type": "Governorate" }, { "code": "IQ-QA", - "name": "Al Qādisīyah", + "name": "Al-Qādisiyyah", "type": "Governorate" }, { "code": "IQ-SD", - "name": "Şalāḩ ad Dīn", + "name": "Saladin", "type": "Governorate" }, { "code": "IQ-SU", - "name": "As Sulaymānīyah", + "name": "Sulaymaniyah", "type": "Governorate" }, { "code": "IQ-WA", - "name": "Wāsiţ", + "name": "Wasit", "type": "Governorate" }, { @@ -10267,42 +10267,42 @@ }, { "code": "IR-01", - "name": "Gīlān", + "name": "East Azerbaijan", "type": "Province" }, { "code": "IR-02", - "name": "Māzandarān", + "name": "West Azarbaijan", "type": "Province" }, { "code": "IR-03", - "name": "Āz̄ārbāyjān-e Shārqī", + "name": "Ardabil", "type": "Province" }, { "code": "IR-04", - "name": "Āz̄ārbāyjān-e Ghārbī", + "name": "Isfahan", "type": "Province" }, { "code": "IR-05", - "name": "Kermānshāh", + "name": "Ilam", "type": "Province" }, { "code": "IR-06", - "name": "Khūzestān", + "name": "Bushehr", "type": "Province" }, { "code": "IR-07", - "name": "Fārs", + "name": "Tehran", "type": "Province" }, { "code": "IR-08", - "name": "Kermān", + "name": "Chaharmahal and Bakhtiari", "type": "Province" }, { @@ -10312,147 +10312,147 @@ }, { "code": "IR-10", - "name": "Eşfahān", + "name": "Khuzestan", "type": "Province" }, { "code": "IR-11", - "name": "Sīstān va Balūchestān", + "name": "Zanjan", "type": "Province" }, { "code": "IR-12", - "name": "Kordestān", + "name": "Semnan", "type": "Province" }, { "code": "IR-13", - "name": "Hamadān", + "name": "Sistan and Baluchestan", "type": "Province" }, { "code": "IR-14", - "name": "Chahār Maḩāl va Bakhtīārī", + "name": "Fars", "type": "Province" }, { "code": "IR-15", - "name": "Lorestān", + "name": "Kerman", "type": "Province" }, { "code": "IR-16", - "name": "Īlām", + "name": "Kurdistan", "type": "Province" }, { "code": "IR-17", - "name": "Kohgīlūyeh va Bowyer Aḩmad", + "name": "Kermanshah", "type": "Province" }, { "code": "IR-18", - "name": "Būshehr", + "name": "Kohgiluyeh and Boyer-Ahmad", "type": "Province" }, { "code": "IR-19", - "name": "Zanjān", + "name": "Gilan", "type": "Province" }, { "code": "IR-20", - "name": "Semnān", + "name": "Lorestan", "type": "Province" }, { "code": "IR-21", - "name": "Yazd", + "name": "Mazandaran", "type": "Province" }, { "code": "IR-22", - "name": "Hormozgān", + "name": "Markazi", "type": "Province" }, { "code": "IR-23", - "name": "Tehrān", + "name": "Hormozgan", "type": "Province" }, { "code": "IR-24", - "name": "Ardabīl", + "name": "Hamadan", "type": "Province" }, { "code": "IR-25", - "name": "Qom", + "name": "Yazd", "type": "Province" }, { "code": "IR-26", - "name": "Qazvīn", + "name": "Qom", "type": "Province" }, { "code": "IR-27", - "name": "Golestān", + "name": "Golestan", "type": "Province" }, { "code": "IR-28", - "name": "Khorāsān-e Shomālī", + "name": "Qazvin", "type": "Province" }, { "code": "IR-29", - "name": "Khorāsān-e Jonūbī", + "name": "South Khorasan", "type": "Province" }, { "code": "IR-30", - "name": "Alborz", + "name": "Razavi Khorasan", "type": "Province" }, { "code": "IS-1", - "name": "Höfuðborgarsvæði", + "name": "Capital", "type": "Region" }, { "code": "IS-2", - "name": "Suðurnes", + "name": "Southern Peninsula", "type": "Region" }, { "code": "IS-3", - "name": "Vesturland", + "name": "Western", "type": "Region" }, { "code": "IS-4", - "name": "Vestfirðir", + "name": "Westfjords", "type": "Region" }, { "code": "IS-5", - "name": "Norðurland vestra", + "name": "Northwestern", "type": "Region" }, { "code": "IS-6", - "name": "Norðurland eystra", + "name": "Northeastern", "type": "Region" }, { "code": "IS-7", - "name": "Austurland", + "name": "Eastern", "type": "Region" }, { "code": "IS-8", - "name": "Suðurland", + "name": "Southern", "type": "Region" }, { @@ -10777,22 +10777,22 @@ }, { "code": "IT-21", - "name": "Piemonte", + "name": "Piedmont", "type": "Region" }, { "code": "IT-23", - "name": "Val d'Aoste", + "name": "Aosta Valley", "type": "Autonomous region" }, { "code": "IT-25", - "name": "Lombardia", + "name": "Lombardy", "type": "Region" }, { "code": "IT-32", - "name": "Trentino-Alto Adige", + "name": "Trentino-South Tyrol", "type": "Autonomous region" }, { @@ -10802,7 +10802,7 @@ }, { "code": "IT-36", - "name": "Friuli Venezia Giulia", + "name": "Friuli–Venezia Giulia", "type": "Autonomous region" }, { @@ -10817,7 +10817,7 @@ }, { "code": "IT-52", - "name": "Toscana", + "name": "Tuscany", "type": "Region" }, { @@ -10852,7 +10852,7 @@ }, { "code": "IT-75", - "name": "Puglia", + "name": "Apulia", "type": "Region" }, { @@ -10867,12 +10867,12 @@ }, { "code": "IT-82", - "name": "Sicilia", + "name": "Sicily", "type": "Autonomous region" }, { "code": "IT-88", - "name": "Sardegna", + "name": "Sardinia", "type": "Autonomous region" }, { @@ -10897,7 +10897,7 @@ }, { "code": "IT-AQ", - "name": "L'Aquila", + "name": "L’Aquila", "type": "Province" }, { @@ -10962,7 +10962,7 @@ }, { "code": "IT-BZ", - "name": "Bolzano", + "name": "South Tyrol", "type": "Autonomous province" }, { @@ -11042,7 +11042,7 @@ }, { "code": "IT-FI", - "name": "Firenze", + "name": "Florence", "type": "Metropolitan city" }, { @@ -11057,7 +11057,7 @@ }, { "code": "IT-GE", - "name": "Genova", + "name": "Genoa", "type": "Metropolitan city" }, { @@ -11117,7 +11117,7 @@ }, { "code": "IT-MB", - "name": "Monza e Brianza", + "name": "Monza and Brianza", "type": "Province" }, { @@ -11132,12 +11132,12 @@ }, { "code": "IT-MI", - "name": "Milano", + "name": "Milan", "type": "Metropolitan city" }, { "code": "IT-MN", - "name": "Mantova", + "name": "Mantua", "type": "Province" }, { @@ -11147,7 +11147,7 @@ }, { "code": "IT-MS", - "name": "Massa-Carrara", + "name": "Massa and Carrara", "type": "Province" }, { @@ -11157,7 +11157,7 @@ }, { "code": "IT-NA", - "name": "Napoli", + "name": "Naples", "type": "Metropolitan city" }, { @@ -11187,7 +11187,7 @@ }, { "code": "IT-PD", - "name": "Padova", + "name": "Padua", "type": "Province" }, { @@ -11227,7 +11227,7 @@ }, { "code": "IT-PU", - "name": "Pesaro e Urbino", + "name": "Pesaro and Urbino", "type": "Province" }, { @@ -11267,7 +11267,7 @@ }, { "code": "IT-RM", - "name": "Roma", + "name": "Rome", "type": "Metropolitan city" }, { @@ -11302,7 +11302,7 @@ }, { "code": "IT-SR", - "name": "Siracusa", + "name": "Syracuse", "type": "Free municipal consortium" }, { @@ -11332,12 +11332,12 @@ }, { "code": "IT-TN", - "name": "Trento", + "name": "Trentino", "type": "Autonomous province" }, { "code": "IT-TO", - "name": "Torino", + "name": "Turin", "type": "Metropolitan city" }, { @@ -11382,7 +11382,7 @@ }, { "code": "IT-VE", - "name": "Venezia", + "name": "Venice", "type": "Metropolitan city" }, { @@ -11477,32 +11477,32 @@ }, { "code": "JO-AJ", - "name": "‘Ajlūn", + "name": "Ajloun", "type": "Governorate" }, { "code": "JO-AM", - "name": "Al ‘A̅şimah", + "name": "Amman", "type": "Governorate" }, { "code": "JO-AQ", - "name": "Al ‘Aqabah", + "name": "Aqaba", "type": "Governorate" }, { "code": "JO-AT", - "name": "Aţ Ţafīlah", + "name": "Tafilah", "type": "Governorate" }, { "code": "JO-AZ", - "name": "Az Zarqā’", + "name": "Zarqa", "type": "Governorate" }, { "code": "JO-BA", - "name": "Al Balqā’", + "name": "Balqa", "type": "Governorate" }, { @@ -11512,32 +11512,32 @@ }, { "code": "JO-JA", - "name": "Jarash", + "name": "Jerash", "type": "Governorate" }, { "code": "JO-KA", - "name": "Al Karak", + "name": "Karak", "type": "Governorate" }, { "code": "JO-MA", - "name": "Al Mafraq", + "name": "Mafraq", "type": "Governorate" }, { "code": "JO-MD", - "name": "Mādabā", + "name": "Madaba", "type": "Governorate" }, { "code": "JO-MN", - "name": "Ma‘ān", + "name": "Ma’an", "type": "Governorate" }, { "code": "JP-01", - "name": "Hokkaido", + "name": "Hokkaidō", "type": "Prefecture" }, { @@ -11662,17 +11662,17 @@ }, { "code": "JP-26", - "name": "Kyoto", + "name": "Kyōto", "type": "Prefecture" }, { "code": "JP-27", - "name": "Osaka", + "name": "Ōsaka", "type": "Prefecture" }, { "code": "JP-28", - "name": "Hyogo", + "name": "Hyōgo", "type": "Prefecture" }, { @@ -11727,7 +11727,7 @@ }, { "code": "JP-39", - "name": "Kochi", + "name": "Kōchi", "type": "Prefecture" }, { @@ -11752,7 +11752,7 @@ }, { "code": "JP-44", - "name": "Oita", + "name": "Ōita", "type": "Prefecture" }, { @@ -11792,7 +11792,7 @@ }, { "code": "KE-05", - "name": "Elgeyo/Marakwet", + "name": "Elgeyo-Marakwet", "type": "County" }, { @@ -11912,12 +11912,12 @@ }, { "code": "KE-29", - "name": "Murang'a", + "name": "Murang’a", "type": "County" }, { "code": "KE-30", - "name": "Nairobi City", + "name": "Nairobi County", "type": "County" }, { @@ -11962,7 +11962,7 @@ }, { "code": "KE-39", - "name": "Taita/Taveta", + "name": "Taita-Taveta", "type": "County" }, { @@ -12012,22 +12012,22 @@ }, { "code": "KG-C", - "name": "Chuyskaya oblast'", + "name": "Chuy", "type": "Region" }, { "code": "KG-GB", - "name": "Bishkek Shaary", + "name": "Bishkek", "type": "City" }, { "code": "KG-GO", - "name": "Gorod Osh", + "name": "Osh", "type": "City" }, { "code": "KG-J", - "name": "Dzhalal-Abadskaya oblast'", + "name": "Jalal-Abad", "type": "Region" }, { @@ -12037,7 +12037,7 @@ }, { "code": "KG-O", - "name": "Osh", + "name": "Osh Region", "type": "Region" }, { @@ -12047,22 +12047,22 @@ }, { "code": "KG-Y", - "name": "Issyk-Kul'skaja oblast'", + "name": "Issyk-Kul", "type": "Region" }, { "code": "KH-1", - "name": "Banteay Mean Choăy", + "name": "Banteay Meanchey", "type": "Province" }, { "code": "KH-10", - "name": "Kracheh", + "name": "Kratié", "type": "Province" }, { "code": "KH-11", - "name": "Mondol Kiri", + "name": "Mondulkiri", "type": "Province" }, { @@ -12077,57 +12077,57 @@ }, { "code": "KH-14", - "name": "Prey Veaeng", + "name": "Prey Veng", "type": "Province" }, { "code": "KH-15", - "name": "Pousaat", + "name": "Pursat", "type": "Province" }, { "code": "KH-16", - "name": "Rotanak Kiri", + "name": "Ratanakiri", "type": "Province" }, { "code": "KH-17", - "name": "Siem Reab", + "name": "Siem Reap", "type": "Province" }, { "code": "KH-18", - "name": "Preah Sihanouk", + "name": "Sihanoukville", "type": "Province" }, { "code": "KH-19", - "name": "Stoĕng Trêng", + "name": "Stung Treng", "type": "Province" }, { "code": "KH-2", - "name": "Baat Dambang", + "name": "Battambang", "type": "Province" }, { "code": "KH-20", - "name": "Svaay Rieng", + "name": "Svay Rieng", "type": "Province" }, { "code": "KH-21", - "name": "Taakaev", + "name": "Takéo", "type": "Province" }, { "code": "KH-22", - "name": "Otdar Mean Chey", + "name": "Oddar Meanchey", "type": "Province" }, { "code": "KH-23", - "name": "Kaeb", + "name": "Kep", "type": "Province" }, { @@ -12142,7 +12142,7 @@ }, { "code": "KH-3", - "name": "Kampong Chaam", + "name": "Kampong Cham", "type": "Province" }, { @@ -12152,12 +12152,12 @@ }, { "code": "KH-5", - "name": "Kampong Spueu", + "name": "Kampong Speu", "type": "Province" }, { "code": "KH-6", - "name": "Kampong Thum", + "name": "Kampong Thom", "type": "Province" }, { @@ -12167,12 +12167,12 @@ }, { "code": "KH-8", - "name": "Kandaal", + "name": "Kandal", "type": "Province" }, { "code": "KH-9", - "name": "Kaoh Kong", + "name": "Koh Kong", "type": "Province" }, { @@ -12287,57 +12287,57 @@ }, { "code": "KP-01", - "name": "P'yǒngyang", + "name": "Pyongyang", "type": "Capital city" }, { "code": "KP-02", - "name": "P'yǒngan-namdo", + "name": "South Pyongan", "type": "Province" }, { "code": "KP-03", - "name": "P'yǒngan-bukto", + "name": "North Pyongan", "type": "Province" }, { "code": "KP-04", - "name": "Chagang-do", + "name": "Chagang", "type": "Province" }, { "code": "KP-05", - "name": "Hwanghae-namdo", + "name": "South Hwanghae", "type": "Province" }, { "code": "KP-06", - "name": "Hwanghae-bukto", + "name": "North Hwanghae", "type": "Province" }, { "code": "KP-07", - "name": "Kangweonto", + "name": "Kangwon", "type": "Province" }, { "code": "KP-08", - "name": "Hamgyǒng-namdo", + "name": "South Hamgyong", "type": "Province" }, { "code": "KP-09", - "name": "Hamgyǒng-bukto", + "name": "North Hamgyong", "type": "Province" }, { "code": "KP-10", - "name": "Ryanggang-do", + "name": "Ryanggang", "type": "Province" }, { "code": "KP-13", - "name": "Raseon", + "name": "Rason", "type": "Special city" }, { @@ -12352,82 +12352,82 @@ }, { "code": "KR-11", - "name": "Seoul-teukbyeolsi", + "name": "Seoul", "type": "Special city" }, { "code": "KR-26", - "name": "Busan-gwangyeoksi", + "name": "Busan", "type": "Metropolitan city" }, { "code": "KR-27", - "name": "Daegu-gwangyeoksi", + "name": "Daegu", "type": "Metropolitan city" }, { "code": "KR-28", - "name": "Incheon-gwangyeoksi", + "name": "Incheon", "type": "Metropolitan city" }, { "code": "KR-29", - "name": "Gwangju-gwangyeoksi", + "name": "Gwangju City", "type": "Metropolitan city" }, { "code": "KR-30", - "name": "Daejeon-gwangyeoksi", + "name": "Daejeon", "type": "Metropolitan city" }, { "code": "KR-31", - "name": "Ulsan-gwangyeoksi", + "name": "Ulsan", "type": "Metropolitan city" }, { "code": "KR-41", - "name": "Gyeonggi-do", + "name": "Gyeonggi", "type": "Province" }, { "code": "KR-42", - "name": "Gangwon-teukbyeoljachido", + "name": "Gangwon", "type": "Special self-governing province" }, { "code": "KR-43", - "name": "Chungcheongbuk-do", + "name": "North Chungcheong", "type": "Province" }, { "code": "KR-44", - "name": "Chungcheongnam-do", + "name": "South Chungcheong", "type": "Province" }, { "code": "KR-45", - "name": "Jeollabuk-do", + "name": "North Jeolla", "type": "Province" }, { "code": "KR-46", - "name": "Jeollanam-do", + "name": "South Jeolla", "type": "Province" }, { "code": "KR-47", - "name": "Gyeongsangbuk-do", + "name": "North Gyeongsang", "type": "Province" }, { "code": "KR-48", - "name": "Gyeongsangnam-do", + "name": "South Gyeongsang", "type": "Province" }, { "code": "KR-49", - "name": "Jeju-teukbyeoljachido", + "name": "Jeju", "type": "Special self-governing province" }, { @@ -12437,32 +12437,32 @@ }, { "code": "KW-AH", - "name": "Al Aḩmadī", + "name": "Al Ahmadi", "type": "Governorate" }, { "code": "KW-FA", - "name": "Al Farwānīyah", + "name": "Al Farwaniyah", "type": "Governorate" }, { "code": "KW-HA", - "name": "Ḩawallī", + "name": "Hawalli", "type": "Governorate" }, { "code": "KW-JA", - "name": "Al Jahrā’", + "name": "Al Jahra", "type": "Governorate" }, { "code": "KW-KU", - "name": "Al ‘Āşimah", + "name": "Al Asimah", "type": "Governorate" }, { "code": "KW-MU", - "name": "Mubārak al Kabīr", + "name": "Mubarak Al-Kabeer", "type": "Governorate" }, { @@ -12567,17 +12567,17 @@ }, { "code": "LA-AT", - "name": "Attapu", + "name": "Attapeu", "type": "Province" }, { "code": "LA-BK", - "name": "Bokèo", + "name": "Bokeo", "type": "Province" }, { "code": "LA-BL", - "name": "Bolikhamxai", + "name": "Bolikhamsai", "type": "Province" }, { @@ -12587,32 +12587,32 @@ }, { "code": "LA-HO", - "name": "Houaphan", + "name": "Houaphanh", "type": "Province" }, { "code": "LA-KH", - "name": "Khammouan", + "name": "Khammouane", "type": "Province" }, { "code": "LA-LM", - "name": "Louang Namtha", + "name": "Luang Namtha", "type": "Province" }, { "code": "LA-LP", - "name": "Louangphabang", + "name": "Luang Prabang", "type": "Province" }, { "code": "LA-OU", - "name": "Oudômxai", + "name": "Oudomxay", "type": "Province" }, { "code": "LA-PH", - "name": "Phôngsali", + "name": "Phongsaly", "type": "Province" }, { @@ -12622,27 +12622,27 @@ }, { "code": "LA-SV", - "name": "Savannakhét", + "name": "Savannakhet", "type": "Province" }, { "code": "LA-VI", - "name": "Viangchan", + "name": "Vientiane Province", "type": "Province" }, { "code": "LA-VT", - "name": "Viangchan", + "name": "Vientiane", "type": "Prefecture" }, { "code": "LA-XA", - "name": "Xaignabouli", + "name": "Sainyabuli", "type": "Province" }, { "code": "LA-XE", - "name": "Xékong", + "name": "Sekong", "type": "Province" }, { @@ -12652,22 +12652,22 @@ }, { "code": "LA-XS", - "name": "Xaisômboun", + "name": "Xaisomboun", "type": "Province" }, { "code": "LB-AK", - "name": "Aakkâr", + "name": "Akkar", "type": "Governorate" }, { "code": "LB-AS", - "name": "Ash Shimāl", + "name": "North", "type": "Governorate" }, { "code": "LB-BA", - "name": "Bayrūt", + "name": "Beirut", "type": "Governorate" }, { @@ -12677,22 +12677,22 @@ }, { "code": "LB-BI", - "name": "Al Biqā‘", + "name": "Beqaa", "type": "Governorate" }, { "code": "LB-JA", - "name": "Al Janūb", + "name": "South", "type": "Governorate" }, { "code": "LB-JL", - "name": "Jabal Lubnān", + "name": "Mount Lebanon", "type": "Governorate" }, { "code": "LB-NA", - "name": "An Nabaţīyah", + "name": "Nabatieh", "type": "Governorate" }, { @@ -12802,7 +12802,7 @@ }, { "code": "LK-1", - "name": "Western Province", + "name": "Western", "type": "Province" }, { @@ -12822,7 +12822,7 @@ }, { "code": "LK-2", - "name": "Central Province", + "name": "Central", "type": "Province" }, { @@ -12842,7 +12842,7 @@ }, { "code": "LK-3", - "name": "Southern Province", + "name": "Southern", "type": "Province" }, { @@ -12862,7 +12862,7 @@ }, { "code": "LK-4", - "name": "Northern Province", + "name": "Northern", "type": "Province" }, { @@ -12887,12 +12887,12 @@ }, { "code": "LK-45", - "name": "Mullaittivu", + "name": "Mullaitivu", "type": "District" }, { "code": "LK-5", - "name": "Eastern Province", + "name": "Eastern", "type": "Province" }, { @@ -12912,7 +12912,7 @@ }, { "code": "LK-6", - "name": "North Western Province", + "name": "North Western", "type": "Province" }, { @@ -12927,7 +12927,7 @@ }, { "code": "LK-7", - "name": "North Central Province", + "name": "North Central", "type": "Province" }, { @@ -12942,7 +12942,7 @@ }, { "code": "LK-8", - "name": "Uva Province", + "name": "Uva", "type": "Province" }, { @@ -12952,12 +12952,12 @@ }, { "code": "LK-82", - "name": "Monaragala", + "name": "Moneragala", "type": "District" }, { "code": "LK-9", - "name": "Sabaragamuwa Province", + "name": "Sabaragamuwa", "type": "Province" }, { @@ -12967,7 +12967,7 @@ }, { "code": "LK-92", - "name": "Kegalla", + "name": "Kegalle", "type": "District" }, { @@ -13037,7 +13037,7 @@ }, { "code": "LR-RI", - "name": "River Cess", + "name": "Rivercess", "type": "County" }, { @@ -13052,7 +13052,7 @@ }, { "code": "LS-B", - "name": "Botha-Bothe", + "name": "Butha-Buthe", "type": "District" }, { @@ -13072,7 +13072,7 @@ }, { "code": "LS-F", - "name": "Mohale's Hoek", + "name": "Mohale’s Hoek", "type": "District" }, { @@ -13082,7 +13082,7 @@ }, { "code": "LS-H", - "name": "Qacha's Nek", + "name": "Qacha’s Nek", "type": "District" }, { @@ -13102,7 +13102,7 @@ }, { "code": "LT-02", - "name": "Alytaus miestas", + "name": "Alytus Municipality", "type": "City municipality" }, { @@ -13167,7 +13167,7 @@ }, { "code": "LT-15", - "name": "Kauno miestas", + "name": "Kauno Municipality", "type": "City municipality" }, { @@ -13177,7 +13177,7 @@ }, { "code": "LT-17", - "name": "Kazlų Rūdos", + "name": "Kazlų Rūda", "type": "Municipality" }, { @@ -13192,7 +13192,7 @@ }, { "code": "LT-20", - "name": "Klaipėdos miestas", + "name": "Klaipėdos Municipality", "type": "City municipality" }, { @@ -13247,12 +13247,12 @@ }, { "code": "LT-31", - "name": "Palangos miestas", + "name": "Palanga", "type": "City municipality" }, { "code": "LT-32", - "name": "Panevėžio miestas", + "name": "Panevėžio Municipality", "type": "City municipality" }, { @@ -13307,7 +13307,7 @@ }, { "code": "LT-43", - "name": "Šiaulių miestas", + "name": "Šiaulių Municipality", "type": "City municipality" }, { @@ -13377,7 +13377,7 @@ }, { "code": "LT-57", - "name": "Vilniaus miestas", + "name": "Vilniaus Municipality", "type": "City municipality" }, { @@ -13397,52 +13397,52 @@ }, { "code": "LT-AL", - "name": "Alytaus apskritis", + "name": "Alytus County", "type": "County" }, { "code": "LT-KL", - "name": "Klaipėdos apskritis", + "name": "Klaipėda County", "type": "County" }, { "code": "LT-KU", - "name": "Kauno apskritis", + "name": "Kaunas County", "type": "County" }, { "code": "LT-MR", - "name": "Marijampolės apskritis", + "name": "Marijampolė County", "type": "County" }, { "code": "LT-PN", - "name": "Panevėžio apskritis", + "name": "Panevėžys County", "type": "County" }, { "code": "LT-SA", - "name": "Šiaulių apskritis", + "name": "Šiauliai County", "type": "County" }, { "code": "LT-TA", - "name": "Tauragės apskritis", + "name": "Tauragė County", "type": "County" }, { "code": "LT-TE", - "name": "Telšių apskritis", + "name": "Telšiai County", "type": "County" }, { "code": "LT-UT", - "name": "Utenos apskritis", + "name": "Utena County", "type": "County" }, { "code": "LT-VL", - "name": "Vilniaus apskritis", + "name": "Vilnius County", "type": "County" }, { @@ -13507,167 +13507,167 @@ }, { "code": "LV-002", - "name": "Aizkraukles novads", + "name": "Aizkraukle", "type": "Municipality" }, { "code": "LV-007", - "name": "Alūksnes novads", + "name": "Alūksne", "type": "Municipality" }, { "code": "LV-011", - "name": "Ādažu novads", + "name": "Ādaži", "type": "Municipality" }, { "code": "LV-015", - "name": "Balvu novads", + "name": "Balvi", "type": "Municipality" }, { "code": "LV-016", - "name": "Bauskas novads", + "name": "Bauska", "type": "Municipality" }, { "code": "LV-022", - "name": "Cēsu novads", + "name": "Cēsis", "type": "Municipality" }, { "code": "LV-026", - "name": "Dobeles novads", + "name": "Dobele", "type": "Municipality" }, { "code": "LV-033", - "name": "Gulbenes novads", + "name": "Gulbene", "type": "Municipality" }, { "code": "LV-041", - "name": "Jelgavas novads", + "name": "Jelgava Municipality", "type": "Municipality" }, { "code": "LV-042", - "name": "Jēkabpils novads", + "name": "Jēkabpils Municipality", "type": "Municipality" }, { "code": "LV-047", - "name": "Krāslavas novads", + "name": "Krāslava", "type": "Municipality" }, { "code": "LV-050", - "name": "Kuldīgas novads", + "name": "Kuldīga", "type": "Municipality" }, { "code": "LV-052", - "name": "Ķekavas novads", + "name": "Ķekava", "type": "Municipality" }, { "code": "LV-054", - "name": "Limbažu novads", + "name": "Limbaži", "type": "Municipality" }, { "code": "LV-056", - "name": "Līvānu novads", + "name": "Līvāni", "type": "Municipality" }, { "code": "LV-058", - "name": "Ludzas novads", + "name": "Ludza", "type": "Municipality" }, { "code": "LV-059", - "name": "Madonas novads", + "name": "Madona", "type": "Municipality" }, { "code": "LV-062", - "name": "Mārupes novads", + "name": "Mārupe", "type": "Municipality" }, { "code": "LV-067", - "name": "Ogres novads", + "name": "Ogre", "type": "Municipality" }, { "code": "LV-068", - "name": "Olaines novads", + "name": "Olaine", "type": "Municipality" }, { "code": "LV-073", - "name": "Preiļu novads", + "name": "Preiļi", "type": "Municipality" }, { "code": "LV-077", - "name": "Rēzeknes novads", + "name": "Rēzekne Municipality", "type": "Municipality" }, { "code": "LV-080", - "name": "Ropažu novads", + "name": "Ropaži", "type": "Municipality" }, { "code": "LV-087", - "name": "Salaspils novads", + "name": "Salaspils", "type": "Municipality" }, { "code": "LV-088", - "name": "Saldus novads", + "name": "Saldus", "type": "Municipality" }, { "code": "LV-089", - "name": "Saulkrastu novads", + "name": "Saulkrasti", "type": "Municipality" }, { "code": "LV-091", - "name": "Siguldas novads", + "name": "Sigulda", "type": "Municipality" }, { "code": "LV-094", - "name": "Smiltenes novads", + "name": "Smiltene", "type": "Municipality" }, { "code": "LV-097", - "name": "Talsu novads", + "name": "Talsi", "type": "Municipality" }, { "code": "LV-099", - "name": "Tukuma novads", + "name": "Tukums", "type": "Municipality" }, { "code": "LV-101", - "name": "Valkas novads", + "name": "Valka", "type": "Municipality" }, { "code": "LV-102", - "name": "Varakļānu novads", + "name": "Varakļāni", "type": "Municipality" }, { "code": "LV-106", - "name": "Ventspils novads", + "name": "Ventspils Municipality", "type": "Municipality" }, { @@ -13712,7 +13712,7 @@ }, { "code": "LV-RIX", - "name": "Rīga", + "name": "Riga", "type": "State city" }, { @@ -13722,62 +13722,62 @@ }, { "code": "LY-BA", - "name": "Banghāzī", + "name": "Benghazi", "type": "Popularate" }, { "code": "LY-BU", - "name": "Al Buţnān", + "name": "Butnan", "type": "Popularate" }, { "code": "LY-DR", - "name": "Darnah", + "name": "Derna", "type": "Popularate" }, { "code": "LY-GT", - "name": "Ghāt", + "name": "Ghat", "type": "Popularate" }, { "code": "LY-JA", - "name": "Al Jabal al Akhḑar", + "name": "Jabal al Akhdar", "type": "Popularate" }, { "code": "LY-JG", - "name": "Al Jabal al Gharbī", + "name": "Jabal al Gharbi", "type": "Popularate" }, { "code": "LY-JI", - "name": "Al Jafārah", + "name": "Jafara", "type": "Popularate" }, { "code": "LY-JU", - "name": "Al Jufrah", + "name": "Jufra", "type": "Popularate" }, { "code": "LY-KF", - "name": "Al Kufrah", + "name": "Kufra", "type": "Popularate" }, { "code": "LY-MB", - "name": "Al Marqab", + "name": "Murqub", "type": "Popularate" }, { "code": "LY-MI", - "name": "Mişrātah", + "name": "Misrata", "type": "Popularate" }, { "code": "LY-MJ", - "name": "Al Marj", + "name": "Marj", "type": "Popularate" }, { @@ -13787,122 +13787,122 @@ }, { "code": "LY-NL", - "name": "Nālūt", + "name": "Nalut", "type": "Popularate" }, { "code": "LY-NQ", - "name": "An Nuqāţ al Khams", + "name": "Nuqat al Khams", "type": "Popularate" }, { "code": "LY-SB", - "name": "Sabhā", + "name": "Sabha", "type": "Popularate" }, { "code": "LY-SR", - "name": "Surt", + "name": "Sirte", "type": "Popularate" }, { "code": "LY-TB", - "name": "Ţarābulus", + "name": "Tripoli", "type": "Popularate" }, { "code": "LY-WA", - "name": "Al Wāḩāt", + "name": "Al Wahat", "type": "Popularate" }, { "code": "LY-WD", - "name": "Wādī al Ḩayāt", + "name": "Wadi al Hayaa", "type": "Popularate" }, { "code": "LY-WS", - "name": "Wādī ash Shāţi’", + "name": "Wadi al Shatii", "type": "Popularate" }, { "code": "LY-ZA", - "name": "Az Zāwiyah", + "name": "Zawiya", "type": "Popularate" }, { "code": "MA-01", - "name": "Tanger-Tétouan-Al Hoceïma", + "name": "Tangier-Tétouan", "type": "Region" }, { "code": "MA-02", - "name": "L'Oriental", + "name": "Gharb-Chrarda-Béni Hssen", "type": "Region" }, { "code": "MA-03", - "name": "Fès-Meknès", + "name": "Taza-Al Hoceima-Taounate", "type": "Region" }, { "code": "MA-04", - "name": "Rabat-Salé-Kénitra", + "name": "Oriental", "type": "Region" }, { "code": "MA-05", - "name": "Béni Mellal-Khénifra", + "name": "Fès-Boulemane", "type": "Region" }, { "code": "MA-06", - "name": "Casablanca-Settat", + "name": "Meknès-Tafilalet", "type": "Region" }, { "code": "MA-07", - "name": "Marrakech-Safi", + "name": "Rabat-Salé-Zemmour-Zaer", "type": "Region" }, { "code": "MA-08", - "name": "Drâa-Tafilalet", + "name": "Grand Casablanca", "type": "Region" }, { "code": "MA-09", - "name": "Souss-Massa", + "name": "Chaouia-Ouardigha", "type": "Region" }, { "code": "MA-10", - "name": "Guelmim-Oued Noun (EH-partial)", + "name": "Doukkala-Abda", "type": "Region" }, { "code": "MA-11", - "name": "Laâyoune-Sakia El Hamra (EH-partial)", + "name": "Marrakesh-Tensift-El Haouz", "type": "Region" }, { "code": "MA-12", - "name": "Dakhla-Oued Ed-Dahab (EH)", + "name": "Tadla-Azilal", "type": "Region" }, { "code": "MA-AGD", - "name": "Agadir-Ida-Ou-Tanane", + "name": "Agadir-Ida Ou Tanane", "type": "Prefecture" }, { "code": "MA-AOU", - "name": "Aousserd (EH)", + "name": "Aousserd", "type": "Province" }, { "code": "MA-ASZ", - "name": "Assa-Zag (EH-partial)", + "name": "Assa-Zag", "type": "Province" }, { @@ -13912,7 +13912,7 @@ }, { "code": "MA-BEM", - "name": "Béni Mellal", + "name": "Béni-Mellal", "type": "Province" }, { @@ -13922,12 +13922,12 @@ }, { "code": "MA-BES", - "name": "Benslimane", + "name": "Ben Slimane", "type": "Province" }, { "code": "MA-BOD", - "name": "Boujdour (EH)", + "name": "Boujdour", "type": "Province" }, { @@ -13957,7 +13957,7 @@ }, { "code": "MA-CHT", - "name": "Chtouka-Ait Baha", + "name": "Chtouka Aït Baha", "type": "Province" }, { @@ -13977,17 +13977,17 @@ }, { "code": "MA-ESM", - "name": "Es-Semara (EH-partial)", + "name": "Es Semara", "type": "Province" }, { "code": "MA-FAH", - "name": "Fahs-Anjra", + "name": "Fahs-Beni Makada", "type": "Province" }, { "code": "MA-FES", - "name": "Fès", + "name": "Fès-Dar-Dbibegh", "type": "Prefecture" }, { @@ -14032,7 +14032,7 @@ }, { "code": "MA-INE", - "name": "Inezgane-Ait Melloul", + "name": "Inezgane-Aït Melloul", "type": "Prefecture" }, { @@ -14052,12 +14052,12 @@ }, { "code": "MA-KES", - "name": "El Kelâa des Sraghna", + "name": "Kelaat Sraghna", "type": "Province" }, { "code": "MA-KHE", - "name": "Khémisset", + "name": "Khemisset", "type": "Province" }, { @@ -14072,7 +14072,7 @@ }, { "code": "MA-LAA", - "name": "Laâyoune (EH)", + "name": "Laâyoune", "type": "Province" }, { @@ -14107,7 +14107,7 @@ }, { "code": "MA-MOH", - "name": "Mohammadia", + "name": "Mohammedia", "type": "Prefecture" }, { @@ -14132,7 +14132,7 @@ }, { "code": "MA-OUD", - "name": "Oued Ed-Dahab (EH)", + "name": "Oued Ed-Dahab", "type": "Province" }, { @@ -14197,7 +14197,7 @@ }, { "code": "MA-SKH", - "name": "Skhirate-Témara", + "name": "Skhirat-Témara", "type": "Prefecture" }, { @@ -14217,7 +14217,7 @@ }, { "code": "MA-TAR", - "name": "Taroudannt", + "name": "Taroudant", "type": "Province" }, { @@ -14247,12 +14247,12 @@ }, { "code": "MA-TNG", - "name": "Tanger-Assilah", + "name": "Tangier-Assilah", "type": "Prefecture" }, { "code": "MA-TNT", - "name": "Tan-Tan (EH-partial)", + "name": "Tan-Tan", "type": "Province" }, { @@ -14287,7 +14287,7 @@ }, { "code": "MC-JE", - "name": "Jardin Exotique", + "name": "Jardin Exotique de Monaco", "type": "Quarter" }, { @@ -14302,7 +14302,7 @@ }, { "code": "MC-MC", - "name": "Monte-Carlo", + "name": "Monte Carlo", "type": "Quarter" }, { @@ -14322,12 +14322,12 @@ }, { "code": "MC-PH", - "name": "Port-Hercule", + "name": "Port Hercules", "type": "Quarter" }, { "code": "MC-SD", - "name": "Sainte-Dévote", + "name": "Sainte-Dévote Chapel", "type": "Quarter" }, { @@ -14342,7 +14342,7 @@ }, { "code": "MC-SR", - "name": "Saint-Roman", + "name": "Saint Roman", "type": "Quarter" }, { @@ -14357,12 +14357,12 @@ }, { "code": "MD-BA", - "name": "Bălți", + "name": "Bălţi", "type": "City" }, { "code": "MD-BD", - "name": "Bender [Tighina]", + "name": "Bender", "type": "City" }, { @@ -14442,7 +14442,7 @@ }, { "code": "MD-GA", - "name": "Găgăuzia, Unitatea teritorială autonomă (UTAG)", + "name": "Gagauzia", "type": "Autonomous territorial unit" }, { @@ -14472,7 +14472,7 @@ }, { "code": "MD-OC", - "name": "Ocnița", + "name": "Ocniţa", "type": "District" }, { @@ -14502,7 +14502,7 @@ }, { "code": "MD-SN", - "name": "Stînga Nistrului, unitatea teritorială din", + "name": "Transnistria", "type": "Territorial unit" }, { @@ -14517,7 +14517,7 @@ }, { "code": "MD-SV", - "name": "Ștefan Vodă", + "name": "Ştefan Vodă", "type": "District" }, { @@ -14572,7 +14572,7 @@ }, { "code": "ME-08", - "name": "Herceg-Novi", + "name": "Herceg Novi", "type": "Municipality" }, { @@ -14692,12 +14692,12 @@ }, { "code": "MH-ALK", - "name": "Ailuk", + "name": "Ailuk Atoll", "type": "Municipality" }, { "code": "MH-ALL", - "name": "Ailinglaplap", + "name": "Ailinglaplap Atoll", "type": "Municipality" }, { @@ -14707,32 +14707,32 @@ }, { "code": "MH-AUR", - "name": "Aur", + "name": "Aur Atoll", "type": "Municipality" }, { "code": "MH-EBO", - "name": "Ebon", + "name": "Ebon Atoll", "type": "Municipality" }, { "code": "MH-ENI", - "name": "Enewetak & Ujelang", + "name": "Enewetak Atoll", "type": "Municipality" }, { "code": "MH-JAB", - "name": "Jabat", + "name": "Jabat Island", "type": "Municipality" }, { "code": "MH-JAL", - "name": "Jaluit", + "name": "Jaluit Atoll", "type": "Municipality" }, { "code": "MH-KIL", - "name": "Bikini & Kili", + "name": "Kili Island", "type": "Municipality" }, { @@ -14742,22 +14742,22 @@ }, { "code": "MH-L", - "name": "Ralik chain", + "name": "Ralik Chain", "type": "Chain (of islands)" }, { "code": "MH-LAE", - "name": "Lae", + "name": "Lae Atoll", "type": "Municipality" }, { "code": "MH-LIB", - "name": "Lib", + "name": "Lib Island", "type": "Municipality" }, { "code": "MH-LIK", - "name": "Likiep", + "name": "Likiep Atoll", "type": "Municipality" }, { @@ -14767,57 +14767,57 @@ }, { "code": "MH-MAL", - "name": "Maloelap", + "name": "Maloelap Atoll", "type": "Municipality" }, { "code": "MH-MEJ", - "name": "Mejit", + "name": "Mejit Island", "type": "Municipality" }, { "code": "MH-MIL", - "name": "Mili", + "name": "Mili Atoll", "type": "Municipality" }, { "code": "MH-NMK", - "name": "Namdrik", + "name": "Namdrik Atoll", "type": "Municipality" }, { "code": "MH-NMU", - "name": "Namu", + "name": "Namu Atoll", "type": "Municipality" }, { "code": "MH-RON", - "name": "Rongelap", + "name": "Rongelap Atoll", "type": "Municipality" }, { "code": "MH-T", - "name": "Ratak chain", + "name": "Ratak Chain", "type": "Chain (of islands)" }, { "code": "MH-UJA", - "name": "Ujae", + "name": "Ujae Atoll", "type": "Municipality" }, { "code": "MH-UTI", - "name": "Utrik", + "name": "Utirik Atoll", "type": "Municipality" }, { "code": "MH-WTH", - "name": "Wotho", + "name": "Wotho Atoll", "type": "Municipality" }, { "code": "MH-WTJ", - "name": "Wotje", + "name": "Wotje Atoll", "type": "Municipality" }, { @@ -15347,32 +15347,32 @@ }, { "code": "MM-18", - "name": "Nay Pyi Taw", + "name": "Naypyidaw", "type": "Union territory" }, { "code": "MN-035", - "name": "Orhon", + "name": "Orkhon", "type": "Province" }, { "code": "MN-037", - "name": "Darhan uul", + "name": "Darkhan-Uul", "type": "Province" }, { "code": "MN-039", - "name": "Hentiy", + "name": "Khentii", "type": "Province" }, { "code": "MN-041", - "name": "Hövsgöl", + "name": "Khövsgöl", "type": "Province" }, { "code": "MN-043", - "name": "Hovd", + "name": "Khovd", "type": "Province" }, { @@ -15392,27 +15392,27 @@ }, { "code": "MN-051", - "name": "Sühbaatar", + "name": "Sükhbaatar", "type": "Province" }, { "code": "MN-053", - "name": "Ömnögovĭ", + "name": "Ömnögovi", "type": "Province" }, { "code": "MN-055", - "name": "Övörhangay", + "name": "Övörkhangai", "type": "Province" }, { "code": "MN-057", - "name": "Dzavhan", + "name": "Zavkhan", "type": "Province" }, { "code": "MN-059", - "name": "Dundgovĭ", + "name": "Dundgovi", "type": "Province" }, { @@ -15422,17 +15422,17 @@ }, { "code": "MN-063", - "name": "Dornogovĭ", + "name": "Dornogovi", "type": "Province" }, { "code": "MN-064", - "name": "Govĭ-Sümber", + "name": "Govisümber", "type": "Province" }, { "code": "MN-065", - "name": "Govĭ-Altay", + "name": "Govi-Altai", "type": "Province" }, { @@ -15442,17 +15442,17 @@ }, { "code": "MN-069", - "name": "Bayanhongor", + "name": "Bayankhongor", "type": "Province" }, { "code": "MN-071", - "name": "Bayan-Ölgiy", + "name": "Bayan-Ölgii", "type": "Province" }, { "code": "MN-073", - "name": "Arhangay", + "name": "Arkhangai", "type": "Province" }, { @@ -15462,12 +15462,12 @@ }, { "code": "MR-01", - "name": "Hodh ech Chargui", + "name": "Hodh Ech Chargui", "type": "Region" }, { "code": "MR-02", - "name": "Hodh el Gharbi", + "name": "Hodh El Gharbi", "type": "Region" }, { @@ -15497,7 +15497,7 @@ }, { "code": "MR-08", - "name": "Dakhlet Nouâdhibou", + "name": "Dakhlet Nouadhibou", "type": "Region" }, { @@ -15562,7 +15562,7 @@ }, { "code": "MT-06", - "name": "Bormla", + "name": "Cospicua", "type": "Local council" }, { @@ -15632,7 +15632,7 @@ }, { "code": "MT-20", - "name": "Isla", + "name": "Senglea", "type": "Local council" }, { @@ -15707,7 +15707,7 @@ }, { "code": "MT-35", - "name": "Mtarfa", + "name": "Imtarfa", "type": "Local council" }, { @@ -15757,12 +15757,12 @@ }, { "code": "MT-45", - "name": "Rabat Gozo", + "name": "Victoria", "type": "Local council" }, { "code": "MT-46", - "name": "Rabat Malta", + "name": "Rabat", "type": "Local council" }, { @@ -15772,12 +15772,12 @@ }, { "code": "MT-48", - "name": "Saint Julian's", + "name": "St. Julian’s", "type": "Local council" }, { "code": "MT-49", - "name": "Saint John", + "name": "San Ġwann", "type": "Local council" }, { @@ -15787,7 +15787,7 @@ }, { "code": "MT-51", - "name": "Saint Paul's Bay", + "name": "St. Paul’s Bay", "type": "Local council" }, { @@ -15797,7 +15797,7 @@ }, { "code": "MT-53", - "name": "Saint Lucia's", + "name": "Santa Luċija", "type": "Local council" }, { @@ -15822,7 +15822,7 @@ }, { "code": "MT-58", - "name": "Ta' Xbiex", + "name": "Ta’ Xbiex", "type": "Local council" }, { @@ -15862,7 +15862,7 @@ }, { "code": "MT-66", - "name": "Żebbuġ Malta", + "name": "Żebbuġ", "type": "Local council" }, { @@ -15877,17 +15877,17 @@ }, { "code": "MU-AG", - "name": "Agalega Islands", + "name": "Agaléga", "type": "Dependency" }, { "code": "MU-BL", - "name": "Black River", + "name": "Rivière Noire", "type": "District" }, { "code": "MU-CC", - "name": "Cargados Carajos Shoals", + "name": "Cargados Carajos", "type": "Dependency" }, { @@ -15912,7 +15912,7 @@ }, { "code": "MU-PL", - "name": "Port Louis", + "name": "Port Louis District", "type": "District" }, { @@ -15922,7 +15922,7 @@ }, { "code": "MU-RO", - "name": "Rodrigues Island", + "name": "Rodrigues", "type": "Dependency" }, { @@ -15937,107 +15937,107 @@ }, { "code": "MV-00", - "name": "South Ari Atoll", + "name": "Alif Dhaal", "type": "Administrative atoll" }, { "code": "MV-01", - "name": "Addu City", + "name": "Addu", "type": "City" }, { "code": "MV-02", - "name": "North Ari Atoll", + "name": "Alif Alif", "type": "Administrative atoll" }, { "code": "MV-03", - "name": "Faadhippolhu", + "name": "Lhaviyani", "type": "Administrative atoll" }, { "code": "MV-04", - "name": "Felidhu Atoll", + "name": "Vaavu", "type": "Administrative atoll" }, { "code": "MV-05", - "name": "Hahdhunmathi", + "name": "Laamu", "type": "Administrative atoll" }, { "code": "MV-07", - "name": "North Thiladhunmathi", + "name": "Haa Alif", "type": "Administrative atoll" }, { "code": "MV-08", - "name": "Kolhumadulu", + "name": "Thaa", "type": "Administrative atoll" }, { "code": "MV-12", - "name": "Mulaku Atoll", + "name": "Meemu", "type": "Administrative atoll" }, { "code": "MV-13", - "name": "North Maalhosmadulu", + "name": "Raa", "type": "Administrative atoll" }, { "code": "MV-14", - "name": "North Nilandhe Atoll", + "name": "Faafu", "type": "Administrative atoll" }, { "code": "MV-17", - "name": "South Nilandhe Atoll", + "name": "Dhaalu", "type": "Administrative atoll" }, { "code": "MV-20", - "name": "South Maalhosmadulu", + "name": "Baa", "type": "Administrative atoll" }, { "code": "MV-23", - "name": "South Thiladhunmathi", + "name": "Haa Dhaalu", "type": "Administrative atoll" }, { "code": "MV-24", - "name": "North Miladhunmadulu", + "name": "Shaviyani", "type": "Administrative atoll" }, { "code": "MV-25", - "name": "South Miladhunmadulu", + "name": "Noonu", "type": "Administrative atoll" }, { "code": "MV-26", - "name": "Male Atoll", + "name": "Kaafu", "type": "Administrative atoll" }, { "code": "MV-27", - "name": "North Huvadhu Atoll", + "name": "Gaafu Alif", "type": "Administrative atoll" }, { "code": "MV-28", - "name": "South Huvadhu Atoll", + "name": "Gaafu Dhaalu", "type": "Administrative atoll" }, { "code": "MV-29", - "name": "Fuvammulah", + "name": "Gnaviyani", "type": "Administrative atoll" }, { "code": "MV-MLE", - "name": "Male", + "name": "Malé", "type": "City" }, { @@ -16052,7 +16052,7 @@ }, { "code": "MW-C", - "name": "Central Region", + "name": "Central", "type": "Region" }, { @@ -16132,7 +16132,7 @@ }, { "code": "MW-N", - "name": "Northern Region", + "name": "Northern", "type": "Region" }, { @@ -16177,7 +16177,7 @@ }, { "code": "MW-S", - "name": "Southern Region", + "name": "Southern", "type": "Region" }, { @@ -16227,12 +16227,12 @@ }, { "code": "MX-CMX", - "name": "Ciudad de México", + "name": "Ciudad de Mexico", "type": "Federal entity" }, { "code": "MX-COA", - "name": "Coahuila de Zaragoza", + "name": "Coahuila", "type": "State" }, { @@ -16267,12 +16267,12 @@ }, { "code": "MX-MEX", - "name": "México", + "name": "Mexico State", "type": "State" }, { "code": "MX-MIC", - "name": "Michoacán de Ocampo", + "name": "Michoacán", "type": "State" }, { @@ -16342,7 +16342,7 @@ }, { "code": "MX-VER", - "name": "Veracruz de Ignacio de la Llave", + "name": "Veracruz", "type": "State" }, { @@ -16372,7 +16372,7 @@ }, { "code": "MY-04", - "name": "Melaka", + "name": "Malacca", "type": "State" }, { @@ -16387,7 +16387,7 @@ }, { "code": "MY-07", - "name": "Pulau Pinang", + "name": "Penang", "type": "State" }, { @@ -16422,17 +16422,17 @@ }, { "code": "MY-14", - "name": "Wilayah Persekutuan Kuala Lumpur", + "name": "Kuala Lumpur", "type": "Federal territory" }, { "code": "MY-15", - "name": "Wilayah Persekutuan Labuan", + "name": "Labuan", "type": "Federal territory" }, { "code": "MY-16", - "name": "Wilayah Persekutuan Putrajaya", + "name": "Putrajaya", "type": "Federal territory" }, { @@ -16457,7 +16457,7 @@ }, { "code": "MZ-L", - "name": "Maputo", + "name": "Maputo Province", "type": "Province" }, { @@ -16477,7 +16477,7 @@ }, { "code": "MZ-Q", - "name": "Zambézia", + "name": "Zambezia", "type": "Province" }, { @@ -16507,7 +16507,7 @@ }, { "code": "NA-KA", - "name": "//Karas", + "name": "Karas", "type": "Region" }, { @@ -16672,7 +16672,7 @@ }, { "code": "NG-FC", - "name": "Abuja Federal Capital Territory", + "name": "Federal Capital Territory", "type": "Capital territory" }, { @@ -16787,12 +16787,12 @@ }, { "code": "NI-AN", - "name": "Costa Caribe Norte", + "name": "Atlántico Norte", "type": "Autonomous region" }, { "code": "NI-AS", - "name": "Costa Caribe Sur", + "name": "Atlántico Sur", "type": "Autonomous region" }, { @@ -16907,7 +16907,7 @@ }, { "code": "NL-FR", - "name": "Fryslân", + "name": "Friesland", "type": "Province" }, { @@ -16927,12 +16927,12 @@ }, { "code": "NL-NB", - "name": "Noord-Brabant", + "name": "North Brabant", "type": "Province" }, { "code": "NL-NH", - "name": "Noord-Holland", + "name": "North Holland", "type": "Province" }, { @@ -16957,7 +16957,7 @@ }, { "code": "NL-ZH", - "name": "Zuid-Holland", + "name": "South Holland", "type": "Province" }, { @@ -16982,12 +16982,12 @@ }, { "code": "NO-21", - "name": "Svalbard (Arctic Region)", + "name": "Svalbard", "type": "Arctic region" }, { "code": "NO-22", - "name": "Jan Mayen (Arctic Region)", + "name": "Jan Mayen", "type": "Arctic region" }, { @@ -17017,47 +17017,47 @@ }, { "code": "NO-50", - "name": "Trööndelage", + "name": "Trøndelag", "type": "County" }, { "code": "NO-54", - "name": "Romssa ja Finnmárkku", + "name": "Tromssan ja Finmarkun", "type": "County" }, { "code": "NP-P1", - "name": "Koshi", + "name": "Province 1", "type": "Province" }, { "code": "NP-P2", - "name": "Madhesh", + "name": "Province 2", "type": "Province" }, { "code": "NP-P3", - "name": "Bagmati", + "name": "Province 3", "type": "Province" }, { "code": "NP-P4", - "name": "Gandaki", + "name": "Gandaki²", "type": "Province" }, { "code": "NP-P5", - "name": "Lumbini", + "name": "Province 5", "type": "Province" }, { "code": "NP-P6", - "name": "Karnali", + "name": "Karnali²", "type": "Province" }, { "code": "NP-P7", - "name": "Sudurpashchim", + "name": "Province 7", "type": "Province" }, { @@ -17082,7 +17082,7 @@ }, { "code": "NR-05", - "name": "Baitsi", + "name": "Baiti", "type": "District" }, { @@ -17147,7 +17147,7 @@ }, { "code": "NZ-CIT", - "name": "Chatham Islands Territory", + "name": "Chatham Islands", "type": "Special island authority" }, { @@ -17157,17 +17157,17 @@ }, { "code": "NZ-HKB", - "name": "Hawke's Bay", + "name": "Hawke’s Bay", "type": "Region" }, { "code": "NZ-MBH", - "name": "Marlborough", + "name": "Marl", "type": "Region" }, { "code": "NZ-MWT", - "name": "Manawatū-Whanganui", + "name": "Manawatu-Wanganui", "type": "Region" }, { @@ -17202,7 +17202,7 @@ }, { "code": "NZ-WGN", - "name": "Greater Wellington", + "name": "Wellington", "type": "Region" }, { @@ -17217,27 +17217,27 @@ }, { "code": "OM-BJ", - "name": "Janūb al Bāţinah", + "name": "Janub al Batinah", "type": "Governorate" }, { "code": "OM-BS", - "name": "Shamāl al Bāţinah", + "name": "Shamal al Batinah", "type": "Governorate" }, { "code": "OM-BU", - "name": "Al Buraymī", + "name": "Al Buraimi", "type": "Governorate" }, { "code": "OM-DA", - "name": "Ad Dākhilīyah", + "name": "Ad Dakhiliyah", "type": "Governorate" }, { "code": "OM-MA", - "name": "Masqaţ", + "name": "Muscat", "type": "Governorate" }, { @@ -17247,27 +17247,27 @@ }, { "code": "OM-SJ", - "name": "Janūb ash Sharqīyah", + "name": "Janub ash Sharqiyah", "type": "Governorate" }, { "code": "OM-SS", - "name": "Shamāl ash Sharqīyah", + "name": "Shamal ash Sharqiyah", "type": "Governorate" }, { "code": "OM-WU", - "name": "Al Wusţá", + "name": "Al Wusta", "type": "Governorate" }, { "code": "OM-ZA", - "name": "Az̧ Z̧āhirah", + "name": "Ad Dhahirah", "type": "Governorate" }, { "code": "OM-ZU", - "name": "Z̧ufār", + "name": "Dhofar", "type": "Governorate" }, { @@ -17277,7 +17277,7 @@ }, { "code": "PA-10", - "name": "Panamá Oeste", + "name": "West Panamá", "type": "Province" }, { @@ -17332,7 +17332,7 @@ }, { "code": "PA-NB", - "name": "Ngäbe-Buglé", + "name": "Ngöbe-Buglé", "type": "Indigenous region" }, { @@ -17342,7 +17342,7 @@ }, { "code": "PE-AMA", - "name": "Amarumayu", + "name": "Amazonas", "type": "Region" }, { @@ -17352,7 +17352,7 @@ }, { "code": "PE-APU", - "name": "Apurimaq", + "name": "Apurímac", "type": "Region" }, { @@ -17397,7 +17397,7 @@ }, { "code": "PE-JUN", - "name": "Hunin", + "name": "Junín", "type": "Region" }, { @@ -17412,12 +17412,12 @@ }, { "code": "PE-LIM", - "name": "Lima", + "name": "Lima Region", "type": "Region" }, { "code": "PE-LMA", - "name": "Lima hatun llaqta", + "name": "Lima", "type": "Municipality" }, { @@ -17452,7 +17452,7 @@ }, { "code": "PE-SAM", - "name": "San Martin", + "name": "San Martín", "type": "Region" }, { @@ -17537,7 +17537,7 @@ }, { "code": "PG-NCD", - "name": "National Capital District (Port Moresby)", + "name": "Port Moresby", "type": "District" }, { @@ -17547,7 +17547,7 @@ }, { "code": "PG-NPP", - "name": "Northern", + "name": "Oro", "type": "Province" }, { @@ -17557,7 +17557,7 @@ }, { "code": "PG-SAN", - "name": "West Sepik", + "name": "Sandaun", "type": "Province" }, { @@ -17582,87 +17582,87 @@ }, { "code": "PH-00", - "name": "National Capital Region", + "name": "Metro Manila", "type": "Region" }, { "code": "PH-01", - "name": "Ilocos (Region I)", + "name": "Ilocos", "type": "Region" }, { "code": "PH-02", - "name": "Cagayan Valley (Region II)", + "name": "Cagayan Valley", "type": "Region" }, { "code": "PH-03", - "name": "Central Luzon (Region III)", + "name": "Central Luzon", "type": "Region" }, { "code": "PH-05", - "name": "Bicol (Region V)", + "name": "Bicol", "type": "Region" }, { "code": "PH-06", - "name": "Western Visayas (Region VI)", + "name": "Western Visayas", "type": "Region" }, { "code": "PH-07", - "name": "Central Visayas (Region VII)", + "name": "Central Visayas", "type": "Region" }, { "code": "PH-08", - "name": "Eastern Visayas (Region VIII)", + "name": "Eastern Visayas", "type": "Region" }, { "code": "PH-09", - "name": "Zamboanga Peninsula (Region IX)", + "name": "Zamboanga Peninsula", "type": "Region" }, { "code": "PH-10", - "name": "Northern Mindanao (Region X)", + "name": "Northern Mindanao", "type": "Region" }, { "code": "PH-11", - "name": "Davao (Region XI)", + "name": "Davao", "type": "Region" }, { "code": "PH-12", - "name": "Soccsksargen (Region XII)", + "name": "Soccsksargen", "type": "Region" }, { "code": "PH-13", - "name": "Caraga (Region XIII)", + "name": "Caraga", "type": "Region" }, { "code": "PH-14", - "name": "Autonomous Region in Muslim Mindanao (ARMM)", + "name": "Muslim Mindanao", "type": "Region" }, { "code": "PH-15", - "name": "Cordillera Administrative Region (CAR)", + "name": "Cordillera Administrative", "type": "Region" }, { "code": "PH-40", - "name": "Calabarzon (Region IV-A)", + "name": "Calabarzon", "type": "Region" }, { "code": "PH-41", - "name": "Mimaropa (Region IV-B)", + "name": "Mimaropa", "type": "Region" }, { @@ -17792,7 +17792,7 @@ }, { "code": "PH-COM", - "name": "Davao de Oro", + "name": "Compostela Valley", "type": "Province" }, { @@ -17897,12 +17897,12 @@ }, { "code": "PH-MDC", - "name": "Mindoro Occidental", + "name": "Occidental Mindoro", "type": "Province" }, { "code": "PH-MDR", - "name": "Mindoro Oriental", + "name": "Oriental Mindoro", "type": "Province" }, { @@ -17917,7 +17917,7 @@ }, { "code": "PH-MOU", - "name": "Mountain Province", + "name": "Mountain", "type": "Province" }, { @@ -18092,7 +18092,7 @@ }, { "code": "PK-JK", - "name": "Azad Jammu and Kashmir", + "name": "Azad Kashmir", "type": "Pakistan administered area" }, { @@ -18112,82 +18112,82 @@ }, { "code": "PL-02", - "name": "Dolnośląskie", + "name": "Lower Silesia", "type": "Voivodship" }, { "code": "PL-04", - "name": "Kujawsko-Pomorskie", + "name": "Kuyavia-Pomerania", "type": "Voivodship" }, { "code": "PL-06", - "name": "Lubelskie", + "name": "Lublin", "type": "Voivodship" }, { "code": "PL-08", - "name": "Lubuskie", + "name": "Lubusz", "type": "Voivodship" }, { "code": "PL-10", - "name": "Łódzkie", + "name": "Łódź", "type": "Voivodship" }, { "code": "PL-12", - "name": "Małopolskie", + "name": "Lesser Poland", "type": "Voivodship" }, { "code": "PL-14", - "name": "Mazowieckie", + "name": "Mazovia", "type": "Voivodship" }, { "code": "PL-16", - "name": "Opolskie", + "name": "Opole", "type": "Voivodship" }, { "code": "PL-18", - "name": "Podkarpackie", + "name": "Subcarpathia", "type": "Voivodship" }, { "code": "PL-20", - "name": "Podlaskie", + "name": "Podlachia", "type": "Voivodship" }, { "code": "PL-22", - "name": "Pomorskie", + "name": "Pomerania", "type": "Voivodship" }, { "code": "PL-24", - "name": "Śląskie", + "name": "Silesia", "type": "Voivodship" }, { "code": "PL-26", - "name": "Świętokrzyskie", + "name": "Holy Cross", "type": "Voivodship" }, { "code": "PL-28", - "name": "Warmińsko-Mazurskie", + "name": "Warmia-Masuria", "type": "Voivodship" }, { "code": "PL-30", - "name": "Wielkopolskie", + "name": "Greater Poland", "type": "Voivodship" }, { "code": "PL-32", - "name": "Zachodniopomorskie", + "name": "West Pomerania", "type": "Voivodship" }, { @@ -18197,7 +18197,7 @@ }, { "code": "PS-DEB", - "name": "Deir El Balah", + "name": "Deir al-Balah", "type": "Governorate" }, { @@ -18222,7 +18222,7 @@ }, { "code": "PS-JRH", - "name": "Jericho and Al Aghwar", + "name": "Jericho", "type": "Governorate" }, { @@ -18247,7 +18247,7 @@ }, { "code": "PS-RBH", - "name": "Ramallah", + "name": "Ramallah and al-Bireh", "type": "Governorate" }, { @@ -18322,7 +18322,7 @@ }, { "code": "PT-11", - "name": "Lisboa", + "name": "Lisbon", "type": "District" }, { @@ -18362,12 +18362,12 @@ }, { "code": "PT-20", - "name": "Região Autónoma dos Açores", + "name": "Azores", "type": "Autonomous region" }, { "code": "PT-30", - "name": "Região Autónoma da Madeira", + "name": "Madeira", "type": "Autonomous region" }, { @@ -18542,22 +18542,22 @@ }, { "code": "QA-DA", - "name": "Ad Dawḩah", + "name": "Doha", "type": "Municipality" }, { "code": "QA-KH", - "name": "Al Khawr wa adh Dhakhīrah", + "name": "Al Khor", "type": "Municipality" }, { "code": "QA-MS", - "name": "Ash Shamāl", + "name": "Madinat ash Shamal", "type": "Municipality" }, { "code": "QA-RA", - "name": "Ar Rayyān", + "name": "Al Rayyan", "type": "Municipality" }, { @@ -18567,7 +18567,7 @@ }, { "code": "QA-US", - "name": "Umm Şalāl", + "name": "Umm Salal", "type": "Municipality" }, { @@ -18577,7 +18577,7 @@ }, { "code": "QA-ZA", - "name": "Az̧ Z̧a‘āyin", + "name": "Al Daayen", "type": "Municipality" }, { @@ -18597,7 +18597,7 @@ }, { "code": "RO-B", - "name": "București", + "name": "Bucharest", "type": "Municipality" }, { @@ -18612,7 +18612,7 @@ }, { "code": "RO-BN", - "name": "Bistrița-Năsăud", + "name": "Bistriţa-Năsăud", "type": "Department" }, { @@ -18622,12 +18622,12 @@ }, { "code": "RO-BT", - "name": "Botoșani", + "name": "Botoşani", "type": "Department" }, { "code": "RO-BV", - "name": "Brașov", + "name": "Braşov", "type": "Department" }, { @@ -18717,17 +18717,17 @@ }, { "code": "RO-MM", - "name": "Maramureș", + "name": "Maramureş", "type": "Department" }, { "code": "RO-MS", - "name": "Mureș", + "name": "Mureş", "type": "Department" }, { "code": "RO-NT", - "name": "Neamț", + "name": "Neamţ", "type": "Department" }, { @@ -18797,147 +18797,147 @@ }, { "code": "RS-01", - "name": "Severnobački okrug", + "name": "North Bačka", "type": "District" }, { "code": "RS-02", - "name": "Srednjebanatski okrug", + "name": "Central Banat", "type": "District" }, { "code": "RS-03", - "name": "Severnobanatski okrug", + "name": "North Banat", "type": "District" }, { "code": "RS-04", - "name": "Južnobanatski okrug", + "name": "South Banat", "type": "District" }, { "code": "RS-05", - "name": "Zapadnobački okrug", + "name": "West Bačka", "type": "District" }, { "code": "RS-06", - "name": "Južnobački okrug", + "name": "South Bačka", "type": "District" }, { "code": "RS-07", - "name": "Sremski okrug", + "name": "Srem", "type": "District" }, { "code": "RS-08", - "name": "Mačvanski okrug", + "name": "Mačva", "type": "District" }, { "code": "RS-09", - "name": "Kolubarski okrug", + "name": "Kolubara", "type": "District" }, { "code": "RS-10", - "name": "Podunavski okrug", + "name": "Podunavlje", "type": "District" }, { "code": "RS-11", - "name": "Braničevski okrug", + "name": "Braničevo", "type": "District" }, { "code": "RS-12", - "name": "Šumadijski okrug", + "name": "Šumadija", "type": "District" }, { "code": "RS-13", - "name": "Pomoravski okrug", + "name": "Pomoravlje", "type": "District" }, { "code": "RS-14", - "name": "Borski okrug", + "name": "Bor", "type": "District" }, { "code": "RS-15", - "name": "Zaječarski okrug", + "name": "Zaječar", "type": "District" }, { "code": "RS-16", - "name": "Zlatiborski okrug", + "name": "Zlatibor", "type": "District" }, { "code": "RS-17", - "name": "Moravički okrug", + "name": "Moravica", "type": "District" }, { "code": "RS-18", - "name": "Raški okrug", + "name": "Raška", "type": "District" }, { "code": "RS-19", - "name": "Rasinski okrug", + "name": "Rasina", "type": "District" }, { "code": "RS-20", - "name": "Nišavski okrug", + "name": "Nišava", "type": "District" }, { "code": "RS-21", - "name": "Toplički okrug", + "name": "Toplica", "type": "District" }, { "code": "RS-22", - "name": "Pirotski okrug", + "name": "Pirot", "type": "District" }, { "code": "RS-23", - "name": "Jablanički okrug", + "name": "Jablanica", "type": "District" }, { "code": "RS-24", - "name": "Pčinjski okrug", + "name": "Pčinja", "type": "District" }, { "code": "RS-25", - "name": "Kosovski okrug", + "name": "Kosovo", "type": "District" }, { "code": "RS-26", - "name": "Pećki okrug", + "name": "Peć", "type": "District" }, { "code": "RS-27", - "name": "Prizrenski okrug", + "name": "Prizren", "type": "District" }, { "code": "RS-28", - "name": "Kosovsko-Mitrovački okrug", + "name": "Kosovska Mitrovica", "type": "District" }, { "code": "RS-29", - "name": "Kosovsko-Pomoravski okrug", + "name": "Kosovo-Pomoravlje", "type": "District" }, { @@ -18952,422 +18952,422 @@ }, { "code": "RU-AD", - "name": "Adygeja, Respublika", + "name": "Adygea", "type": "Republic" }, { "code": "RU-AL", - "name": "Altaj, Respublika", + "name": "Altai", "type": "Republic" }, { "code": "RU-ALT", - "name": "Altajskij kraj", + "name": "Altai Krai", "type": "Administrative territory" }, { "code": "RU-AMU", - "name": "Amurskaja oblast'", + "name": "Amur", "type": "Administrative region" }, { "code": "RU-ARK", - "name": "Arhangel'skaja oblast'", + "name": "Arkhangelsk", "type": "Administrative region" }, { "code": "RU-AST", - "name": "Astrahanskaja oblast'", + "name": "Astrakhan", "type": "Administrative region" }, { "code": "RU-BA", - "name": "Bashkortostan, Respublika", + "name": "Bashkortostan", "type": "Republic" }, { "code": "RU-BEL", - "name": "Belgorodskaja oblast'", + "name": "Belgorod", "type": "Administrative region" }, { "code": "RU-BRY", - "name": "Brjanskaja oblast'", + "name": "Bryansk", "type": "Administrative region" }, { "code": "RU-BU", - "name": "Burjatija, Respublika", + "name": "Buryat", "type": "Republic" }, { "code": "RU-CE", - "name": "Chechenskaya Respublika", + "name": "Chechen", "type": "Republic" }, { "code": "RU-CHE", - "name": "Chelyabinskaya oblast'", + "name": "Chelyabinsk", "type": "Administrative region" }, { "code": "RU-CHU", - "name": "Chukotskiy avtonomnyy okrug", + "name": "Chukotka Okrug", "type": "Autonomous district" }, { "code": "RU-CU", - "name": "Chuvashskaya Respublika", + "name": "Chuvash", "type": "Republic" }, { "code": "RU-DA", - "name": "Dagestan, Respublika", + "name": "Dagestan", "type": "Republic" }, { "code": "RU-IN", - "name": "Ingushetiya, Respublika", + "name": "Ingushetia", "type": "Republic" }, { "code": "RU-IRK", - "name": "Irkutskaja oblast'", + "name": "Irkutsk", "type": "Administrative region" }, { "code": "RU-IVA", - "name": "Ivanovskaja oblast'", + "name": "Ivanovo", "type": "Administrative region" }, { "code": "RU-KAM", - "name": "Kamchatskiy kray", + "name": "Kamchatka Krai", "type": "Administrative territory" }, { "code": "RU-KB", - "name": "Kabardino-Balkarskaja Respublika", + "name": "Kabardino-Balkar", "type": "Republic" }, { "code": "RU-KC", - "name": "Karachayevo-Cherkesskaya Respublika", + "name": "Karachay-Cherkess", "type": "Republic" }, { "code": "RU-KDA", - "name": "Krasnodarskij kraj", + "name": "Krasnodar Krai", "type": "Administrative territory" }, { "code": "RU-KEM", - "name": "Kemerovskaja oblast'", + "name": "Kemerovo", "type": "Administrative region" }, { "code": "RU-KGD", - "name": "Kaliningradskaja oblast'", + "name": "Kaliningrad", "type": "Administrative region" }, { "code": "RU-KGN", - "name": "Kurganskaja oblast'", + "name": "Kurgan", "type": "Administrative region" }, { "code": "RU-KHA", - "name": "Habarovskij kraj", + "name": "Khabarovsk Krai", "type": "Administrative territory" }, { "code": "RU-KHM", - "name": "Hanty-Mansijskij avtonomnyj okrug", + "name": "Khanty-Mansi", "type": "Autonomous district" }, { "code": "RU-KIR", - "name": "Kirovskaja oblast'", + "name": "Kirov", "type": "Administrative region" }, { "code": "RU-KK", - "name": "Hakasija, Respublika", + "name": "Khakassia", "type": "Republic" }, { "code": "RU-KL", - "name": "Kalmykija, Respublika", + "name": "Kalmykia", "type": "Republic" }, { "code": "RU-KLU", - "name": "Kaluzhskaya oblast'", + "name": "Kaluga", "type": "Administrative region" }, { "code": "RU-KO", - "name": "Komi, Respublika", + "name": "Komi", "type": "Republic" }, { "code": "RU-KOS", - "name": "Kostromskaja oblast'", + "name": "Kostroma", "type": "Administrative region" }, { "code": "RU-KR", - "name": "Karelija, Respublika", + "name": "Karelia", "type": "Republic" }, { "code": "RU-KRS", - "name": "Kurskaja oblast'", + "name": "Kursk", "type": "Administrative region" }, { "code": "RU-KYA", - "name": "Krasnojarskij kraj", + "name": "Krasnoyarsk Krai", "type": "Administrative territory" }, { "code": "RU-LEN", - "name": "Leningradskaja oblast'", + "name": "Leningrad", "type": "Administrative region" }, { "code": "RU-LIP", - "name": "Lipeckaja oblast'", + "name": "Lipetsk", "type": "Administrative region" }, { "code": "RU-MAG", - "name": "Magadanskaja oblast'", + "name": "Magadan", "type": "Administrative region" }, { "code": "RU-ME", - "name": "Marij Èl, Respublika", + "name": "Mari El", "type": "Republic" }, { "code": "RU-MO", - "name": "Mordovija, Respublika", + "name": "Mordovia", "type": "Republic" }, { "code": "RU-MOS", - "name": "Moskovskaja oblast'", + "name": "Moscow Province", "type": "Administrative region" }, { "code": "RU-MOW", - "name": "Moskva", + "name": "Moscow", "type": "Autonomous city" }, { "code": "RU-MUR", - "name": "Murmanskaja oblast'", + "name": "Murmansk", "type": "Administrative region" }, { "code": "RU-NEN", - "name": "Neneckij avtonomnyj okrug", + "name": "Nenets", "type": "Autonomous district" }, { "code": "RU-NGR", - "name": "Novgorodskaja oblast'", + "name": "Novgorod", "type": "Administrative region" }, { "code": "RU-NIZ", - "name": "Nizhegorodskaya oblast'", + "name": "Nizhny Novgorod", "type": "Administrative region" }, { "code": "RU-NVS", - "name": "Novosibirskaja oblast'", + "name": "Novosibirsk", "type": "Administrative region" }, { "code": "RU-OMS", - "name": "Omskaja oblast'", + "name": "Omsk", "type": "Administrative region" }, { "code": "RU-ORE", - "name": "Orenburgskaja oblast'", + "name": "Orenburg", "type": "Administrative region" }, { "code": "RU-ORL", - "name": "Orlovskaja oblast'", + "name": "Oryol", "type": "Administrative region" }, { "code": "RU-PER", - "name": "Permskij kraj", + "name": "Perm Krai", "type": "Administrative territory" }, { "code": "RU-PNZ", - "name": "Penzenskaja oblast'", + "name": "Penza", "type": "Administrative region" }, { "code": "RU-PRI", - "name": "Primorskij kraj", + "name": "Primorsky Krai", "type": "Administrative territory" }, { "code": "RU-PSK", - "name": "Pskovskaja oblast'", + "name": "Pskov", "type": "Administrative region" }, { "code": "RU-ROS", - "name": "Rostovskaja oblast'", + "name": "Rostov", "type": "Administrative region" }, { "code": "RU-RYA", - "name": "Rjazanskaja oblast'", + "name": "Ryazan", "type": "Administrative region" }, { "code": "RU-SA", - "name": "Saha, Respublika", + "name": "Sakha", "type": "Republic" }, { "code": "RU-SAK", - "name": "Sahalinskaja oblast'", + "name": "Sakhalin", "type": "Administrative region" }, { "code": "RU-SAM", - "name": "Samarskaja oblast'", + "name": "Samara", "type": "Administrative region" }, { "code": "RU-SAR", - "name": "Saratovskaja oblast'", + "name": "Saratov", "type": "Administrative region" }, { "code": "RU-SE", - "name": "Severnaja Osetija, Respublika", + "name": "North Ossetia-Alania", "type": "Republic" }, { "code": "RU-SMO", - "name": "Smolenskaja oblast'", + "name": "Smolensk", "type": "Administrative region" }, { "code": "RU-SPE", - "name": "Sankt-Peterburg", + "name": "Saint Petersburg", "type": "Autonomous city" }, { "code": "RU-STA", - "name": "Stavropol'skij kraj", + "name": "Stavropol Krai", "type": "Administrative territory" }, { "code": "RU-SVE", - "name": "Sverdlovskaja oblast'", + "name": "Sverdlovsk", "type": "Administrative region" }, { "code": "RU-TA", - "name": "Tatarstan, Respublika", + "name": "Tatarstan", "type": "Republic" }, { "code": "RU-TAM", - "name": "Tambovskaja oblast'", + "name": "Tambov", "type": "Administrative region" }, { "code": "RU-TOM", - "name": "Tomskaja oblast'", + "name": "Tomsk", "type": "Administrative region" }, { "code": "RU-TUL", - "name": "Tul'skaja oblast'", + "name": "Tula", "type": "Administrative region" }, { "code": "RU-TVE", - "name": "Tverskaja oblast'", + "name": "Tver", "type": "Administrative region" }, { "code": "RU-TY", - "name": "Tyva, Respublika", + "name": "Tuva", "type": "Republic" }, { "code": "RU-TYU", - "name": "Tjumenskaja oblast'", + "name": "Tyumen", "type": "Administrative region" }, { "code": "RU-UD", - "name": "Udmurtskaja Respublika", + "name": "Udmurt", "type": "Republic" }, { "code": "RU-ULY", - "name": "Ul'janovskaja oblast'", + "name": "Ulyanovsk", "type": "Administrative region" }, { "code": "RU-VGG", - "name": "Volgogradskaja oblast'", + "name": "Volgograd", "type": "Administrative region" }, { "code": "RU-VLA", - "name": "Vladimirskaja oblast'", + "name": "Vladimir", "type": "Administrative region" }, { "code": "RU-VLG", - "name": "Vologodskaja oblast'", + "name": "Vologda", "type": "Administrative region" }, { "code": "RU-VOR", - "name": "Voronezhskaya oblast'", + "name": "Voronezh", "type": "Administrative region" }, { "code": "RU-YAN", - "name": "Jamalo-Neneckij avtonomnyj okrug", + "name": "Yamalo-Nenets Okrug", "type": "Autonomous district" }, { "code": "RU-YAR", - "name": "Jaroslavskaja oblast'", + "name": "Yaroslavl", "type": "Administrative region" }, { "code": "RU-YEV", - "name": "Evrejskaja avtonomnaja oblast'", + "name": "Jewish", "type": "Autonomous region" }, { "code": "RU-ZAB", - "name": "Zabajkal'skij kraj", + "name": "Zabaykalsky Krai", "type": "Administrative territory" }, { "code": "RW-01", - "name": "City of Kigali", + "name": "Kigali", "type": "City" }, { @@ -19392,57 +19392,57 @@ }, { "code": "SA-01", - "name": "Ar Riyāḑ", + "name": "Riyadh", "type": "Region" }, { "code": "SA-02", - "name": "Makkah al Mukarramah", + "name": "Makkah", "type": "Region" }, { "code": "SA-03", - "name": "Al Madīnah al Munawwarah", + "name": "Al Madinah", "type": "Region" }, { "code": "SA-04", - "name": "Ash Sharqīyah", + "name": "Eastern", "type": "Region" }, { "code": "SA-05", - "name": "Al Qaşīm", + "name": "Al-Qassim", "type": "Region" }, { "code": "SA-06", - "name": "Ḩā'il", + "name": "Ha’il", "type": "Region" }, { "code": "SA-07", - "name": "Tabūk", + "name": "Tabuk", "type": "Region" }, { "code": "SA-08", - "name": "Al Ḩudūd ash Shamālīyah", + "name": "Northern Borders", "type": "Region" }, { "code": "SA-09", - "name": "Jāzān", + "name": "Jizan", "type": "Region" }, { "code": "SA-10", - "name": "Najrān", + "name": "Najran", "type": "Region" }, { "code": "SA-11", - "name": "Al Bāḩah", + "name": "Al Bahah", "type": "Region" }, { @@ -19452,7 +19452,7 @@ }, { "code": "SA-14", - "name": "'Asīr", + "name": "Asir", "type": "Region" }, { @@ -19467,7 +19467,7 @@ }, { "code": "SB-CT", - "name": "Capital Territory (Honiara)", + "name": "Honiara", "type": "Capital territory" }, { @@ -19567,12 +19567,12 @@ }, { "code": "SC-13", - "name": "Grand Anse Mahe", + "name": "Grand’Anse Mahé", "type": "District" }, { "code": "SC-14", - "name": "Grand Anse Praslin", + "name": "Grand’Anse Praslin", "type": "District" }, { @@ -19582,7 +19582,7 @@ }, { "code": "SC-16", - "name": "English River", + "name": "La Rivière Anglaise", "type": "District" }, { @@ -19602,7 +19602,7 @@ }, { "code": "SC-20", - "name": "Pointe Larue", + "name": "Pointe La Rue", "type": "District" }, { @@ -19667,17 +19667,17 @@ }, { "code": "SD-GD", - "name": "Gedaref", + "name": "Al Qadarif", "type": "State" }, { "code": "SD-GK", - "name": "West Kordofan", + "name": "West Kurdufan", "type": "State" }, { "code": "SD-GZ", - "name": "Gezira", + "name": "Al Jazirah", "type": "State" }, { @@ -19692,12 +19692,12 @@ }, { "code": "SD-KN", - "name": "North Kordofan", + "name": "North Kurdufan", "type": "State" }, { "code": "SD-KS", - "name": "South Kordofan", + "name": "South Kurdufan", "type": "State" }, { @@ -19732,107 +19732,107 @@ }, { "code": "SE-AB", - "name": "Stockholms län [SE-01]", + "name": "Stockholm", "type": "County" }, { "code": "SE-AC", - "name": "Västerbottens län [SE-24]", + "name": "Västerbotten", "type": "County" }, { "code": "SE-BD", - "name": "Norrbottens län [SE-25]", + "name": "Norrbotten", "type": "County" }, { "code": "SE-C", - "name": "Uppsala län [SE-03]", + "name": "Uppsala", "type": "County" }, { "code": "SE-D", - "name": "Södermanlands län [SE-04]", + "name": "Södermanland", "type": "County" }, { "code": "SE-E", - "name": "Östergötlands län [SE-05]", + "name": "Östergötland", "type": "County" }, { "code": "SE-F", - "name": "Jönköpings län [SE-06]", + "name": "Jönköping", "type": "County" }, { "code": "SE-G", - "name": "Kronobergs län [SE-07]", + "name": "Kronoberg", "type": "County" }, { "code": "SE-H", - "name": "Kalmar län [SE-08]", + "name": "Kalmar", "type": "County" }, { "code": "SE-I", - "name": "Gotlands län [SE-09]", + "name": "Gotland", "type": "County" }, { "code": "SE-K", - "name": "Blekinge län [SE-10]", + "name": "Blekinge", "type": "County" }, { "code": "SE-M", - "name": "Skåne län [SE-12]", + "name": "Skåne", "type": "County" }, { "code": "SE-N", - "name": "Hallands län [SE-13]", + "name": "Halland", "type": "County" }, { "code": "SE-O", - "name": "Västra Götalands län [SE-14]", + "name": "Västra Götaland", "type": "County" }, { "code": "SE-S", - "name": "Värmlands län [SE-17]", + "name": "Värmland", "type": "County" }, { "code": "SE-T", - "name": "Örebro län [SE-18]", + "name": "Örebro", "type": "County" }, { "code": "SE-U", - "name": "Västmanlands län [SE-19]", + "name": "Västmanland", "type": "County" }, { "code": "SE-W", - "name": "Dalarnas län [SE-20]", + "name": "Dalarna", "type": "County" }, { "code": "SE-X", - "name": "Gävleborgs län [SE-21]", + "name": "Gävleborg", "type": "County" }, { "code": "SE-Y", - "name": "Västernorrlands län [SE-22]", + "name": "Västernorrland", "type": "County" }, { "code": "SE-Z", - "name": "Jämtlands län [SE-23]", + "name": "Jämtland", "type": "County" }, { @@ -19862,7 +19862,7 @@ }, { "code": "SH-AC", - "name": "Ascension", + "name": "Ascension Island", "type": "Geographical entity" }, { @@ -19977,7 +19977,7 @@ }, { "code": "SI-021", - "name": "Dobrova-Polhov Gradec", + "name": "Dobrova–Polhov Gradec", "type": "Municipality" }, { @@ -20007,7 +20007,7 @@ }, { "code": "SI-027", - "name": "Gorenja vas-Poljane", + "name": "Gorenja Vas–Poljane", "type": "Municipality" }, { @@ -20047,7 +20047,7 @@ }, { "code": "SI-035", - "name": "Hrpelje-Kozina", + "name": "Hrpelje–Kozina", "type": "Municipality" }, { @@ -20092,7 +20092,7 @@ }, { "code": "SI-044", - "name": "Kanal ob Soči", + "name": "Kanal", "type": "Municipality" }, { @@ -20197,7 +20197,7 @@ }, { "code": "SI-065", - "name": "Loška dolina", + "name": "Loška Dolina", "type": "Municipality" }, { @@ -20247,7 +20247,7 @@ }, { "code": "SI-075", - "name": "Miren-Kostanjevica", + "name": "Miren–Kostanjevica", "type": "Municipality" }, { @@ -20362,7 +20362,7 @@ }, { "code": "SI-098", - "name": "Rače-Fram", + "name": "Rače–Fram", "type": "Municipality" }, { @@ -20452,7 +20452,7 @@ }, { "code": "SI-116", - "name": "Sveti Jurij ob Ščavnici", + "name": "Sveti Jurij", "type": "Municipality" }, { @@ -20667,7 +20667,7 @@ }, { "code": "SI-160", - "name": "Hoče-Slivnica", + "name": "Hoče–Slivnica", "type": "Municipality" }, { @@ -20712,7 +20712,7 @@ }, { "code": "SI-169", - "name": "Miklavž na Dravskem polju", + "name": "Miklavž na Dravskem Polju", "type": "Municipality" }, { @@ -20777,12 +20777,12 @@ }, { "code": "SI-182", - "name": "Sveti Andraž v Slovenskih goricah", + "name": "Sveti Andraž v Slovenskih Goricah", "type": "Municipality" }, { "code": "SI-183", - "name": "Šempeter-Vrtojba", + "name": "Šempeter–Vrtojba", "type": "Municipality" }, { @@ -20862,7 +20862,7 @@ }, { "code": "SI-199", - "name": "Mokronog-Trebelno", + "name": "Mokronog–Trebelno", "type": "Municipality" }, { @@ -20872,7 +20872,7 @@ }, { "code": "SI-201", - "name": "Renče-Vogrsko", + "name": "Renče–Vogrsko", "type": "Municipality" }, { @@ -20887,7 +20887,7 @@ }, { "code": "SI-204", - "name": "Sveta Trojica v Slovenskih goricah", + "name": "Sveta Trojica v Slovenskih Goricah", "type": "Municipality" }, { @@ -20907,7 +20907,7 @@ }, { "code": "SI-208", - "name": "Log-Dragomer", + "name": "Log–Dragomer", "type": "Municipality" }, { @@ -20917,7 +20917,7 @@ }, { "code": "SI-210", - "name": "Sveti Jurij v Slovenskih goricah", + "name": "Sveti Jurij v Slovenskih Goricah", "type": "Municipality" }, { @@ -20937,42 +20937,42 @@ }, { "code": "SK-BC", - "name": "Banskobystrický kraj", + "name": "Banská Bystrica", "type": "Region" }, { "code": "SK-BL", - "name": "Bratislavský kraj", + "name": "Bratislava", "type": "Region" }, { "code": "SK-KI", - "name": "Košický kraj", + "name": "Košice", "type": "Region" }, { "code": "SK-NI", - "name": "Nitriansky kraj", + "name": "Nitra", "type": "Region" }, { "code": "SK-PV", - "name": "Prešovský kraj", + "name": "Prešov", "type": "Region" }, { "code": "SK-TA", - "name": "Trnavský kraj", + "name": "Trnava", "type": "Region" }, { "code": "SK-TC", - "name": "Trenčiansky kraj", + "name": "Trenčín", "type": "Region" }, { "code": "SK-ZI", - "name": "Žilinský kraj", + "name": "Žilina", "type": "Region" }, { @@ -20997,7 +20997,7 @@ }, { "code": "SL-W", - "name": "Western Area (Freetown)", + "name": "Western Area", "type": "Area" }, { @@ -21032,7 +21032,7 @@ }, { "code": "SM-07", - "name": "Città di San Marino", + "name": "San Marino", "type": "Municipality" }, { @@ -21137,7 +21137,7 @@ }, { "code": "SO-BY", - "name": "Bay", + "name": "Bay, Somalia", "type": "Region" }, { @@ -21152,17 +21152,17 @@ }, { "code": "SO-HI", - "name": "Hiiraan", + "name": "Hiran", "type": "Region" }, { "code": "SO-JD", - "name": "Jubbada Dhexe", + "name": "Middle Juba", "type": "Region" }, { "code": "SO-JH", - "name": "Jubbada Hoose", + "name": "Lower Juba", "type": "Region" }, { @@ -21172,7 +21172,7 @@ }, { "code": "SO-NU", - "name": "Nugaal", + "name": "Nugal", "type": "Region" }, { @@ -21182,12 +21182,12 @@ }, { "code": "SO-SD", - "name": "Shabeellaha Dhexe", + "name": "Middle Shebelle", "type": "Region" }, { "code": "SO-SH", - "name": "Shabeellaha Hoose", + "name": "Lower Shebelle", "type": "Region" }, { @@ -21412,37 +21412,37 @@ }, { "code": "SY-DI", - "name": "Dimashq", + "name": "Damascus", "type": "Province" }, { "code": "SY-DR", - "name": "Dar'ā", + "name": "Daraa", "type": "Province" }, { "code": "SY-DY", - "name": "Dayr az Zawr", + "name": "Deir ez-Zor", "type": "Province" }, { "code": "SY-HA", - "name": "Al Ḩasakah", + "name": "Al-Hasakah", "type": "Province" }, { "code": "SY-HI", - "name": "Ḩimş", + "name": "Homs", "type": "Province" }, { "code": "SY-HL", - "name": "Ḩalab", + "name": "Aleppo", "type": "Province" }, { "code": "SY-HM", - "name": "Ḩamāh", + "name": "Hama", "type": "Province" }, { @@ -21452,32 +21452,32 @@ }, { "code": "SY-LA", - "name": "Al Lādhiqīyah", + "name": "Latakia", "type": "Province" }, { "code": "SY-QU", - "name": "Al Qunayţirah", + "name": "Quneitra", "type": "Province" }, { "code": "SY-RA", - "name": "Ar Raqqah", + "name": "Ar-Raqqah", "type": "Province" }, { "code": "SY-RD", - "name": "Rīf Dimashq", + "name": "Rif Dimashq", "type": "Province" }, { "code": "SY-SU", - "name": "As Suwaydā'", + "name": "As-Suwayda", "type": "Province" }, { "code": "SY-TA", - "name": "Ţarţūs", + "name": "Tartus", "type": "Province" }, { @@ -21507,7 +21507,7 @@ }, { "code": "TD-BG", - "name": "Bahr el Ghazal", + "name": "Bahr el Gazel", "type": "Province" }, { @@ -21537,7 +21537,7 @@ }, { "code": "TD-HL", - "name": "Hadjer Lamis", + "name": "Hadjer-Lamis", "type": "Province" }, { @@ -21552,12 +21552,12 @@ }, { "code": "TD-LO", - "name": "Logone-Occidental", + "name": "Logone Occidental", "type": "Province" }, { "code": "TD-LR", - "name": "Logone-Oriental", + "name": "Logone Oriental", "type": "Province" }, { @@ -21572,17 +21572,17 @@ }, { "code": "TD-ME", - "name": "Mayo-Kebbi-Est", + "name": "Mayo-Kebbi Est", "type": "Province" }, { "code": "TD-MO", - "name": "Mayo-Kebbi-Ouest", + "name": "Mayo-Kebbi Ouest", "type": "Province" }, { "code": "TD-ND", - "name": "Ville de Ndjamena", + "name": "N’Djamena", "type": "Province" }, { @@ -21627,7 +21627,7 @@ }, { "code": "TG-M", - "name": "Maritime (Région)", + "name": "Maritime", "type": "Region" }, { @@ -21642,7 +21642,7 @@ }, { "code": "TH-10", - "name": "Krung Thep Maha Nakhon", + "name": "Bangkok", "type": "Metropolitan administration" }, { @@ -21672,7 +21672,7 @@ }, { "code": "TH-16", - "name": "Lop Buri", + "name": "Lopburi", "type": "Province" }, { @@ -21927,7 +21927,7 @@ }, { "code": "TH-72", - "name": "Suphan Buri", + "name": "Suphanburi", "type": "Province" }, { @@ -21967,7 +21967,7 @@ }, { "code": "TH-82", - "name": "Phangnga", + "name": "Phang Nga", "type": "Province" }, { @@ -22027,7 +22027,7 @@ }, { "code": "TH-S", - "name": "Phatthaya", + "name": "Pattaya", "type": "Special administrative city" }, { @@ -22037,7 +22037,7 @@ }, { "code": "TJ-GB", - "name": "Kŭhistoni Badakhshon", + "name": "Gorno-Badakhshan", "type": "Autonomous region" }, { @@ -22047,7 +22047,7 @@ }, { "code": "TJ-RA", - "name": "nohiyahoi tobei jumhurí", + "name": "Nohiyahoi Tobei Jumhurí", "type": "Districts under republic administration" }, { @@ -22082,7 +22082,7 @@ }, { "code": "TL-DI", - "name": "Díli", + "name": "Dili", "type": "Municipality" }, { @@ -22092,12 +22092,12 @@ }, { "code": "TL-LA", - "name": "Lautein", + "name": "Lautém", "type": "Municipality" }, { "code": "TL-LI", - "name": "Likisá", + "name": "Liquiçá", "type": "Municipality" }, { @@ -22112,12 +22112,12 @@ }, { "code": "TL-OE", - "name": "Oekusi-Ambenu", + "name": "Oecusse", "type": "Special administrative region" }, { "code": "TL-VI", - "name": "Vikeke", + "name": "Viqueque", "type": "Municipality" }, { @@ -22157,7 +22157,7 @@ }, { "code": "TN-12", - "name": "L'Ariana", + "name": "Ariana", "type": "Governorate" }, { @@ -22167,7 +22167,7 @@ }, { "code": "TN-14", - "name": "La Manouba", + "name": "Manouba", "type": "Governorate" }, { @@ -22197,7 +22197,7 @@ }, { "code": "TN-33", - "name": "Le Kef", + "name": "Kef", "type": "Governorate" }, { @@ -22252,7 +22252,7 @@ }, { "code": "TN-73", - "name": "Kébili", + "name": "Kebili", "type": "Governorate" }, { @@ -22262,7 +22262,7 @@ }, { "code": "TN-82", - "name": "Médenine", + "name": "Medenine", "type": "Governorate" }, { @@ -22272,12 +22272,12 @@ }, { "code": "TO-01", - "name": "'Eua", + "name": "ʻEua", "type": "Division" }, { "code": "TO-02", - "name": "Ha'apai", + "name": "Haʻapai", "type": "Division" }, { @@ -22292,7 +22292,7 @@ }, { "code": "TO-05", - "name": "Vava'u", + "name": "Vavaʻu", "type": "Division" }, { @@ -22462,12 +22462,12 @@ }, { "code": "TR-34", - "name": "İstanbul", + "name": "Istanbul", "type": "Province" }, { "code": "TR-35", - "name": "İzmir", + "name": "Izmir", "type": "Province" }, { @@ -22802,7 +22802,7 @@ }, { "code": "TV-NMG", - "name": "Nanumaga", + "name": "Nanumanga", "type": "Island council" }, { @@ -22822,7 +22822,7 @@ }, { "code": "TW-CYI", - "name": "Chiayi", + "name": "Chiayi County", "type": "City" }, { @@ -22832,7 +22832,7 @@ }, { "code": "TW-HSQ", - "name": "Hsinchu", + "name": "Hsinchu County", "type": "County" }, { @@ -22952,7 +22952,7 @@ }, { "code": "TZ-06", - "name": "Pemba North", + "name": "North Pemba", "type": "Region" }, { @@ -22972,12 +22972,12 @@ }, { "code": "TZ-10", - "name": "Pemba South", + "name": "South Pemba", "type": "Region" }, { "code": "TZ-11", - "name": "Zanzibar South", + "name": "Zanzibar Central/South", "type": "Region" }, { @@ -22997,7 +22997,7 @@ }, { "code": "TZ-15", - "name": "Zanzibar West", + "name": "Zanzibar Urban/West", "type": "Region" }, { @@ -23017,7 +23017,7 @@ }, { "code": "TZ-19", - "name": "Coast", + "name": "Pwani", "type": "Region" }, { @@ -23082,47 +23082,47 @@ }, { "code": "UA-05", - "name": "Vinnytska oblast", + "name": "Vinnychchyna", "type": "Region" }, { "code": "UA-07", - "name": "Volynska oblast", + "name": "Volyn", "type": "Region" }, { "code": "UA-09", - "name": "Luhanska oblast", + "name": "Luhanshchyna", "type": "Region" }, { "code": "UA-12", - "name": "Dnipropetrovska oblast", + "name": "Dnipropetrovshchyna", "type": "Region" }, { "code": "UA-14", - "name": "Donetska oblast", + "name": "Donechchyna", "type": "Region" }, { "code": "UA-18", - "name": "Zhytomyrska oblast", + "name": "Zhytomyrshchyna", "type": "Region" }, { "code": "UA-21", - "name": "Zakarpatska oblast", + "name": "Zakarpattia", "type": "Region" }, { "code": "UA-23", - "name": "Zaporizka oblast", + "name": "Zaporizhzhya", "type": "Region" }, { "code": "UA-26", - "name": "Ivano-Frankivska oblast", + "name": "Prykarpattia", "type": "Region" }, { @@ -23132,12 +23132,12 @@ }, { "code": "UA-32", - "name": "Kyivska oblast", + "name": "Kyivshchyna", "type": "Region" }, { "code": "UA-35", - "name": "Kirovohradska oblast", + "name": "Kirovohradschyna", "type": "Region" }, { @@ -23147,72 +23147,72 @@ }, { "code": "UA-43", - "name": "Avtonomna Respublika Krym", + "name": "Crimea", "type": "Republic" }, { "code": "UA-46", - "name": "Lvivska oblast", + "name": "Lvivshchyna", "type": "Region" }, { "code": "UA-48", - "name": "Mykolaivska oblast", + "name": "Mykolayivschyna", "type": "Region" }, { "code": "UA-51", - "name": "Odeska oblast", + "name": "Odeshchyna", "type": "Region" }, { "code": "UA-53", - "name": "Poltavska oblast", + "name": "Poltavshchyna", "type": "Region" }, { "code": "UA-56", - "name": "Rivnenska oblast", + "name": "Rivnenshchyna", "type": "Region" }, { "code": "UA-59", - "name": "Sumska oblast", + "name": "Sumshchyna", "type": "Region" }, { "code": "UA-61", - "name": "Ternopilska oblast", + "name": "Ternopilshchyna", "type": "Region" }, { "code": "UA-63", - "name": "Kharkivska oblast", + "name": "Kharkivshchyna", "type": "Region" }, { "code": "UA-65", - "name": "Khersonska oblast", + "name": "Khersonshchyna", "type": "Region" }, { "code": "UA-68", - "name": "Khmelnytska oblast", + "name": "Khmelnychchyna", "type": "Region" }, { "code": "UA-71", - "name": "Cherkaska oblast", + "name": "Cherkashchyna", "type": "Region" }, { "code": "UA-74", - "name": "Chernihivska oblast", + "name": "Chernihivshchyna", "type": "Region" }, { "code": "UA-77", - "name": "Chernivetska oblast", + "name": "Chernivtsi Oblast", "type": "Region" }, { @@ -23442,7 +23442,7 @@ }, { "code": "UG-220", - "name": "Bukwo", + "name": "Bukwa", "type": "District" }, { @@ -23677,12 +23677,12 @@ }, { "code": "UG-330", - "name": "Zombo", + "name": "Zombo²", "type": "District" }, { "code": "UG-331", - "name": "Omoro", + "name": "Zombo", "type": "District" }, { @@ -23917,7 +23917,7 @@ }, { "code": "UM-71", - "name": "Midway Islands", + "name": "Midway Atoll", "type": "Islands, groups of islands" }, { @@ -23997,7 +23997,7 @@ }, { "code": "US-DC", - "name": "District of Columbia", + "name": "Washington DC", "type": "District" }, { @@ -24197,7 +24197,7 @@ }, { "code": "US-UM", - "name": "United States Minor Outlying Islands", + "name": "U.S. Outlying Islands", "type": "Outlying area" }, { @@ -24212,7 +24212,7 @@ }, { "code": "US-VI", - "name": "Virgin Islands, U.S.", + "name": "U.S. Virgin Islands", "type": "Outlying area" }, { @@ -24337,22 +24337,22 @@ }, { "code": "UZ-AN", - "name": "Andijon", + "name": "Andijan", "type": "Region" }, { "code": "UZ-BU", - "name": "Buxoro", + "name": "Bukhara", "type": "Region" }, { "code": "UZ-FA", - "name": "Farg‘ona", + "name": "Fergana", "type": "Region" }, { "code": "UZ-JI", - "name": "Jizzax", + "name": "Jizzakh", "type": "Region" }, { @@ -24372,7 +24372,7 @@ }, { "code": "UZ-QR", - "name": "Qoraqalpog‘iston Respublikasi", + "name": "Karakalpakstan", "type": "Republic" }, { @@ -24392,12 +24392,12 @@ }, { "code": "UZ-TK", - "name": "Toshkent", + "name": "Tashkent", "type": "City" }, { "code": "UZ-TO", - "name": "Toshkent", + "name": "Tashkent Province", "type": "Region" }, { @@ -24437,7 +24437,7 @@ }, { "code": "VE-A", - "name": "Distrito Capital", + "name": "Capital", "type": "Capital district" }, { @@ -24542,12 +24542,12 @@ }, { "code": "VE-W", - "name": "Dependencias Federales", + "name": "Federal Dependencies", "type": "Federal dependency" }, { "code": "VE-X", - "name": "La Guaira", + "name": "Vargas", "type": "State" }, { @@ -24647,7 +24647,7 @@ }, { "code": "VN-26", - "name": "Thừa Thiên-Huế", + "name": "Thừa Thiên–Huế", "type": "Province" }, { @@ -24722,7 +24722,7 @@ }, { "code": "VN-43", - "name": "Bà Rịa - Vũng Tàu", + "name": "Bà Rịa–Vũng Tàu", "type": "Province" }, { @@ -24742,7 +24742,7 @@ }, { "code": "VN-47", - "name": "Kiến Giang", + "name": "Kiên Giang", "type": "Province" }, { @@ -24852,27 +24852,27 @@ }, { "code": "VN-CT", - "name": "Cần Thơ", + "name": "Can Tho", "type": "Municipality" }, { "code": "VN-DN", - "name": "Đà Nẵng", + "name": "Da Nang", "type": "Municipality" }, { "code": "VN-HN", - "name": "Hà Nội", + "name": "Hanoi", "type": "Municipality" }, { "code": "VN-HP", - "name": "Hải Phòng", + "name": "Haiphong", "type": "Municipality" }, { "code": "VN-SG", - "name": "Hồ Chí Minh", + "name": "Ho Chi Minh City", "type": "Municipality" }, { @@ -24882,7 +24882,7 @@ }, { "code": "VU-PAM", - "name": "Pénama", + "name": "Penama", "type": "Province" }, { @@ -24892,12 +24892,12 @@ }, { "code": "VU-SEE", - "name": "Shéfa", + "name": "Shefa", "type": "Province" }, { "code": "VU-TAE", - "name": "Taféa", + "name": "Tafea", "type": "Province" }, { @@ -24922,7 +24922,7 @@ }, { "code": "WS-AA", - "name": "A'ana", + "name": "A’ana", "type": "District" }, { @@ -24937,17 +24937,17 @@ }, { "code": "WS-FA", - "name": "Fa'asaleleaga", + "name": "Fa’asaleleaga", "type": "District" }, { "code": "WS-GE", - "name": "Gaga'emauga", + "name": "Gaga’emauga", "type": "District" }, { "code": "WS-GI", - "name": "Gagaifomauga", + "name": "Gaga’ifomauga", "type": "District" }, { @@ -24957,7 +24957,7 @@ }, { "code": "WS-SA", - "name": "Satupa'itea", + "name": "Satupa’itea", "type": "District" }, { @@ -24967,7 +24967,7 @@ }, { "code": "WS-VF", - "name": "Va'a-o-Fonoti", + "name": "Va’a-o-Fonoti", "type": "District" }, { @@ -24982,42 +24982,42 @@ }, { "code": "YE-AD", - "name": "‘Adan", + "name": "’Adan", "type": "Governorate" }, { "code": "YE-AM", - "name": "‘Amrān", + "name": "Amran", "type": "Governorate" }, { "code": "YE-BA", - "name": "Al Bayḑā’", + "name": "Al Bayda", "type": "Governorate" }, { "code": "YE-DA", - "name": "Aḑ Ḑāli‘", + "name": "Dhale", "type": "Governorate" }, { "code": "YE-DH", - "name": "Dhamār", + "name": "Dhamar", "type": "Governorate" }, { "code": "YE-HD", - "name": "Ḩaḑramawt", + "name": "Hadramaut", "type": "Governorate" }, { "code": "YE-HJ", - "name": "Ḩajjah", + "name": "Hajjah", "type": "Governorate" }, { "code": "YE-HU", - "name": "Al Ḩudaydah", + "name": "Al Hudaydah", "type": "Governorate" }, { @@ -25032,7 +25032,7 @@ }, { "code": "YE-LA", - "name": "Laḩij", + "name": "Lahij", "type": "Governorate" }, { @@ -25047,7 +25047,7 @@ }, { "code": "YE-MW", - "name": "Al Maḩwīt", + "name": "Al Mahwit", "type": "Governorate" }, { @@ -25057,12 +25057,12 @@ }, { "code": "YE-SA", - "name": "Amānat al ‘Āşimah [city]", + "name": "Amanat Al Asimah", "type": "Municipality" }, { "code": "YE-SD", - "name": "Şāʻdah", + "name": "Sa’dah", "type": "Governorate" }, { @@ -25072,17 +25072,17 @@ }, { "code": "YE-SN", - "name": "Şanʻā’", + "name": "Sana’a", "type": "Governorate" }, { "code": "YE-SU", - "name": "Arkhabīl Suquţrá", + "name": "Arkhabil Suqutra", "type": "Governorate" }, { "code": "YE-TA", - "name": "Tāʻizz", + "name": "Taiz", "type": "Governorate" }, { @@ -25102,7 +25102,7 @@ }, { "code": "ZA-KZN", - "name": "Kwazulu-Natal", + "name": "KwaZulu-Natal", "type": "Province" }, { @@ -25122,7 +25122,7 @@ }, { "code": "ZA-NW", - "name": "North-West", + "name": "North West", "type": "Province" }, { diff --git a/test/location_test.exs b/test/location_test.exs index 006db94..4393ac0 100644 --- a/test/location_test.exs +++ b/test/location_test.exs @@ -77,12 +77,12 @@ defmodule LocationTest do assert Location.get_subdivision("JP-21").name == "Gifu" # MW - assert Location.get_subdivision("MW-C").name == "Central Region" + assert Location.get_subdivision("MW-C").name == "Central" assert Location.get_subdivision("MW-BA").name == "Balaka" # FJ assert Location.get_subdivision("FJ-03").name == "Cakaudrove" - assert Location.get_subdivision("FJ-08").name == "Nadroga and Navosa" + assert Location.get_subdivision("FJ-08").name == "Nadroga-Navosa" assert Location.get_subdivision("FJ-C").name == "Central" # GH