diff --git a/.env.example b/.env.example
index a65aa24..680309b 100644
--- a/.env.example
+++ b/.env.example
@@ -94,3 +94,16 @@ DEPLOYER_SENTRY_TOKEN=50b88fxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
DEPLOYER_SENTRY_ORG=wayofdev
DEPLOYER_SENTRY_PROJECT=laravel-cycle-starter-tpl
DEPLOYER_SENTRY_SERVER=https://wayofdev.sentry.io
+
+#######################################
+# Authentication
+#######################################
+AUTH0_ADMIN_DOMAIN=dev-xxx.us.auth0.com
+AUTH0_ADMIN_CLIENT_ID=XXX
+AUTH0_ADMIN_CLIENT_SECRET=XXX
+AUTH0_ADMIN_AUDIENCE=http://api.prod.xxx.io/api/admin
+
+AUTH0_PUBLIC_DOMAIN=dev-xxx.us.auth0.com
+AUTH0_PUBLIC_CLIENT_ID=YYY
+AUTH0_PUBLIC_CLIENT_SECRET=YYY
+AUTH0_PUBLIC_AUDIENCE=http://api.prod.xxx.io/api/public
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 44705d9..02f06de 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -19,7 +19,7 @@ jobs:
fail-fast: true
matrix:
os: ["ubuntu-22.04"]
- php: ["8.1", "8.2"]
+ php: ["8.2"]
steps:
- name: ๐ฆ Check out the codebase
@@ -29,7 +29,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- extensions: dom, curl, libxml, mbstring, zip, fileinfo, xdebug
+ extensions: curl, mbstring, zip, fileinfo, xdebug, decimal
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: xdebug
@@ -46,6 +46,13 @@ jobs:
path: vendor
key: vendor-${{ runner.os }}-${{ hashFiles('**/composer.lock') }}-${{ matrix.php }}
+ - name: โป๏ธ Restore cached .build directory
+ id: cached-build-dir
+ uses: actions/cache@v3
+ with:
+ path: .build
+ key: build-${{ runner.os }}-${{ hashFiles('**/composer.lock') }}-${{ matrix.php }}
+
- name: ๐ฅ Install backend dependencies
if: steps.cached-composer-dependencies.outputs.cache-hit != 'true'
run: composer install
@@ -70,15 +77,16 @@ jobs:
run: php artisan storage:link
- name: ๐ Run coding standards task
- run: |
- composer run cs:diff
+ run: composer run cs:diff
- name: ๐ Run static analysis using phpstan
- run: |
- composer run stan
+ run: composer run stan
env:
PHPSTAN_OUTPUT_FORMAT: github
+ - name: ๐ Run dependency tracking analysis using deptrac
+ run: composer run deptrac:ci
+
- name: ๐งช Execute phpunit and pest tests
run: |
composer run test:cc
diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml
index 06f4941..1a04a8b 100644
--- a/.github/workflows/deploy-release.yml
+++ b/.github/workflows/deploy-release.yml
@@ -14,7 +14,7 @@ jobs:
fail-fast: true
matrix:
os: ["ubuntu-22.04"]
- php: ["8.1"]
+ php: ["8.2"]
environment:
name: production
url: https://prod.laravel-cycle-starter-tpl.wayof.dev
@@ -29,7 +29,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- extensions: dom, curl, libxml, mbstring, zip, fileinfo
+ extensions: curl, libxml, mbstring, zip, fileinfo, decimal
ini-values: error_reporting=E_ALL
tools: composer:v2
diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml
index c95ea29..524cd99 100644
--- a/.github/workflows/deploy-staging.yml
+++ b/.github/workflows/deploy-staging.yml
@@ -14,7 +14,7 @@ jobs:
fail-fast: true
matrix:
os: ["ubuntu-22.04"]
- php: ["8.1"]
+ php: ["8.2"]
environment:
name: staging
url: https://staging.laravel-cycle-starter-tpl.wayof.dev
@@ -29,7 +29,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- extensions: dom, curl, libxml, mbstring, zip, fileinfo
+ extensions: curl, libxml, mbstring, zip, fileinfo, decimal
ini-values: error_reporting=E_ALL
tools: composer:v2
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 7b0ea70..aa54c14 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -7,6 +7,7 @@ repos:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-added-large-files
+ args: ['--maxkb=2048']
- id: fix-encoding-pragma
- repo: https://github.com/commitizen-tools/commitizen
diff --git a/Makefile b/Makefile
index 0361c3f..a360f5a 100644
--- a/Makefile
+++ b/Makefile
@@ -178,6 +178,10 @@ lint-stan:
$(APP_COMPOSER) run-script stan
.PHONY: lint-stan
+lint-deps:
+ $(APP_COMPOSER) run-script deptrac
+.PHONY: lint-deps
+
test: ## Run project php-unit and pest tests
$(APP_COMPOSER) test
.PHONY: test
@@ -186,6 +190,14 @@ test-cc: ## Run project php-unit and pest tests in coverage mode and build repor
$(APP_COMPOSER) test:cc
.PHONY: test-cc
+api-docs-public: ## Generate openapi docs specification file for public api
+ $(APP_EXEC) php artisan open-docs:generate public
+.PHONY: api-docs-public
+
+api-docs-admin: ## Generate openapi docs specification file for admin api
+ $(APP_EXEC) php artisan open-docs:generate admin
+.PHONY: api-docs-admin
+
# Composer Commands
# ------------------------------------------------------------------------------------
@@ -197,11 +209,38 @@ update: ## Update composer dependencies
$(APP_COMPOSER) update $(package)
.PHONY: update
+du: ## Dump composer autoload
+ $(APP_COMPOSER) dump-autoload
+.PHONY: du
+
show: ## Shows information about installed composer packages
$(APP_COMPOSER) show
.PHONY: show
+# Database Commands
+# ------------------------------------------------------------------------------------
+db-wipe: ## Wipe database
+ $(APP_EXEC) php artisan db:wipe
+.PHONY: db-wipe
+
+db-refresh: ## Delete migration files, wipe database, create new migrations, run them and seed database
+ rm ./app/database/migrations/cycle/* || true
+ $(APP_EXEC) php artisan cache:clear
+ $(APP_EXEC) php artisan db:wipe
+ $(APP_EXEC) php artisan cycle:orm:migrate
+ $(APP_EXEC) php artisan cycle:migrate
+ $(APP_EXEC) php artisan db:seed -vvv
+.PHONY: db-refresh
+
+
+# Authentication Commands
+# ------------------------------------------------------------------------------------
+auth0-get: ## Install auth0 cli
+ $(APP_EXEC) curl -sSfL https://raw.githubusercontent.com/auth0/auth0-cli/main/install.sh | sh -s -- -b .
+.PHONY: auth0-get
+
+
# Deployer Commands
# ------------------------------------------------------------------------------------
dep-staging:
diff --git a/README.md b/README.md
index 0a95a47..5f97e4a 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@
-# Laravel Starter Template
+# Laravel Cycle ORM Starter Template
This is an **opinionated** modified version of the Laravel framework which aims at providing a Domain-Driven Design (DDD) structure and using [CycleORM](https://cycle-orm.dev) instead of Eloquent.
@@ -157,12 +157,13 @@ Useful resources about Laravel and DDD approach:
* [Laravel Beyond CRUD](https://spatie.be/products/laravel-beyond-crud)
* [Laravel Skeleton](https://romanzipp.github.io/Laravel-Skeleton/) by [romanzipp](https://github.com/romanzipp)
+* [Using Deptrac to maintain code quality](https://getparthenon.com/blog/using-deptrac-to-maintain-code-quality/)
## ๐๐ผโโ๏ธ Author Information
-This repository was created in **2022** by [lotyp / wayofdev](https://github.com/wayofdev).
+This repository was created in **2023** by [lotyp / wayofdev](https://github.com/wayofdev).
@@ -177,3 +178,91 @@ We are open to all kinds of contributions. If you want to:
- ๐จโ๐ป Contribute to the code
+
+## ๐งฐ Project Architecture
+
+This project uses Domain-Driven Design (DDD) principles and is structured into four main layers: Domain, Application, Bridge, and Infrastructure. Each layer has specific responsibilities and dependencies, as described below.
+
+### โ Layers
+
+* **Domain:**
+
+ The Domain layer is the core of our business software, and it encapsulates the business rules. This involves entities, value objects, aggregates, events, and domain services.
+
+ The Domain layer does not depend on any other layer, thereby preserving the integrity and independence of the business logic.
+
+* **Application:**
+
+ The Application layer orchestrates the coordination of domain objects to perform specific use cases of our application. This includes things like application services and command/query handlers.
+
+ This layer depends on the Domain layer for business rules and the Infrastructure layer for technical capabilities.
+
+* **Bridge:**
+
+ The Bridge layer is the adapter that allows our application to interact with the outside world. It uses Laravel to route HTTP requests or console commands to the corresponding Application layer use case.
+
+ This layer depends on the Application layer, Domain layer, and Infrastructure layer. It uses the Application layer to orchestrate operations, the Domain layer for domain knowledge, and the Infrastructure layer for technical capabilities.
+
+* **Infrastructure:**
+
+ The Infrastructure layer provides generic technical capabilities to support the higher layers. This includes things like database access, file system access, and other technical concerns.
+
+ This layer can depend on the Domain layer, meaning it can use domain entities, value objects, or services when implementing its technical concerns.
+
+For more information check [deptrac.yaml](https://github.com/wayofdev/laravel-cycle-starter-tpl/blob/develop/app/deptrac.yaml) located in repository `app` folder.
+
+### โ Architecture Rules
+
+These layer dependencies are enforced using the Deptrac tool, which checks the codebase for violations of our architecture rules. The rules are defined in the [deptrac.yaml](https://github.com/wayofdev/laravel-cycle-starter-tpl/blob/develop/app/deptrac.yaml) file and specify that:
+
+- The **Domain** layer **does not** depend on any other layer.
+- The **Application** layer **depends** on the **Domain** and **Infrastructure** layers.
+- The **Bridge** layer depends on the **Domain**, **Application**, and **Infrastructure** layers.
+- The **Infrastructure** layer depends on the **Domain** layer.
+
+By adhering to these rules, we can ensure a clean separation of concerns in our application, with the business logic (Domain) kept separate from use case orchestration (Application), communication with the outside world (Bridge), and technical concerns (Infrastructure).
+
+### โ Dependency Tracking using Deptrac
+
+We use Deptrac to enforce a clean architecture within our codebase. Deptrac helps us adhere to the principles of layered architecture by defining and checking rules that describe which parts of our code can depend on others.
+
+Deptrac operates on the level of PHP classes, analyzing the dependencies between them and comparing them to the architecture rules defined in [deptrac.yaml](https://github.com/wayofdev/laravel-cycle-starter-tpl/blob/develop/app/deptrac.yaml). If a class has a dependency that violates these rules, Deptrac will alert us.
+
+Using Deptrac allows us to ensure a clean separation of concerns in our codebase, making it easier to understand, test, and maintain.
+
+* To generate images from deptrac dependency `graphviz` needs to be installed on your system:
+
+ ```bash
+ $ brew install graphviz
+ ```
+
+* Running deptrac
+
+ To run Deptrac and check for violations of our architecture rules, you can use one of the following commands:
+
+ ```bash
+ $ make lint-deps
+ ```
+
+ or navigate to the repository's app directory and execute:
+
+ ```bash
+ $ cd app
+ $ composer deptrac
+ ```
+
+ This will run Deptrac and report any violations in the console output.
+
+ To create a visual graph of our dependencies, you can run:
+
+ ```bash
+ $ composer deptrac:gv
+ ```
+
+ This command will generate an image in the `assets` directory.
+
+### โ Architecture Diagram
+
+
+
+
diff --git a/app/bootstrap/app.php b/app/bootstrap/app.php
index 81bae39..a4241bf 100644
--- a/app/bootstrap/app.php
+++ b/app/bootstrap/app.php
@@ -28,12 +28,12 @@
$app->singleton(
Illuminate\Contracts\Http\Kernel::class,
- Laravel\Http\Kernel::class
+ Laravel\HttpKernel::class
);
$app->singleton(
Illuminate\Contracts\Console\Kernel::class,
- Laravel\Console\Kernel::class
+ Laravel\ConsoleKernel::class
);
$app->singleton(
diff --git a/app/composer.json b/app/composer.json
index af40a44..1f9436d 100644
--- a/app/composer.json
+++ b/app/composer.json
@@ -1,32 +1,48 @@
{
- "name": "laravel/laravel",
+ "name": "wayofdev/laravel-cycle-starter-tpl",
"type": "project",
- "description": "The Laravel Framework.",
- "keywords": ["framework", "laravel"],
+ "description": "Laravel backend application template for building APIs with CycleORM support.",
+ "keywords": ["php", "boilerplate", "laravel", "cycle", "cycleorm", "api", "backend", "starter", "template"],
"license": "MIT",
"require": {
+ "php": "^8.2",
"ext-pdo": "*",
- "php": "^8.1",
- "guzzlehttp/guzzle": "^7.2",
- "laravel/framework": "^10.8",
- "laravel/tinker": "^2.8",
- "sentry/sentry-laravel": "^3.3",
+ "auth0/login": "^7.9",
+ "beberlei/assert": "^3.3",
+ "cycle/annotated": "^3.3",
"deployer/deployer": "^7.3",
- "wayofdev/laravel-cycle-orm-adapter": "*"
+ "eventsauce/eventsauce": "^3.4",
+ "guzzlehttp/guzzle": "^7.7",
+ "laravel/framework": "^10.14",
+ "laravel/tinker": "^2.8",
+ "lcobucci/clock": "^3.1",
+ "ramsey/uuid": "^4.7",
+ "sentry/sentry-laravel": "^3.6",
+ "spatie/laravel-route-attributes": "^1.18",
+ "wayofdev/laravel-cycle-orm-adapter": "*",
+ "wayofdev/laravel-cycle-orm-event-sourcing": "^1.2",
+ "wayofdev/laravel-open-docs": "^2.0",
+ "wayofdev/laravel-paginator": "^1.2",
+ "wayofdev/laravel-request-query-builder": "^1.3",
+ "wayofdev/laravel-symfony-serializer": "^1.1",
+ "zircote/swagger-php": "^4.7"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.31",
- "fakerphp/faker": "^1.9.1",
- "mockery/mockery": "^1.4.4",
- "nunomaduro/collision": "^7.0",
+ "fakerphp/faker": "^1.23",
+ "mockery/mockery": "^1.6",
+ "nunomaduro/collision": "^7.7",
"nunomaduro/larastan": "^2.6",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1",
- "phpunit/phpunit": "^10.1",
+ "phpunit/phpunit": "^10.2",
+ "qossmic/deptrac-shim": "^1.0",
+ "rinvex/countries": "^9.0",
"roave/security-advisories": "dev-latest",
- "spatie/laravel-ignition": "^2.0",
- "wayofdev/cs-fixer-config": "^1.2"
+ "spatie/laravel-ignition": "^2.2",
+ "wayofdev/cs-fixer-config": "^1.2",
+ "wayofdev/laravel-cycle-orm-factories": "^1.1"
},
"autoload": {
"psr-4": {
@@ -59,9 +75,12 @@
],
"cs:fix": "php vendor/bin/php-cs-fixer fix -v",
"cs:diff": "php vendor/bin/php-cs-fixer fix --dry-run -v --diff",
- "test": "php vendor/bin/pest",
- "test:cc": "XDEBUG_MODE=coverage php vendor/bin/pest --coverage-clover coverage.xml",
- "stan": "php vendor/bin/phpstan analyse --memory-limit=2G"
+ "test": "php vendor/bin/pest --colors=always",
+ "test:cc": "XDEBUG_MODE=coverage php vendor/bin/pest --colors=always --coverage-clover coverage.xml",
+ "stan": "php vendor/bin/phpstan analyse --memory-limit=2G",
+ "deptrac": "php vendor/bin/deptrac analyse --config-file=deptrac.yaml -v --cache-file=.build/.deptrac.cache",
+ "deptrac:ci": "php vendor/bin/deptrac analyse --config-file=deptrac.yaml -v --cache-file=.build/.deptrac.cache --formatter github-actions",
+ "deptrac:gv": "php vendor/bin/deptrac analyse --config-file=deptrac.yaml -v --cache-file=.build/.deptrac.cache --formatter graphviz-image --output ../assets/deptrac.svg"
},
"extra": {
"laravel": {
@@ -83,6 +102,6 @@
"phpstan/extension-installer": true
}
},
- "minimum-stability": "stable",
+ "minimum-stability": "dev",
"prefer-stable": true
}
diff --git a/app/composer.lock b/app/composer.lock
index 73c2d73..0befdd4 100644
--- a/app/composer.lock
+++ b/app/composer.lock
@@ -4,8 +4,283 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "7d28242b89bfc508cc335bcd019e6d16",
+ "content-hash": "ea0b4eded5e83eaca831abeecce5d080",
"packages": [
+ {
+ "name": "auth0/auth0-php",
+ "version": "8.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/auth0/auth0-PHP.git",
+ "reference": "b776758d6ead42aac4ce2959c34c2aa2bd5af0d4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/auth0/auth0-PHP/zipball/b776758d6ead42aac4ce2959c34c2aa2bd5af0d4",
+ "reference": "b776758d6ead42aac4ce2959c34c2aa2bd5af0d4",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "php": "^8.0",
+ "php-http/multipart-stream-builder": "^1.2",
+ "psr-discovery/all": "^1.0",
+ "psr/http-client-implementation": "^1.0",
+ "psr/http-factory-implementation": "^1.0",
+ "psr/http-message-implementation": "^1.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.14",
+ "mockery/mockery": "^1.5",
+ "pestphp/pest": "^2.0",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "psr-mock/http": "^1.0",
+ "rector/rector": "^0.15",
+ "symfony/cache": "^4.4 || ^5.0 || ^6.0",
+ "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
+ "vimeo/psalm": "^5.8",
+ "wikimedia/composer-merge-plugin": "^2.0"
+ },
+ "suggest": {
+ "psr/cache-implementation": "(PSR-6 Cache) Improve performance by avoiding making redundant network requests.",
+ "psr/event-dispatcher-implementation": "(PSR-14 Event Dispatcher) Observe and react to events when they occur."
+ },
+ "type": "library",
+ "extra": {
+ "merge-plugin": {
+ "ignore-duplicates": false,
+ "include": [
+ "composer.local.json"
+ ],
+ "merge-dev": true,
+ "merge-extra": false,
+ "merge-extra-deep": false,
+ "merge-scripts": false,
+ "recurse": true,
+ "replace": true
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Auth0\\SDK\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Auth0",
+ "email": "support@auth0.com",
+ "homepage": "https://auth0.com/"
+ }
+ ],
+ "description": "PHP SDK for Auth0 Authentication and Management APIs.",
+ "homepage": "https://github.com/auth0/auth0-PHP",
+ "keywords": [
+ "Authentication",
+ "JSON Web Token",
+ "JWK",
+ "OpenId",
+ "api",
+ "auth",
+ "auth0",
+ "authorization",
+ "json web key",
+ "jwt",
+ "login",
+ "oauth",
+ "protect",
+ "secure"
+ ],
+ "support": {
+ "issues": "https://github.com/auth0/auth0-PHP/issues",
+ "source": "https://github.com/auth0/auth0-PHP/tree/8.6.0"
+ },
+ "time": "2023-05-02T17:21:37+00:00"
+ },
+ {
+ "name": "auth0/login",
+ "version": "7.9.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/auth0/laravel-auth0.git",
+ "reference": "5e3fc3f62bc1784a57c4d565125380416a36dafc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/auth0/laravel-auth0/zipball/5e3fc3f62bc1784a57c4d565125380416a36dafc",
+ "reference": "5e3fc3f62bc1784a57c4d565125380416a36dafc",
+ "shasum": ""
+ },
+ "require": {
+ "auth0/auth0-php": "^8.6",
+ "ext-json": "*",
+ "illuminate/contracts": "^9 || ^10",
+ "illuminate/http": "^9 || ^10",
+ "illuminate/support": "^9 || ^10",
+ "php": "^8.0",
+ "psr-discovery/all": "^1",
+ "psr/cache": "^2 || ^3"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3",
+ "mockery/mockery": "^1",
+ "nunomaduro/larastan": "^2",
+ "orchestra/testbench": "^7 || ^8",
+ "pestphp/pest": "^2",
+ "pestphp/pest-plugin-laravel": "^2",
+ "phpstan/phpstan": "^1",
+ "phpstan/phpstan-strict-rules": "^1",
+ "psalm/plugin-laravel": "^2",
+ "psr-mock/http": "^1",
+ "rector/rector": "0.17.0",
+ "spatie/laravel-ray": "^1",
+ "squizlabs/php_codesniffer": "^3",
+ "symfony/cache": "^6",
+ "vimeo/psalm": "^5",
+ "wikimedia/composer-merge-plugin": "^2"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "aliases": {
+ "Auth0": "Auth0\\Laravel\\Facade\\Auth0"
+ },
+ "providers": [
+ "Auth0\\Laravel\\ServiceProvider"
+ ]
+ },
+ "merge-plugin": {
+ "ignore-duplicates": false,
+ "include": [
+ "composer.local.json"
+ ],
+ "merge-dev": true,
+ "merge-extra": false,
+ "merge-extra-deep": false,
+ "merge-scripts": false,
+ "recurse": true,
+ "replace": true
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Auth0\\Laravel\\": [
+ "src/",
+ "deprecated/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Auth0",
+ "email": "support@auth0.com",
+ "homepage": "https://auth0.com/"
+ }
+ ],
+ "description": "Auth0 Laravel SDK. Straight-forward and tested methods for implementing authentication, and accessing Auth0's Management API endpoints.",
+ "homepage": "https://github.com/auth0/laravel-auth0",
+ "keywords": [
+ "Authentication",
+ "JSON Web Token",
+ "JWK",
+ "OpenId",
+ "api",
+ "auth",
+ "auth0",
+ "authorization",
+ "json web key",
+ "jwt",
+ "laravel",
+ "login",
+ "oauth",
+ "protect",
+ "secure"
+ ],
+ "support": {
+ "email": "support@auth0.com",
+ "forum": "https://community.auth0.com",
+ "issues": "https://github.com/auth0/laravel-auth0/issues",
+ "source": "https://github.com/auth0/laravel-auth0"
+ },
+ "time": "2023-06-21T19:46:21+00:00"
+ },
+ {
+ "name": "beberlei/assert",
+ "version": "v3.3.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/beberlei/assert.git",
+ "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/beberlei/assert/zipball/cb70015c04be1baee6f5f5c953703347c0ac1655",
+ "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655",
+ "shasum": ""
+ },
+ "require": {
+ "ext-ctype": "*",
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "ext-simplexml": "*",
+ "php": "^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "*",
+ "phpstan/phpstan": "*",
+ "phpunit/phpunit": ">=6.0.0",
+ "yoast/phpunit-polyfills": "^0.1.0"
+ },
+ "suggest": {
+ "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "lib/Assert/functions.php"
+ ],
+ "psr-4": {
+ "Assert\\": "lib/Assert"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-2-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de",
+ "role": "Lead Developer"
+ },
+ {
+ "name": "Richard Quadling",
+ "email": "rquadling@gmail.com",
+ "role": "Collaborator"
+ }
+ ],
+ "description": "Thin assertion library for input validation in business models.",
+ "keywords": [
+ "assert",
+ "assertion",
+ "validation"
+ ],
+ "support": {
+ "issues": "https://github.com/beberlei/assert/issues",
+ "source": "https://github.com/beberlei/assert/tree/v3.3.2"
+ },
+ "time": "2021-12-16T21:41:27+00:00"
+ },
{
"name": "brick/math",
"version": "0.11.0",
@@ -127,6 +402,87 @@
],
"time": "2022-02-21T13:15:14+00:00"
},
+ {
+ "name": "composer/semver",
+ "version": "3.3.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/semver.git",
+ "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
+ "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.2 || ^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.4",
+ "symfony/phpunit-bridge": "^4.2 || ^5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\Semver\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nils Adermann",
+ "email": "naderman@naderman.de",
+ "homepage": "http://www.naderman.de"
+ },
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ },
+ {
+ "name": "Rob Bast",
+ "email": "rob.bast@gmail.com",
+ "homepage": "http://robbast.nl"
+ }
+ ],
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
+ "keywords": [
+ "semantic",
+ "semver",
+ "validation",
+ "versioning"
+ ],
+ "support": {
+ "irc": "irc://irc.freenode.org/composer",
+ "issues": "https://github.com/composer/semver/issues",
+ "source": "https://github.com/composer/semver/tree/3.3.2"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-04-01T19:23:25+00:00"
+ },
{
"name": "cycle/annotated",
"version": "v3.3.0",
@@ -280,16 +636,16 @@
},
{
"name": "cycle/orm",
- "version": "v2.3.1",
+ "version": "v2.3.2",
"source": {
"type": "git",
"url": "https://github.com/cycle/orm.git",
- "reference": "86c1adccbd41dbae7a2157a1476093c7a96d54e8"
+ "reference": "15ea9c0ea0a7841d2483e55584312d6c183da20a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/cycle/orm/zipball/86c1adccbd41dbae7a2157a1476093c7a96d54e8",
- "reference": "86c1adccbd41dbae7a2157a1476093c7a96d54e8",
+ "url": "https://api.github.com/repos/cycle/orm/zipball/15ea9c0ea0a7841d2483e55584312d6c183da20a",
+ "reference": "15ea9c0ea0a7841d2483e55584312d6c183da20a",
"shasum": ""
},
"require": {
@@ -321,7 +677,7 @@
"description": "PHP DataMapper ORM and Data Modelling Engine",
"support": {
"issues": "https://github.com/cycle/orm/issues",
- "source": "https://github.com/cycle/orm/tree/v2.3.1"
+ "source": "https://github.com/cycle/orm/tree/v2.3.2"
},
"funding": [
{
@@ -329,7 +685,7 @@
"type": "github"
}
],
- "time": "2023-05-01T11:08:56+00:00"
+ "time": "2023-06-19T21:41:40+00:00"
},
{
"name": "cycle/schema-builder",
@@ -1018,37 +1374,31 @@
"time": "2023-01-14T14:17:03+00:00"
},
{
- "name": "fruitcake/php-cors",
- "version": "v1.2.0",
+ "name": "eventsauce/clock",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/fruitcake/php-cors.git",
- "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
+ "url": "https://github.com/EventSaucePHP/Clock.git",
+ "reference": "0b740928a2bdbcbec836c912d9bee22b0c58ddb0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
- "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
+ "url": "https://api.github.com/repos/EventSaucePHP/Clock/zipball/0b740928a2bdbcbec836c912d9bee22b0c58ddb0",
+ "reference": "0b740928a2bdbcbec836c912d9bee22b0c58ddb0",
"shasum": ""
},
"require": {
- "php": "^7.4|^8.0",
- "symfony/http-foundation": "^4.4|^5.4|^6"
+ "php": "^8.0"
},
"require-dev": {
- "phpstan/phpstan": "^1.4",
- "phpunit/phpunit": "^9",
- "squizlabs/php_codesniffer": "^3.5"
+ "friendsofphp/php-cs-fixer": "^2.18.4",
+ "phpstan/phpstan": "^0.12.82",
+ "phpunit/phpunit": "^9.4"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.1-dev"
- }
- },
"autoload": {
"psr-4": {
- "Fruitcake\\Cors\\": "src/"
+ "EventSauce\\Clock\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1057,44 +1407,238 @@
],
"authors": [
{
- "name": "Fruitcake",
- "homepage": "https://fruitcake.nl"
- },
- {
- "name": "Barryvdh",
- "email": "barryvdh@gmail.com"
+ "name": "Frank de Jonge",
+ "email": "info@frenky.net"
}
],
- "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
- "homepage": "https://github.com/fruitcake/php-cors",
+ "description": "Consume time from a Clock",
"keywords": [
- "cors",
- "laravel",
- "symfony"
+ "EventSauce",
+ "clock",
+ "time"
],
"support": {
- "issues": "https://github.com/fruitcake/php-cors/issues",
- "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
+ "issues": "https://github.com/EventSaucePHP/Clock/issues",
+ "source": "https://github.com/EventSaucePHP/Clock/tree/1.1.0"
},
"funding": [
{
- "url": "https://fruitcake.nl",
- "type": "custom"
- },
- {
- "url": "https://github.com/barryvdh",
+ "url": "https://github.com/frankdejonge",
"type": "github"
}
],
- "time": "2022-02-20T15:07:15+00:00"
+ "time": "2022-05-31T07:45:06+00:00"
},
{
- "name": "graham-campbell/result-type",
- "version": "v1.1.1",
+ "name": "eventsauce/eventsauce",
+ "version": "3.4.0",
"source": {
"type": "git",
- "url": "https://github.com/GrahamCampbell/Result-Type.git",
- "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
+ "url": "https://github.com/EventSaucePHP/EventSauce.git",
+ "reference": "a9231caa15f3bb129bb1502a2765d29a710fa696"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/EventSaucePHP/EventSauce/zipball/a9231caa15f3bb129bb1502a2765d29a710fa696",
+ "reference": "a9231caa15f3bb129bb1502a2765d29a710fa696",
+ "shasum": ""
+ },
+ "require": {
+ "eventsauce/clock": "^1.0",
+ "eventsauce/object-hydrator": "^0.4.2 | ^0.5 | ^1.0.0",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.0",
+ "nikic/php-parser": "^v4.10.4",
+ "pestphp/pest": "^1.23",
+ "phpstan/phpstan": "^1.8.6",
+ "phpunit/phpunit": "^9.5.23|^10.0",
+ "ramsey/uuid": "^4.0",
+ "symfony/yaml": "^5.0 | ^6.0"
+ },
+ "suggest": {
+ "eventsauce/code-generation": "Code generation for EventSauce",
+ "eventsauce/doctrine-message-repository": "Doctrine implementation of the message repository",
+ "eventsauce/test-utilities": "Base test tooling for testing aggregates"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-version/2.0": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "EventSauce\\EventSourcing\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frenky.net"
+ }
+ ],
+ "description": "A pragmatic event sourcing library for PHP with a focus on developer experience.",
+ "homepage": "https://eventsauce.io/",
+ "support": {
+ "issues": "https://github.com/EventSaucePHP/EventSauce/issues",
+ "source": "https://github.com/EventSaucePHP/EventSauce/tree/3.4.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/frankdejonge",
+ "type": "github"
+ }
+ ],
+ "time": "2023-05-14T09:41:34+00:00"
+ },
+ {
+ "name": "eventsauce/object-hydrator",
+ "version": "1.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/EventSaucePHP/ObjectHydrator.git",
+ "reference": "2368fbee8a7ca788f4f97d7ba1fb9a2db130a2b8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/EventSaucePHP/ObjectHydrator/zipball/2368fbee8a7ca788f4f97d7ba1fb9a2db130a2b8",
+ "reference": "2368fbee8a7ca788f4f97d7ba1fb9a2db130a2b8",
+ "shasum": ""
+ },
+ "require": {
+ "ext-fileinfo": "*",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.4",
+ "league/construct-finder": "^1.1",
+ "phpbench/phpbench": "^1.2",
+ "phpstan/phpstan": "^1.7",
+ "phpunit/phpunit": "^9.5.11",
+ "ramsey/uuid": "^4.2"
+ },
+ "suggest": {
+ "league/construct-finder": "Find all classes in a directory for the best dumped hydrators."
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "EventSauce\\ObjectHydrator\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frankdejonge.nl"
+ }
+ ],
+ "description": "Converts structured data into strict objects.",
+ "keywords": [
+ "construction",
+ "constructor",
+ "hydration",
+ "mapper"
+ ],
+ "support": {
+ "issues": "https://github.com/EventSaucePHP/ObjectHydrator/issues",
+ "source": "https://github.com/EventSaucePHP/ObjectHydrator/tree/1.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/frankdejonge",
+ "type": "github"
+ }
+ ],
+ "time": "2023-06-24T13:06:09+00:00"
+ },
+ {
+ "name": "fruitcake/php-cors",
+ "version": "v1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/fruitcake/php-cors.git",
+ "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
+ "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4|^8.0",
+ "symfony/http-foundation": "^4.4|^5.4|^6"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.4",
+ "phpunit/phpunit": "^9",
+ "squizlabs/php_codesniffer": "^3.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.1-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Fruitcake\\Cors\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fruitcake",
+ "homepage": "https://fruitcake.nl"
+ },
+ {
+ "name": "Barryvdh",
+ "email": "barryvdh@gmail.com"
+ }
+ ],
+ "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
+ "homepage": "https://github.com/fruitcake/php-cors",
+ "keywords": [
+ "cors",
+ "laravel",
+ "symfony"
+ ],
+ "support": {
+ "issues": "https://github.com/fruitcake/php-cors/issues",
+ "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://fruitcake.nl",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/barryvdh",
+ "type": "github"
+ }
+ ],
+ "time": "2022-02-20T15:07:15+00:00"
+ },
+ {
+ "name": "graham-campbell/result-type",
+ "version": "v1.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/GrahamCampbell/Result-Type.git",
+ "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
},
"dist": {
"type": "zip",
@@ -2140,6 +2684,70 @@
},
"time": "2023-02-15T16:40:09+00:00"
},
+ {
+ "name": "lcobucci/clock",
+ "version": "3.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/lcobucci/clock.git",
+ "reference": "30a854ceb22bd87d83a7a4563b3f6312453945fc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/lcobucci/clock/zipball/30a854ceb22bd87d83a7a4563b3f6312453945fc",
+ "reference": "30a854ceb22bd87d83a7a4563b3f6312453945fc",
+ "shasum": ""
+ },
+ "require": {
+ "php": "~8.2.0",
+ "psr/clock": "^1.0"
+ },
+ "provide": {
+ "psr/clock-implementation": "1.0"
+ },
+ "require-dev": {
+ "infection/infection": "^0.26",
+ "lcobucci/coding-standard": "^10.0.0",
+ "phpstan/extension-installer": "^1.2",
+ "phpstan/phpstan": "^1.10.7",
+ "phpstan/phpstan-deprecation-rules": "^1.1.3",
+ "phpstan/phpstan-phpunit": "^1.3.10",
+ "phpstan/phpstan-strict-rules": "^1.5.0",
+ "phpunit/phpunit": "^10.0.17"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Lcobucci\\Clock\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Luรญs Cobucci",
+ "email": "lcobucci@gmail.com"
+ }
+ ],
+ "description": "Yet another clock abstraction",
+ "support": {
+ "issues": "https://github.com/lcobucci/clock/issues",
+ "source": "https://github.com/lcobucci/clock/tree/3.1.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/lcobucci",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/lcobucci",
+ "type": "patreon"
+ }
+ ],
+ "time": "2023-03-20T19:12:25+00:00"
+ },
{
"name": "league/commonmark",
"version": "2.4.0",
@@ -3501,6 +4109,62 @@
"abandoned": "psr/http-factory",
"time": "2023-04-14T14:16:17+00:00"
},
+ {
+ "name": "php-http/multipart-stream-builder",
+ "version": "1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-http/multipart-stream-builder.git",
+ "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a",
+ "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0",
+ "php-http/discovery": "^1.15",
+ "psr/http-factory-implementation": "^1.0"
+ },
+ "require-dev": {
+ "nyholm/psr7": "^1.0",
+ "php-http/message": "^1.5",
+ "php-http/message-factory": "^1.0.2",
+ "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Http\\Message\\MultipartStream\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com"
+ }
+ ],
+ "description": "A builder class that help you create a multipart stream",
+ "homepage": "http://php-http.org",
+ "keywords": [
+ "factory",
+ "http",
+ "message",
+ "multipart stream",
+ "stream"
+ ],
+ "support": {
+ "issues": "https://github.com/php-http/multipart-stream-builder/issues",
+ "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0"
+ },
+ "time": "2023-04-28T14:10:22+00:00"
+ },
{
"name": "php-http/promise",
"version": "1.1.0",
@@ -3634,31 +4298,46 @@
"time": "2023-02-25T19:38:58+00:00"
},
{
- "name": "psr/cache",
- "version": "3.0.0",
+ "name": "psr-discovery/all",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/cache.git",
- "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
+ "url": "https://github.com/psr-discovery/all.git",
+ "reference": "73deceb26d3190f53a5cd3b95751c6a223804a8b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
- "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
+ "url": "https://api.github.com/repos/psr-discovery/all/zipball/73deceb26d3190f53a5cd3b95751c6a223804a8b",
+ "reference": "73deceb26d3190f53a5cd3b95751c6a223804a8b",
"shasum": ""
},
"require": {
- "php": ">=8.0.0"
+ "php": "^8.0",
+ "psr-discovery/cache-implementations": "^1.0",
+ "psr-discovery/container-implementations": "^1.0",
+ "psr-discovery/event-dispatcher-implementations": "^1.0",
+ "psr-discovery/http-client-implementations": "^1.0",
+ "psr-discovery/http-factory-implementations": "^1.0",
+ "psr-discovery/log-implementations": "^1.0"
},
- "type": "library",
+ "type": "metapackage",
"extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
+ "merge-plugin": {
+ "ignore-duplicates": false,
+ "include": [
+ "composer.local.json"
+ ],
+ "merge-dev": true,
+ "merge-extra": false,
+ "merge-extra-deep": false,
+ "merge-scripts": false,
+ "recurse": true,
+ "replace": true
}
},
"autoload": {
"psr-4": {
- "Psr\\Cache\\": "src/"
+ "PsrDiscovery\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3667,47 +4346,76 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
+ "name": "Evan Sims",
+ "email": "hello@evansims.com",
+ "homepage": "https://evansims.com/"
}
],
- "description": "Common interface for caching libraries",
+ "description": "Lightweight library that discovers available PSR implementations by searching for a list of well-known classes that implement the relevant interface, and returns an instance of the first one that is found.",
+ "homepage": "https://github.com/psr-discovery",
"keywords": [
- "cache",
+ "PSR-11",
+ "discovery",
"psr",
+ "psr-14",
+ "psr-17",
+ "psr-18",
+ "psr-3",
"psr-6"
],
"support": {
- "source": "https://github.com/php-fig/cache/tree/3.0.0"
+ "source": "https://github.com/psr-discovery/all/tree/1.0.0"
},
- "time": "2021-02-03T23:26:27+00:00"
+ "time": "2023-03-27T16:37:46+00:00"
},
{
- "name": "psr/container",
- "version": "2.0.2",
+ "name": "psr-discovery/cache-implementations",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/container.git",
- "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
+ "url": "https://github.com/psr-discovery/cache-implementations.git",
+ "reference": "33b63d8e324f4aff296508b592bbd4d71b45da68"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
- "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "url": "https://api.github.com/repos/psr-discovery/cache-implementations/zipball/33b63d8e324f4aff296508b592bbd4d71b45da68",
+ "reference": "33b63d8e324f4aff296508b592bbd4d71b45da68",
"shasum": ""
},
"require": {
- "php": ">=7.4.0"
+ "php": "^8.0",
+ "psr-discovery/discovery": "^1.0",
+ "psr/cache": "^1.0 | ^2.0 | ^3.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.14",
+ "infection/infection": "^0.26",
+ "mockery/mockery": "^1.5",
+ "pestphp/pest": "^2.0",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "rector/rector": "^0.15",
+ "vimeo/psalm": "^5.8",
+ "wikimedia/composer-merge-plugin": "^2.0"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
+ "merge-plugin": {
+ "ignore-duplicates": false,
+ "include": [
+ "composer.local.json"
+ ],
+ "merge-dev": true,
+ "merge-extra": false,
+ "merge-extra-deep": false,
+ "merge-scripts": false,
+ "recurse": true,
+ "replace": true
}
},
"autoload": {
"psr-4": {
- "Psr\\Container\\": "src/"
+ "PsrDiscovery\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3716,51 +4424,74 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
+ "name": "Evan Sims",
+ "email": "hello@evansims.com",
+ "homepage": "https://evansims.com/"
}
],
- "description": "Common Container Interface (PHP FIG PSR-11)",
- "homepage": "https://github.com/php-fig/container",
+ "description": "Lightweight library that discovers available PSR-6 Cache implementations by searching for a list of well-known classes that implement the relevant interface, and returns an instance of the first one that is found.",
+ "homepage": "https://github.com/psr-discovery",
"keywords": [
- "PSR-11",
- "container",
- "container-interface",
- "container-interop",
- "psr"
+ "cache",
+ "cache-implementation",
+ "discovery",
+ "psr",
+ "psr-6"
],
"support": {
- "issues": "https://github.com/php-fig/container/issues",
- "source": "https://github.com/php-fig/container/tree/2.0.2"
+ "issues": "https://github.com/psr-discovery/cache-implementations/issues",
+ "source": "https://github.com/psr-discovery/cache-implementations/tree/1.0.0"
},
- "time": "2021-11-05T16:47:00+00:00"
+ "time": "2023-03-27T06:19:44+00:00"
},
{
- "name": "psr/event-dispatcher",
+ "name": "psr-discovery/container-implementations",
"version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/event-dispatcher.git",
- "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
+ "url": "https://github.com/psr-discovery/container-implementations.git",
+ "reference": "366612e9260f247d8b8ee279094a33dd4cbc6886"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
- "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
+ "url": "https://api.github.com/repos/psr-discovery/container-implementations/zipball/366612e9260f247d8b8ee279094a33dd4cbc6886",
+ "reference": "366612e9260f247d8b8ee279094a33dd4cbc6886",
"shasum": ""
},
"require": {
- "php": ">=7.2.0"
+ "php": "^8.0",
+ "psr-discovery/discovery": "^1.0",
+ "psr/container": "^1.0 | ^2.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.14",
+ "infection/infection": "^0.26",
+ "mockery/mockery": "^1.5",
+ "pestphp/pest": "^2.0",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "rector/rector": "^0.15",
+ "vimeo/psalm": "^5.8",
+ "wikimedia/composer-merge-plugin": "^2.0"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
+ "merge-plugin": {
+ "ignore-duplicates": false,
+ "include": [
+ "composer.local.json"
+ ],
+ "merge-dev": true,
+ "merge-extra": false,
+ "merge-extra-deep": false,
+ "merge-scripts": false,
+ "recurse": true,
+ "replace": true
}
},
"autoload": {
"psr-4": {
- "Psr\\EventDispatcher\\": "src/"
+ "PsrDiscovery\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3769,49 +4500,71 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "name": "Evan Sims",
+ "email": "hello@evansims.com",
+ "homepage": "https://evansims.com/"
}
],
- "description": "Standard interfaces for event handling.",
+ "description": "Lightweight library that discovers available PSR-11 Container implementations by searching for a list of well-known classes that implement the relevant interface, and returns an instance of the first one that is found.",
+ "homepage": "https://github.com/psr-discovery/http-client-implementations",
"keywords": [
- "events",
- "psr",
- "psr-14"
+ "PSR-11",
+ "discovery",
+ "psr"
],
"support": {
- "issues": "https://github.com/php-fig/event-dispatcher/issues",
- "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
+ "issues": "https://github.com/psr-discovery/container-implementations/issues",
+ "source": "https://github.com/psr-discovery/container-implementations/tree/1.0.0"
},
- "time": "2019-01-08T18:20:26+00:00"
+ "time": "2023-03-27T06:18:27+00:00"
},
{
- "name": "psr/http-client",
+ "name": "psr-discovery/discovery",
"version": "1.0.2",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/http-client.git",
- "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
+ "url": "https://github.com/psr-discovery/discovery.git",
+ "reference": "83e746a138705d56f8e3dc102e28c79f32ae9b54"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
- "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
+ "url": "https://api.github.com/repos/psr-discovery/discovery/zipball/83e746a138705d56f8e3dc102e28c79f32ae9b54",
+ "reference": "83e746a138705d56f8e3dc102e28c79f32ae9b54",
"shasum": ""
},
"require": {
- "php": "^7.0 || ^8.0",
- "psr/http-message": "^1.0 || ^2.0"
+ "composer/semver": "^3.0",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.14",
+ "infection/infection": "^0.26",
+ "mockery/mockery": "^1.5",
+ "pestphp/pest": "^2.0",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "rector/rector": "^0.15",
+ "vimeo/psalm": "^5.8",
+ "wikimedia/composer-merge-plugin": "^2.0"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
+ "merge-plugin": {
+ "ignore-duplicates": false,
+ "include": [
+ "composer.local.json"
+ ],
+ "merge-dev": true,
+ "merge-extra": false,
+ "merge-extra-deep": false,
+ "merge-scripts": false,
+ "recurse": true,
+ "replace": true
}
},
"autoload": {
"psr-4": {
- "Psr\\Http\\Client\\": "src/"
+ "PsrDiscovery\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3820,50 +4573,77 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
+ "name": "Evan Sims",
+ "email": "hello@evansims.com",
+ "homepage": "https://evansims.com/"
}
],
- "description": "Common interface for HTTP clients",
- "homepage": "https://github.com/php-fig/http-client",
+ "description": "Lightweight library that discovers available PSR implementations by searching for a list of well-known classes that implement the relevant interfaces, and returning an instance of the first one that is found.",
+ "homepage": "https://github.com/psr-discovery/discovery",
"keywords": [
- "http",
- "http-client",
+ "PSR-11",
+ "discovery",
"psr",
- "psr-18"
+ "psr-14",
+ "psr-17",
+ "psr-18",
+ "psr-3",
+ "psr-6"
],
"support": {
- "source": "https://github.com/php-fig/http-client/tree/1.0.2"
+ "issues": "https://github.com/psr-discovery/discovery/issues",
+ "source": "https://github.com/psr-discovery/discovery/tree/1.0.2"
},
- "time": "2023-04-10T20:12:12+00:00"
+ "time": "2023-03-27T19:49:39+00:00"
},
{
- "name": "psr/http-factory",
- "version": "1.0.2",
+ "name": "psr-discovery/event-dispatcher-implementations",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/http-factory.git",
- "reference": "e616d01114759c4c489f93b099585439f795fe35"
+ "url": "https://github.com/psr-discovery/event-dispatcher-implementations.git",
+ "reference": "903d05afe29bd1a17c18924004d282d28bda1759"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
- "reference": "e616d01114759c4c489f93b099585439f795fe35",
+ "url": "https://api.github.com/repos/psr-discovery/event-dispatcher-implementations/zipball/903d05afe29bd1a17c18924004d282d28bda1759",
+ "reference": "903d05afe29bd1a17c18924004d282d28bda1759",
"shasum": ""
},
"require": {
- "php": ">=7.0.0",
- "psr/http-message": "^1.0 || ^2.0"
+ "php": "^8.0",
+ "psr-discovery/discovery": "^1.0",
+ "psr/event-dispatcher": "^1.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.14",
+ "infection/infection": "^0.26",
+ "mockery/mockery": "^1.5",
+ "pestphp/pest": "^2.0",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "rector/rector": "^0.15",
+ "vimeo/psalm": "^5.8",
+ "wikimedia/composer-merge-plugin": "^2.0"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
+ "merge-plugin": {
+ "ignore-duplicates": false,
+ "include": [
+ "composer.local.json"
+ ],
+ "merge-dev": true,
+ "merge-extra": false,
+ "merge-extra-deep": false,
+ "merge-scripts": false,
+ "recurse": true,
+ "replace": true
}
},
"autoload": {
"psr-4": {
- "Psr\\Http\\Message\\": "src/"
+ "PsrDiscovery\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3872,52 +4652,72 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
+ "name": "Evan Sims",
+ "email": "hello@evansims.com",
+ "homepage": "https://evansims.com/"
}
],
- "description": "Common interfaces for PSR-7 HTTP message factories",
+ "description": "Lightweight library that discovers available PSR-14 Event Dispatcher implementations by searching for a list of well-known classes that implement the relevant interface, and returns an instance of the first one that is found.",
+ "homepage": "https://github.com/psr-discovery/http-client-implementations",
"keywords": [
- "factory",
- "http",
- "message",
+ "discovery",
"psr",
- "psr-17",
- "psr-7",
- "request",
- "response"
+ "psr-18"
],
"support": {
- "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
+ "issues": "https://github.com/psr-discovery/event-dispatcher-implementations/issues",
+ "source": "https://github.com/psr-discovery/event-dispatcher-implementations/tree/1.0.0"
},
- "time": "2023-04-10T20:10:41+00:00"
+ "time": "2023-03-27T06:17:31+00:00"
},
{
- "name": "psr/http-message",
- "version": "2.0",
+ "name": "psr-discovery/http-client-implementations",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/http-message.git",
- "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
+ "url": "https://github.com/psr-discovery/http-client-implementations.git",
+ "reference": "ca0cbc370789a3fd0f6aa3e7c4f4e5c123eadef3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
- "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "url": "https://api.github.com/repos/psr-discovery/http-client-implementations/zipball/ca0cbc370789a3fd0f6aa3e7c4f4e5c123eadef3",
+ "reference": "ca0cbc370789a3fd0f6aa3e7c4f4e5c123eadef3",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0"
+ "php": "^8.0",
+ "psr-discovery/discovery": "^1.0",
+ "psr/http-client": "^1.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.14",
+ "infection/infection": "^0.26",
+ "mockery/mockery": "^1.5",
+ "pestphp/pest": "^2.0",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "rector/rector": "^0.15",
+ "vimeo/psalm": "^5.8",
+ "wikimedia/composer-merge-plugin": "^2.0"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
+ "merge-plugin": {
+ "ignore-duplicates": false,
+ "include": [
+ "composer.local.json"
+ ],
+ "merge-dev": true,
+ "merge-extra": false,
+ "merge-extra-deep": false,
+ "merge-scripts": false,
+ "recurse": true,
+ "replace": true
}
},
"autoload": {
"psr-4": {
- "Psr\\Http\\Message\\": "src/"
+ "PsrDiscovery\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3926,51 +4726,72 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
+ "name": "Evan Sims",
+ "email": "hello@evansims.com",
+ "homepage": "https://evansims.com/"
}
],
- "description": "Common interface for HTTP messages",
- "homepage": "https://github.com/php-fig/http-message",
+ "description": "Lightweight library that discovers available PSR-18 HTTP Client implementations by searching for a list of well-known classes that implement the relevant interface, and returns an instance of the first one that is found.",
+ "homepage": "https://github.com/psr-discovery/http-client-implementations",
"keywords": [
- "http",
- "http-message",
+ "discovery",
"psr",
- "psr-7",
- "request",
- "response"
+ "psr-18"
],
"support": {
- "source": "https://github.com/php-fig/http-message/tree/2.0"
+ "issues": "https://github.com/psr-discovery/http-client-implementations/issues",
+ "source": "https://github.com/psr-discovery/http-client-implementations/tree/1.0.0"
},
- "time": "2023-04-04T09:54:51+00:00"
+ "time": "2023-03-27T06:16:24+00:00"
},
{
- "name": "psr/log",
- "version": "3.0.0",
+ "name": "psr-discovery/http-factory-implementations",
+ "version": "1.0.1",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/log.git",
- "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
+ "url": "https://github.com/psr-discovery/http-factory-implementations.git",
+ "reference": "064bb0ec6d2e49aeb6f15aa5a8793abe02daf56b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
- "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
+ "url": "https://api.github.com/repos/psr-discovery/http-factory-implementations/zipball/064bb0ec6d2e49aeb6f15aa5a8793abe02daf56b",
+ "reference": "064bb0ec6d2e49aeb6f15aa5a8793abe02daf56b",
"shasum": ""
},
"require": {
- "php": ">=8.0.0"
+ "php": "^8.0",
+ "psr-discovery/discovery": "^1.0",
+ "psr/http-factory": "^1.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.14",
+ "infection/infection": "^0.26",
+ "mockery/mockery": "^1.5",
+ "pestphp/pest": "^2.0",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "rector/rector": "^0.15",
+ "vimeo/psalm": "^5.8",
+ "wikimedia/composer-merge-plugin": "^2.0"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "3.x-dev"
+ "merge-plugin": {
+ "ignore-duplicates": false,
+ "include": [
+ "composer.local.json"
+ ],
+ "merge-dev": true,
+ "merge-extra": false,
+ "merge-extra-deep": false,
+ "merge-scripts": false,
+ "recurse": true,
+ "replace": true
}
},
"autoload": {
"psr-4": {
- "Psr\\Log\\": "src"
+ "PsrDiscovery\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3979,48 +4800,72 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
+ "name": "Evan Sims",
+ "email": "hello@evansims.com",
+ "homepage": "https://evansims.com/"
}
],
- "description": "Common interface for logging libraries",
- "homepage": "https://github.com/php-fig/log",
+ "description": "Lightweight library that discovers available PSR-17 HTTP Factory implementations by searching for a list of well-known classes that implement the relevant interface, and returns an instance of the first one that is found.",
+ "homepage": "https://github.com/psr-discovery/http-factory-implementations",
"keywords": [
- "log",
+ "discovery",
"psr",
- "psr-3"
+ "psr-18"
],
"support": {
- "source": "https://github.com/php-fig/log/tree/3.0.0"
+ "issues": "https://github.com/psr-discovery/http-factory-implementations/issues",
+ "source": "https://github.com/psr-discovery/http-factory-implementations/tree/1.0.1"
},
- "time": "2021-07-14T16:46:02+00:00"
+ "time": "2023-04-26T06:22:45+00:00"
},
{
- "name": "psr/simple-cache",
- "version": "3.0.0",
+ "name": "psr-discovery/log-implementations",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/php-fig/simple-cache.git",
- "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
+ "url": "https://github.com/psr-discovery/log-implementations.git",
+ "reference": "7be7af9bb1bf41a4985356b16cc654e0227eed38"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
- "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
+ "url": "https://api.github.com/repos/psr-discovery/log-implementations/zipball/7be7af9bb1bf41a4985356b16cc654e0227eed38",
+ "reference": "7be7af9bb1bf41a4985356b16cc654e0227eed38",
"shasum": ""
},
"require": {
- "php": ">=8.0.0"
+ "php": "^8.0",
+ "psr-discovery/discovery": "^1.0",
+ "psr/log": "^1.0 | ^2.0 | ^3.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.14",
+ "infection/infection": "^0.26",
+ "mockery/mockery": "^1.5",
+ "pestphp/pest": "^2.0",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "rector/rector": "^0.15",
+ "vimeo/psalm": "^5.8",
+ "wikimedia/composer-merge-plugin": "^2.0"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "3.0.x-dev"
+ "merge-plugin": {
+ "ignore-duplicates": false,
+ "include": [
+ "composer.local.json"
+ ],
+ "merge-dev": true,
+ "merge-extra": false,
+ "merge-extra-deep": false,
+ "merge-scripts": false,
+ "recurse": true,
+ "replace": true
}
},
"autoload": {
"psr-4": {
- "Psr\\SimpleCache\\": "src/"
+ "PsrDiscovery\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4029,72 +4874,52 @@
],
"authors": [
{
- "name": "PHP-FIG",
- "homepage": "https://www.php-fig.org/"
+ "name": "Evan Sims",
+ "email": "hello@evansims.com",
+ "homepage": "https://evansims.com/"
}
],
- "description": "Common interfaces for simple caching",
+ "description": "Lightweight library that discovers available PSR-3 Log implementations by searching for a list of well-known classes that implement the relevant interface, and returns an instance of the first one that is found.",
+ "homepage": "https://github.com/psr-discovery",
"keywords": [
- "cache",
- "caching",
+ "discovery",
+ "log",
+ "log-implementation",
"psr",
- "psr-16",
- "simple-cache"
+ "psr-3"
],
"support": {
- "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
+ "issues": "https://github.com/psr-discovery/log-implementations/issues",
+ "source": "https://github.com/psr-discovery/log-implementations/tree/1.0.0"
},
- "time": "2021-10-29T13:26:27+00:00"
+ "time": "2023-03-27T06:14:11+00:00"
},
{
- "name": "psy/psysh",
- "version": "v0.11.18",
+ "name": "psr/cache",
+ "version": "3.0.0",
"source": {
"type": "git",
- "url": "https://github.com/bobthecow/psysh.git",
- "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec"
+ "url": "https://github.com/php-fig/cache.git",
+ "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4f00ee9e236fa6a48f4560d1300b9c961a70a7ec",
- "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec",
+ "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
+ "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "ext-tokenizer": "*",
- "nikic/php-parser": "^4.0 || ^3.1",
- "php": "^8.0 || ^7.0.8",
- "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
- "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
+ "php": ">=8.0.0"
},
- "conflict": {
- "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
- },
- "require-dev": {
- "bamarni/composer-bin-plugin": "^1.2"
- },
- "suggest": {
- "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
- "ext-pdo-sqlite": "The doc command requires SQLite to work.",
- "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
- "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
- },
- "bin": [
- "bin/psysh"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "0.11.x-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
- "files": [
- "src/functions.php"
- ],
"psr-4": {
- "Psy\\": "src/"
+ "Psr\\Cache\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4103,51 +4928,43 @@
],
"authors": [
{
- "name": "Justin Hileman",
- "email": "justin@justinhileman.info",
- "homepage": "http://justinhileman.com"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "An interactive shell for modern PHP.",
- "homepage": "http://psysh.org",
+ "description": "Common interface for caching libraries",
"keywords": [
- "REPL",
- "console",
- "interactive",
- "shell"
+ "cache",
+ "psr",
+ "psr-6"
],
"support": {
- "issues": "https://github.com/bobthecow/psysh/issues",
- "source": "https://github.com/bobthecow/psysh/tree/v0.11.18"
+ "source": "https://github.com/php-fig/cache/tree/3.0.0"
},
- "time": "2023-05-23T02:31:11+00:00"
+ "time": "2021-02-03T23:26:27+00:00"
},
{
- "name": "ralouphie/getallheaders",
- "version": "3.0.3",
+ "name": "psr/clock",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/ralouphie/getallheaders.git",
- "reference": "120b605dfeb996808c31b6477290a714d356e822"
+ "url": "https://github.com/php-fig/clock.git",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
- "reference": "120b605dfeb996808c31b6477290a714d356e822",
+ "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
"shasum": ""
},
"require": {
- "php": ">=5.6"
- },
- "require-dev": {
- "php-coveralls/php-coveralls": "^2.1",
- "phpunit/phpunit": "^5 || ^6.5"
+ "php": "^7.0 || ^8.0"
},
"type": "library",
"autoload": {
- "files": [
- "src/getallheaders.php"
- ]
+ "psr-4": {
+ "Psr\\Clock\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4155,68 +4972,51 @@
],
"authors": [
{
- "name": "Ralph Khattar",
- "email": "ralph.khattar@gmail.com"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "A polyfill for getallheaders.",
+ "description": "Common interface for reading the clock.",
+ "homepage": "https://github.com/php-fig/clock",
+ "keywords": [
+ "clock",
+ "now",
+ "psr",
+ "psr-20",
+ "time"
+ ],
"support": {
- "issues": "https://github.com/ralouphie/getallheaders/issues",
- "source": "https://github.com/ralouphie/getallheaders/tree/develop"
+ "issues": "https://github.com/php-fig/clock/issues",
+ "source": "https://github.com/php-fig/clock/tree/1.0.0"
},
- "time": "2019-03-08T08:55:37+00:00"
+ "time": "2022-11-25T14:36:26+00:00"
},
{
- "name": "ramsey/collection",
- "version": "2.0.0",
+ "name": "psr/container",
+ "version": "2.0.2",
"source": {
"type": "git",
- "url": "https://github.com/ramsey/collection.git",
- "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
- "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
"shasum": ""
},
"require": {
- "php": "^8.1"
- },
- "require-dev": {
- "captainhook/plugin-composer": "^5.3",
- "ergebnis/composer-normalize": "^2.28.3",
- "fakerphp/faker": "^1.21",
- "hamcrest/hamcrest-php": "^2.0",
- "jangregor/phpstan-prophecy": "^1.0",
- "mockery/mockery": "^1.5",
- "php-parallel-lint/php-console-highlighter": "^1.0",
- "php-parallel-lint/php-parallel-lint": "^1.3",
- "phpcsstandards/phpcsutils": "^1.0.0-rc1",
- "phpspec/prophecy-phpunit": "^2.0",
- "phpstan/extension-installer": "^1.2",
- "phpstan/phpstan": "^1.9",
- "phpstan/phpstan-mockery": "^1.1",
- "phpstan/phpstan-phpunit": "^1.3",
- "phpunit/phpunit": "^9.5",
- "psalm/plugin-mockery": "^1.1",
- "psalm/plugin-phpunit": "^0.18.4",
- "ramsey/coding-standard": "^2.0.3",
- "ramsey/conventional-commits": "^1.3",
- "vimeo/psalm": "^5.4"
+ "php": ">=7.4.0"
},
"type": "library",
"extra": {
- "captainhook": {
- "force-install": true
- },
- "ramsey/conventional-commits": {
- "configFile": "conventional-commits.json"
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "Ramsey\\Collection\\": "src/"
+ "Psr\\Container\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4225,251 +5025,154 @@
],
"authors": [
{
- "name": "Ben Ramsey",
- "email": "ben@benramsey.com",
- "homepage": "https://benramsey.com"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "A PHP library for representing and manipulating collections.",
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
"keywords": [
- "array",
- "collection",
- "hash",
- "map",
- "queue",
- "set"
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
],
"support": {
- "issues": "https://github.com/ramsey/collection/issues",
- "source": "https://github.com/ramsey/collection/tree/2.0.0"
+ "issues": "https://github.com/php-fig/container/issues",
+ "source": "https://github.com/php-fig/container/tree/2.0.2"
},
- "funding": [
- {
- "url": "https://github.com/ramsey",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
- "type": "tidelift"
- }
- ],
- "time": "2022-12-31T21:50:55+00:00"
+ "time": "2021-11-05T16:47:00+00:00"
},
{
- "name": "ramsey/uuid",
- "version": "4.7.4",
+ "name": "psr/event-dispatcher",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/ramsey/uuid.git",
- "reference": "60a4c63ab724854332900504274f6150ff26d286"
+ "url": "https://github.com/php-fig/event-dispatcher.git",
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
- "reference": "60a4c63ab724854332900504274f6150ff26d286",
+ "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
"shasum": ""
},
"require": {
- "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
- "ext-json": "*",
- "php": "^8.0",
- "ramsey/collection": "^1.2 || ^2.0"
- },
- "replace": {
- "rhumsaa/uuid": "self.version"
- },
- "require-dev": {
- "captainhook/captainhook": "^5.10",
- "captainhook/plugin-composer": "^5.3",
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
- "doctrine/annotations": "^1.8",
- "ergebnis/composer-normalize": "^2.15",
- "mockery/mockery": "^1.3",
- "paragonie/random-lib": "^2",
- "php-mock/php-mock": "^2.2",
- "php-mock/php-mock-mockery": "^1.3",
- "php-parallel-lint/php-parallel-lint": "^1.1",
- "phpbench/phpbench": "^1.0",
- "phpstan/extension-installer": "^1.1",
- "phpstan/phpstan": "^1.8",
- "phpstan/phpstan-mockery": "^1.1",
- "phpstan/phpstan-phpunit": "^1.1",
- "phpunit/phpunit": "^8.5 || ^9",
- "ramsey/composer-repl": "^1.4",
- "slevomat/coding-standard": "^8.4",
- "squizlabs/php_codesniffer": "^3.5",
- "vimeo/psalm": "^4.9"
- },
- "suggest": {
- "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
- "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
- "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
- "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
- "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+ "php": ">=7.2.0"
},
"type": "library",
"extra": {
- "captainhook": {
- "force-install": true
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
- "files": [
- "src/functions.php"
- ],
"psr-4": {
- "Ramsey\\Uuid\\": "src/"
+ "Psr\\EventDispatcher\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Standard interfaces for event handling.",
"keywords": [
- "guid",
- "identifier",
- "uuid"
+ "events",
+ "psr",
+ "psr-14"
],
"support": {
- "issues": "https://github.com/ramsey/uuid/issues",
- "source": "https://github.com/ramsey/uuid/tree/4.7.4"
+ "issues": "https://github.com/php-fig/event-dispatcher/issues",
+ "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
},
- "funding": [
- {
- "url": "https://github.com/ramsey",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
- "type": "tidelift"
- }
- ],
- "time": "2023-04-15T23:01:58+00:00"
+ "time": "2019-01-08T18:20:26+00:00"
},
{
- "name": "sentry/sdk",
- "version": "3.5.0",
+ "name": "psr/http-client",
+ "version": "1.0.2",
"source": {
"type": "git",
- "url": "https://github.com/getsentry/sentry-php-sdk.git",
- "reference": "cd91b752f07c4bab9fb3b173f81af68a78a78d6d"
+ "url": "https://github.com/php-fig/http-client.git",
+ "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/cd91b752f07c4bab9fb3b173f81af68a78a78d6d",
- "reference": "cd91b752f07c4bab9fb3b173f81af68a78a78d6d",
+ "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
+ "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
"shasum": ""
},
"require": {
- "http-interop/http-factory-guzzle": "^1.0",
- "sentry/sentry": "^3.19",
- "symfony/http-client": "^4.3|^5.0|^6.0"
+ "php": "^7.0 || ^8.0",
+ "psr/http-message": "^1.0 || ^2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Client\\": "src/"
+ }
},
- "type": "metapackage",
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
- "name": "Sentry",
- "email": "accounts@sentry.io"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "This is a metapackage shipping sentry/sentry with a recommended HTTP client.",
- "homepage": "http://sentry.io",
+ "description": "Common interface for HTTP clients",
+ "homepage": "https://github.com/php-fig/http-client",
"keywords": [
- "crash-reporting",
- "crash-reports",
- "error-handler",
- "error-monitoring",
- "log",
- "logging",
- "sentry"
+ "http",
+ "http-client",
+ "psr",
+ "psr-18"
],
"support": {
- "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
- "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.5.0"
+ "source": "https://github.com/php-fig/http-client/tree/1.0.2"
},
- "funding": [
- {
- "url": "https://sentry.io/",
- "type": "custom"
- },
- {
- "url": "https://sentry.io/pricing/",
- "type": "custom"
- }
- ],
- "time": "2023-06-12T17:50:36+00:00"
+ "time": "2023-04-10T20:12:12+00:00"
},
{
- "name": "sentry/sentry",
- "version": "3.20.1",
+ "name": "psr/http-factory",
+ "version": "1.0.2",
"source": {
"type": "git",
- "url": "https://github.com/getsentry/sentry-php.git",
- "reference": "644ad9768c18139a80ac510090fad000d9ffd8a4"
+ "url": "https://github.com/php-fig/http-factory.git",
+ "reference": "e616d01114759c4c489f93b099585439f795fe35"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/644ad9768c18139a80ac510090fad000d9ffd8a4",
- "reference": "644ad9768c18139a80ac510090fad000d9ffd8a4",
+ "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
+ "reference": "e616d01114759c4c489f93b099585439f795fe35",
"shasum": ""
},
"require": {
- "ext-json": "*",
- "ext-mbstring": "*",
- "guzzlehttp/promises": "^1.5.3|^2.0",
- "jean85/pretty-package-versions": "^1.5|^2.0.4",
- "php": "^7.2|^8.0",
- "php-http/async-client-implementation": "^1.0",
- "php-http/client-common": "^1.5|^2.0",
- "php-http/discovery": "^1.15",
- "php-http/httplug": "^1.1|^2.0",
- "php-http/message": "^1.5",
- "php-http/message-factory": "^1.1",
- "psr/http-factory": "^1.0",
- "psr/http-factory-implementation": "^1.0",
- "psr/log": "^1.0|^2.0|^3.0",
- "symfony/options-resolver": "^3.4.43|^4.4.30|^5.0.11|^6.0",
- "symfony/polyfill-php80": "^1.17"
- },
- "conflict": {
- "php-http/client-common": "1.8.0",
- "raven/raven": "*"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^2.19|3.4.*",
- "guzzlehttp/psr7": "^1.8.4|^2.1.1",
- "http-interop/http-factory-guzzle": "^1.0",
- "monolog/monolog": "^1.6|^2.0|^3.0",
- "nikic/php-parser": "^4.10.3",
- "php-http/mock-client": "^1.3",
- "phpbench/phpbench": "^1.0",
- "phpstan/extension-installer": "^1.0",
- "phpstan/phpstan": "^1.3",
- "phpstan/phpstan-phpunit": "^1.0",
- "phpunit/phpunit": "^8.5.14|^9.4",
- "symfony/phpunit-bridge": "^5.2|^6.0",
- "vimeo/psalm": "^4.17"
- },
- "suggest": {
- "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
+ "php": ">=7.0.0",
+ "psr/http-message": "^1.0 || ^2.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.13.x-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
- "files": [
- "src/functions.php"
- ],
"psr-4": {
- "Sentry\\": "src/"
+ "Psr\\Http\\Message\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4478,87 +5181,52 @@
],
"authors": [
{
- "name": "Sentry",
- "email": "accounts@sentry.io"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "A PHP SDK for Sentry (http://sentry.io)",
- "homepage": "http://sentry.io",
+ "description": "Common interfaces for PSR-7 HTTP message factories",
"keywords": [
- "crash-reporting",
- "crash-reports",
- "error-handler",
- "error-monitoring",
- "log",
- "logging",
- "sentry"
+ "factory",
+ "http",
+ "message",
+ "psr",
+ "psr-17",
+ "psr-7",
+ "request",
+ "response"
],
"support": {
- "issues": "https://github.com/getsentry/sentry-php/issues",
- "source": "https://github.com/getsentry/sentry-php/tree/3.20.1"
+ "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
},
- "funding": [
- {
- "url": "https://sentry.io/",
- "type": "custom"
- },
- {
- "url": "https://sentry.io/pricing/",
- "type": "custom"
- }
- ],
- "time": "2023-06-26T11:01:40+00:00"
+ "time": "2023-04-10T20:10:41+00:00"
},
{
- "name": "sentry/sentry-laravel",
- "version": "3.6.0",
+ "name": "psr/http-message",
+ "version": "2.0",
"source": {
"type": "git",
- "url": "https://github.com/getsentry/sentry-laravel.git",
- "reference": "6aacef4d12c22046f68ab617ee1496b9655b8eb9"
+ "url": "https://github.com/php-fig/http-message.git",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/6aacef4d12c22046f68ab617ee1496b9655b8eb9",
- "reference": "6aacef4d12c22046f68ab617ee1496b9655b8eb9",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
"shasum": ""
},
"require": {
- "illuminate/support": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0",
- "nyholm/psr7": "^1.0",
- "php": "^7.2 | ^8.0",
- "sentry/sdk": "^3.4",
- "sentry/sentry": "^3.20",
- "symfony/psr-http-message-bridge": "^1.0 | ^2.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^3.11",
- "laravel/framework": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0",
- "mockery/mockery": "^1.3",
- "orchestra/testbench": "^4.7 | ^5.1 | ^6.0 | ^7.0 | ^8.0",
- "phpunit/phpunit": "^8.4 | ^9.3"
+ "php": "^7.2 || ^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.x-dev",
- "dev-2.x": "2.x-dev",
- "dev-1.x": "1.x-dev",
- "dev-0.x": "0.x-dev"
- },
- "laravel": {
- "providers": [
- "Sentry\\Laravel\\ServiceProvider",
- "Sentry\\Laravel\\Tracing\\ServiceProvider"
- ],
- "aliases": {
- "Sentry": "Sentry\\Laravel\\Facade"
- }
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Sentry\\Laravel\\": "src/"
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4567,79 +5235,54 @@
],
"authors": [
{
- "name": "Sentry",
- "email": "accounts@sentry.io"
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
}
],
- "description": "Laravel SDK for Sentry (https://sentry.io)",
- "homepage": "https://sentry.io",
+ "description": "Common interface for HTTP messages",
+ "homepage": "https://github.com/php-fig/http-message",
"keywords": [
- "crash-reporting",
- "crash-reports",
- "error-handler",
- "error-monitoring",
- "laravel",
- "log",
- "logging",
- "sentry"
+ "http",
+ "http-message",
+ "psr",
+ "psr-7",
+ "request",
+ "response"
],
"support": {
- "issues": "https://github.com/getsentry/sentry-laravel/issues",
- "source": "https://github.com/getsentry/sentry-laravel/tree/3.6.0"
+ "source": "https://github.com/php-fig/http-message/tree/2.0"
},
- "funding": [
- {
- "url": "https://sentry.io/",
- "type": "custom"
- },
- {
- "url": "https://sentry.io/pricing/",
- "type": "custom"
- }
- ],
- "time": "2023-06-29T10:31:13+00:00"
+ "time": "2023-04-04T09:54:51+00:00"
},
{
- "name": "spiral/attributes",
- "version": "v3.1.0",
+ "name": "psr/link",
+ "version": "2.0.1",
"source": {
"type": "git",
- "url": "https://github.com/spiral/attributes.git",
- "reference": "b1c3f9cd8b7b0632f03e7046a38c2a98f3ed2e65"
+ "url": "https://github.com/php-fig/link.git",
+ "reference": "84b159194ecfd7eaa472280213976e96415433f7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spiral/attributes/zipball/b1c3f9cd8b7b0632f03e7046a38c2a98f3ed2e65",
- "reference": "b1c3f9cd8b7b0632f03e7046a38c2a98f3ed2e65",
+ "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
+ "reference": "84b159194ecfd7eaa472280213976e96415433f7",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "psr/cache": ">=1.0",
- "psr/simple-cache": "1 - 3"
- },
- "require-dev": {
- "doctrine/annotations": "^1.12 || ^2.0",
- "jetbrains/phpstorm-attributes": "^1.0",
- "phpunit/phpunit": "^9.5.20",
- "symfony/var-dumper": "^5.2 || ^6.0",
- "vimeo/psalm": "^4.21"
+ "php": ">=8.0.0"
},
"suggest": {
- "doctrine/annotations": "^1.0 for Doctrine metadata driver support"
+ "fig/link-util": "Provides some useful PSR-13 utilities"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.1.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
- "files": [
- "src/polyfill.php"
- ],
"psr-4": {
- "Spiral\\Attributes\\": "src"
+ "Psr\\Link\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4648,54 +5291,1465 @@
],
"authors": [
{
- "name": "Kirill Nesmeyanov (SerafimArts)",
- "email": "kirill.nesmeyanov@spiralscout.com"
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
}
],
- "description": "PHP attributes reader",
- "homepage": "https://spiral.dev",
- "support": {
- "issues": "https://github.com/spiral/attributes/issues",
- "source": "https://github.com/spiral/attributes"
+ "description": "Common interfaces for HTTP links",
+ "homepage": "https://github.com/php-fig/link",
+ "keywords": [
+ "http",
+ "http-link",
+ "link",
+ "psr",
+ "psr-13",
+ "rest"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/link/tree/2.0.1"
+ },
+ "time": "2021-03-11T23:00:27+00:00"
+ },
+ {
+ "name": "psr/log",
+ "version": "3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
+ "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Log\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
+ "keywords": [
+ "log",
+ "psr",
+ "psr-3"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/log/tree/3.0.0"
+ },
+ "time": "2021-07-14T16:46:02+00:00"
+ },
+ {
+ "name": "psr/simple-cache",
+ "version": "3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/simple-cache.git",
+ "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
+ "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\SimpleCache\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interfaces for simple caching",
+ "keywords": [
+ "cache",
+ "caching",
+ "psr",
+ "psr-16",
+ "simple-cache"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
+ },
+ "time": "2021-10-29T13:26:27+00:00"
+ },
+ {
+ "name": "psy/psysh",
+ "version": "v0.11.18",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/bobthecow/psysh.git",
+ "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4f00ee9e236fa6a48f4560d1300b9c961a70a7ec",
+ "reference": "4f00ee9e236fa6a48f4560d1300b9c961a70a7ec",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-tokenizer": "*",
+ "nikic/php-parser": "^4.0 || ^3.1",
+ "php": "^8.0 || ^7.0.8",
+ "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
+ "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
+ },
+ "conflict": {
+ "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.2"
+ },
+ "suggest": {
+ "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
+ "ext-pdo-sqlite": "The doc command requires SQLite to work.",
+ "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
+ "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
+ },
+ "bin": [
+ "bin/psysh"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "0.11.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Psy\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Justin Hileman",
+ "email": "justin@justinhileman.info",
+ "homepage": "http://justinhileman.com"
+ }
+ ],
+ "description": "An interactive shell for modern PHP.",
+ "homepage": "http://psysh.org",
+ "keywords": [
+ "REPL",
+ "console",
+ "interactive",
+ "shell"
+ ],
+ "support": {
+ "issues": "https://github.com/bobthecow/psysh/issues",
+ "source": "https://github.com/bobthecow/psysh/tree/v0.11.18"
+ },
+ "time": "2023-05-23T02:31:11+00:00"
+ },
+ {
+ "name": "ralouphie/getallheaders",
+ "version": "3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ralouphie/getallheaders.git",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpunit": "^5 || ^6.5"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/getallheaders.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ralph Khattar",
+ "email": "ralph.khattar@gmail.com"
+ }
+ ],
+ "description": "A polyfill for getallheaders.",
+ "support": {
+ "issues": "https://github.com/ralouphie/getallheaders/issues",
+ "source": "https://github.com/ralouphie/getallheaders/tree/develop"
+ },
+ "time": "2019-03-08T08:55:37+00:00"
+ },
+ {
+ "name": "ramsey/collection",
+ "version": "2.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/collection.git",
+ "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
+ "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "captainhook/plugin-composer": "^5.3",
+ "ergebnis/composer-normalize": "^2.28.3",
+ "fakerphp/faker": "^1.21",
+ "hamcrest/hamcrest-php": "^2.0",
+ "jangregor/phpstan-prophecy": "^1.0",
+ "mockery/mockery": "^1.5",
+ "php-parallel-lint/php-console-highlighter": "^1.0",
+ "php-parallel-lint/php-parallel-lint": "^1.3",
+ "phpcsstandards/phpcsutils": "^1.0.0-rc1",
+ "phpspec/prophecy-phpunit": "^2.0",
+ "phpstan/extension-installer": "^1.2",
+ "phpstan/phpstan": "^1.9",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpunit/phpunit": "^9.5",
+ "psalm/plugin-mockery": "^1.1",
+ "psalm/plugin-phpunit": "^0.18.4",
+ "ramsey/coding-standard": "^2.0.3",
+ "ramsey/conventional-commits": "^1.3",
+ "vimeo/psalm": "^5.4"
+ },
+ "type": "library",
+ "extra": {
+ "captainhook": {
+ "force-install": true
+ },
+ "ramsey/conventional-commits": {
+ "configFile": "conventional-commits.json"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Ramsey\\Collection\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ben Ramsey",
+ "email": "ben@benramsey.com",
+ "homepage": "https://benramsey.com"
+ }
+ ],
+ "description": "A PHP library for representing and manipulating collections.",
+ "keywords": [
+ "array",
+ "collection",
+ "hash",
+ "map",
+ "queue",
+ "set"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/collection/issues",
+ "source": "https://github.com/ramsey/collection/tree/2.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2022-12-31T21:50:55+00:00"
+ },
+ {
+ "name": "ramsey/uuid",
+ "version": "4.7.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/uuid.git",
+ "reference": "60a4c63ab724854332900504274f6150ff26d286"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
+ "reference": "60a4c63ab724854332900504274f6150ff26d286",
+ "shasum": ""
+ },
+ "require": {
+ "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
+ "ext-json": "*",
+ "php": "^8.0",
+ "ramsey/collection": "^1.2 || ^2.0"
+ },
+ "replace": {
+ "rhumsaa/uuid": "self.version"
+ },
+ "require-dev": {
+ "captainhook/captainhook": "^5.10",
+ "captainhook/plugin-composer": "^5.3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
+ "doctrine/annotations": "^1.8",
+ "ergebnis/composer-normalize": "^2.15",
+ "mockery/mockery": "^1.3",
+ "paragonie/random-lib": "^2",
+ "php-mock/php-mock": "^2.2",
+ "php-mock/php-mock-mockery": "^1.3",
+ "php-parallel-lint/php-parallel-lint": "^1.1",
+ "phpbench/phpbench": "^1.0",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpunit/phpunit": "^8.5 || ^9",
+ "ramsey/composer-repl": "^1.4",
+ "slevomat/coding-standard": "^8.4",
+ "squizlabs/php_codesniffer": "^3.5",
+ "vimeo/psalm": "^4.9"
+ },
+ "suggest": {
+ "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
+ "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
+ "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
+ "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
+ "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+ },
+ "type": "library",
+ "extra": {
+ "captainhook": {
+ "force-install": true
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Ramsey\\Uuid\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
+ "keywords": [
+ "guid",
+ "identifier",
+ "uuid"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/uuid/issues",
+ "source": "https://github.com/ramsey/uuid/tree/4.7.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/ramsey",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-04-15T23:01:58+00:00"
+ },
+ {
+ "name": "sentry/sdk",
+ "version": "3.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/getsentry/sentry-php-sdk.git",
+ "reference": "cd91b752f07c4bab9fb3b173f81af68a78a78d6d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/cd91b752f07c4bab9fb3b173f81af68a78a78d6d",
+ "reference": "cd91b752f07c4bab9fb3b173f81af68a78a78d6d",
+ "shasum": ""
+ },
+ "require": {
+ "http-interop/http-factory-guzzle": "^1.0",
+ "sentry/sentry": "^3.19",
+ "symfony/http-client": "^4.3|^5.0|^6.0"
+ },
+ "type": "metapackage",
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Sentry",
+ "email": "accounts@sentry.io"
+ }
+ ],
+ "description": "This is a metapackage shipping sentry/sentry with a recommended HTTP client.",
+ "homepage": "http://sentry.io",
+ "keywords": [
+ "crash-reporting",
+ "crash-reports",
+ "error-handler",
+ "error-monitoring",
+ "log",
+ "logging",
+ "sentry"
+ ],
+ "support": {
+ "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
+ "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.5.0"
+ },
+ "funding": [
+ {
+ "url": "https://sentry.io/",
+ "type": "custom"
+ },
+ {
+ "url": "https://sentry.io/pricing/",
+ "type": "custom"
+ }
+ ],
+ "time": "2023-06-12T17:50:36+00:00"
+ },
+ {
+ "name": "sentry/sentry",
+ "version": "3.20.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/getsentry/sentry-php.git",
+ "reference": "644ad9768c18139a80ac510090fad000d9ffd8a4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/644ad9768c18139a80ac510090fad000d9ffd8a4",
+ "reference": "644ad9768c18139a80ac510090fad000d9ffd8a4",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "guzzlehttp/promises": "^1.5.3|^2.0",
+ "jean85/pretty-package-versions": "^1.5|^2.0.4",
+ "php": "^7.2|^8.0",
+ "php-http/async-client-implementation": "^1.0",
+ "php-http/client-common": "^1.5|^2.0",
+ "php-http/discovery": "^1.15",
+ "php-http/httplug": "^1.1|^2.0",
+ "php-http/message": "^1.5",
+ "php-http/message-factory": "^1.1",
+ "psr/http-factory": "^1.0",
+ "psr/http-factory-implementation": "^1.0",
+ "psr/log": "^1.0|^2.0|^3.0",
+ "symfony/options-resolver": "^3.4.43|^4.4.30|^5.0.11|^6.0",
+ "symfony/polyfill-php80": "^1.17"
+ },
+ "conflict": {
+ "php-http/client-common": "1.8.0",
+ "raven/raven": "*"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^2.19|3.4.*",
+ "guzzlehttp/psr7": "^1.8.4|^2.1.1",
+ "http-interop/http-factory-guzzle": "^1.0",
+ "monolog/monolog": "^1.6|^2.0|^3.0",
+ "nikic/php-parser": "^4.10.3",
+ "php-http/mock-client": "^1.3",
+ "phpbench/phpbench": "^1.0",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^1.3",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpunit/phpunit": "^8.5.14|^9.4",
+ "symfony/phpunit-bridge": "^5.2|^6.0",
+ "vimeo/psalm": "^4.17"
+ },
+ "suggest": {
+ "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.13.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Sentry\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Sentry",
+ "email": "accounts@sentry.io"
+ }
+ ],
+ "description": "A PHP SDK for Sentry (http://sentry.io)",
+ "homepage": "http://sentry.io",
+ "keywords": [
+ "crash-reporting",
+ "crash-reports",
+ "error-handler",
+ "error-monitoring",
+ "log",
+ "logging",
+ "sentry"
+ ],
+ "support": {
+ "issues": "https://github.com/getsentry/sentry-php/issues",
+ "source": "https://github.com/getsentry/sentry-php/tree/3.20.1"
+ },
+ "funding": [
+ {
+ "url": "https://sentry.io/",
+ "type": "custom"
+ },
+ {
+ "url": "https://sentry.io/pricing/",
+ "type": "custom"
+ }
+ ],
+ "time": "2023-06-26T11:01:40+00:00"
+ },
+ {
+ "name": "sentry/sentry-laravel",
+ "version": "3.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/getsentry/sentry-laravel.git",
+ "reference": "6aacef4d12c22046f68ab617ee1496b9655b8eb9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/getsentry/sentry-laravel/zipball/6aacef4d12c22046f68ab617ee1496b9655b8eb9",
+ "reference": "6aacef4d12c22046f68ab617ee1496b9655b8eb9",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/support": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0",
+ "nyholm/psr7": "^1.0",
+ "php": "^7.2 | ^8.0",
+ "sentry/sdk": "^3.4",
+ "sentry/sentry": "^3.20",
+ "symfony/psr-http-message-bridge": "^1.0 | ^2.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.11",
+ "laravel/framework": "^6.0 | ^7.0 | ^8.0 | ^9.0 | ^10.0",
+ "mockery/mockery": "^1.3",
+ "orchestra/testbench": "^4.7 | ^5.1 | ^6.0 | ^7.0 | ^8.0",
+ "phpunit/phpunit": "^8.4 | ^9.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev",
+ "dev-2.x": "2.x-dev",
+ "dev-1.x": "1.x-dev",
+ "dev-0.x": "0.x-dev"
+ },
+ "laravel": {
+ "providers": [
+ "Sentry\\Laravel\\ServiceProvider",
+ "Sentry\\Laravel\\Tracing\\ServiceProvider"
+ ],
+ "aliases": {
+ "Sentry": "Sentry\\Laravel\\Facade"
+ }
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "Sentry\\Laravel\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Sentry",
+ "email": "accounts@sentry.io"
+ }
+ ],
+ "description": "Laravel SDK for Sentry (https://sentry.io)",
+ "homepage": "https://sentry.io",
+ "keywords": [
+ "crash-reporting",
+ "crash-reports",
+ "error-handler",
+ "error-monitoring",
+ "laravel",
+ "log",
+ "logging",
+ "sentry"
+ ],
+ "support": {
+ "issues": "https://github.com/getsentry/sentry-laravel/issues",
+ "source": "https://github.com/getsentry/sentry-laravel/tree/3.6.0"
+ },
+ "funding": [
+ {
+ "url": "https://sentry.io/",
+ "type": "custom"
+ },
+ {
+ "url": "https://sentry.io/pricing/",
+ "type": "custom"
+ }
+ ],
+ "time": "2023-06-29T10:31:13+00:00"
+ },
+ {
+ "name": "spatie/laravel-route-attributes",
+ "version": "1.18.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/laravel-route-attributes.git",
+ "reference": "6f19ad379f79a8c87b3b21ee9c3b6dc72080123d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/laravel-route-attributes/zipball/6f19ad379f79a8c87b3b21ee9c3b6dc72080123d",
+ "reference": "6f19ad379f79a8c87b3b21ee9c3b6dc72080123d",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/contracts": "^8.70|^9.0|^10.0",
+ "nesbot/carbon": "^2.63",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "orchestra/testbench": "^6.25|^7.0|^8.0",
+ "phpunit/phpunit": "^9.5.10"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Spatie\\RouteAttributes\\RouteAttributesServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spatie\\RouteAttributes\\": "src",
+ "Spatie\\RouteAttributes\\Database\\Factories\\": "database/factories"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "homepage": "https://spatie.be",
+ "role": "Developer"
+ }
+ ],
+ "description": "Auto register routes using PHP attributes",
+ "homepage": "https://github.com/spatie/laravel-route-attributes",
+ "keywords": [
+ "laravel-route-attributes",
+ "spatie"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/laravel-route-attributes/issues",
+ "source": "https://github.com/spatie/laravel-route-attributes/tree/1.18.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/spatie",
+ "type": "github"
+ },
+ {
+ "url": "https://spatie.be/open-source/support-us",
+ "type": "other"
+ }
+ ],
+ "time": "2023-03-09T15:47:11+00:00"
+ },
+ {
+ "name": "spiral/attributes",
+ "version": "v3.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spiral/attributes.git",
+ "reference": "b1c3f9cd8b7b0632f03e7046a38c2a98f3ed2e65"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spiral/attributes/zipball/b1c3f9cd8b7b0632f03e7046a38c2a98f3ed2e65",
+ "reference": "b1c3f9cd8b7b0632f03e7046a38c2a98f3ed2e65",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/cache": ">=1.0",
+ "psr/simple-cache": "1 - 3"
+ },
+ "require-dev": {
+ "doctrine/annotations": "^1.12 || ^2.0",
+ "jetbrains/phpstorm-attributes": "^1.0",
+ "phpunit/phpunit": "^9.5.20",
+ "symfony/var-dumper": "^5.2 || ^6.0",
+ "vimeo/psalm": "^4.21"
+ },
+ "suggest": {
+ "doctrine/annotations": "^1.0 for Doctrine metadata driver support"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.1.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/polyfill.php"
+ ],
+ "psr-4": {
+ "Spiral\\Attributes\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Kirill Nesmeyanov (SerafimArts)",
+ "email": "kirill.nesmeyanov@spiralscout.com"
+ }
+ ],
+ "description": "PHP attributes reader",
+ "homepage": "https://spiral.dev",
+ "support": {
+ "issues": "https://github.com/spiral/attributes/issues",
+ "source": "https://github.com/spiral/attributes"
+ },
+ "time": "2023-03-15T07:25:15+00:00"
+ },
+ {
+ "name": "spiral/core",
+ "version": "3.7.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spiral/core.git",
+ "reference": "baa4fcdbc319a2c6ba4037601f4516aa3f6fac14"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spiral/core/zipball/baa4fcdbc319a2c6ba4037601f4516aa3f6fac14",
+ "reference": "baa4fcdbc319a2c6ba4037601f4516aa3f6fac14",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/container": "^1.1|^2.0"
+ },
+ "provide": {
+ "psr/container-implementation": "^1.1|^2.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.5",
+ "phpunit/phpunit": "^9.5.20",
+ "vimeo/psalm": "^5.9"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.8.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spiral\\Core\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Anton Titov (wolfy-j)",
+ "email": "wolfy-j@spiralscout.com"
+ },
+ {
+ "name": "Pavel Butchnev (butschster)",
+ "email": "pavel.buchnev@spiralscout.com"
+ },
+ {
+ "name": "Aleksei Gagarin (roxblnfk)",
+ "email": "alexey.gagarin@spiralscout.com"
+ },
+ {
+ "name": "Maksim Smakouz (msmakouz)",
+ "email": "maksim.smakouz@spiralscout.com"
+ }
+ ],
+ "description": "IoC container, IoC scopes, factory, memory, configuration interfaces",
+ "homepage": "https://spiral.dev",
+ "support": {
+ "issues": "https://github.com/spiral/framework/issues",
+ "source": "https://github.com/spiral/core"
+ },
+ "time": "2023-04-20T16:02:14+00:00"
+ },
+ {
+ "name": "spiral/files",
+ "version": "3.7.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spiral/files.git",
+ "reference": "7f22e4967b585d01c11b81e430608efdb8c9645a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spiral/files/zipball/7f22e4967b585d01c11b81e430608efdb8c9645a",
+ "reference": "7f22e4967b585d01c11b81e430608efdb8c9645a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.5",
+ "phpunit/phpunit": "^9.5.20",
+ "vimeo/psalm": "^5.9"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.8.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spiral\\Files\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Anton Titov (wolfy-j)",
+ "email": "wolfy-j@spiralscout.com"
+ },
+ {
+ "name": "Pavel Butchnev (butschster)",
+ "email": "pavel.buchnev@spiralscout.com"
+ },
+ {
+ "name": "Aleksei Gagarin (roxblnfk)",
+ "email": "alexey.gagarin@spiralscout.com"
+ },
+ {
+ "name": "Maksim Smakouz (msmakouz)",
+ "email": "maksim.smakouz@spiralscout.com"
+ }
+ ],
+ "description": "File Toolkit: atomic file manager",
+ "homepage": "https://spiral.dev",
+ "support": {
+ "issues": "https://github.com/spiral/framework/issues",
+ "source": "https://github.com/spiral/files"
+ },
+ "time": "2023-04-20T16:02:36+00:00"
+ },
+ {
+ "name": "spiral/logger",
+ "version": "3.7.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spiral/logger.git",
+ "reference": "869aa5fad56d135e96338b63d5de4b69b7920bb8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spiral/logger/zipball/869aa5fad56d135e96338b63d5de4b69b7920bb8",
+ "reference": "869aa5fad56d135e96338b63d5de4b69b7920bb8",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/log": "1 - 3",
+ "spiral/core": "^3.7.1"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.5",
+ "phpunit/phpunit": "^9.5.20",
+ "vimeo/psalm": "^5.9"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.8.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spiral\\Logger\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Anton Titov (wolfy-j)",
+ "email": "wolfy-j@spiralscout.com"
+ },
+ {
+ "name": "Pavel Butchnev (butschster)",
+ "email": "pavel.buchnev@spiralscout.com"
+ },
+ {
+ "name": "Aleksei Gagarin (roxblnfk)",
+ "email": "alexey.gagarin@spiralscout.com"
+ },
+ {
+ "name": "Maksim Smakouz (msmakouz)",
+ "email": "maksim.smakouz@spiralscout.com"
+ }
+ ],
+ "description": "LogFactory and global log listeners",
+ "homepage": "https://spiral.dev",
+ "support": {
+ "issues": "https://github.com/spiral/framework/issues",
+ "source": "https://github.com/spiral/logger"
+ },
+ "time": "2023-04-21T14:43:14+00:00"
+ },
+ {
+ "name": "spiral/pagination",
+ "version": "3.7.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spiral/pagination.git",
+ "reference": "753d2604cda3363414c1a703bafb709d57a52918"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spiral/pagination/zipball/753d2604cda3363414c1a703bafb709d57a52918",
+ "reference": "753d2604cda3363414c1a703bafb709d57a52918",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.5",
+ "phpunit/phpunit": "^9.5.20",
+ "vimeo/psalm": "^5.9"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.8.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spiral\\Pagination\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Anton Titov (wolfy-j)",
+ "email": "wolfy-j@spiralscout.com"
+ },
+ {
+ "name": "Pavel Butchnev (butschster)",
+ "email": "pavel.buchnev@spiralscout.com"
+ },
+ {
+ "name": "Aleksei Gagarin (roxblnfk)",
+ "email": "alexey.gagarin@spiralscout.com"
+ },
+ {
+ "name": "Maksim Smakouz (msmakouz)",
+ "email": "maksim.smakouz@spiralscout.com"
+ }
+ ],
+ "description": "Common pagination interfaces",
+ "homepage": "https://spiral.dev",
+ "support": {
+ "issues": "https://github.com/spiral/framework/issues",
+ "source": "https://github.com/spiral/pagination"
+ },
+ "time": "2023-04-20T16:06:33+00:00"
+ },
+ {
+ "name": "spiral/reactor",
+ "version": "3.7.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spiral/reactor.git",
+ "reference": "2cb26d1231a264d7811716d2144e4d4bbddb5b5f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spiral/reactor/zipball/2cb26d1231a264d7811716d2144e4d4bbddb5b5f",
+ "reference": "2cb26d1231a264d7811716d2144e4d4bbddb5b5f",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/inflector": "^1.4|^2.0",
+ "nette/php-generator": "^4.0.1",
+ "php": ">=8.1",
+ "spiral/files": "^3.7.1"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.5",
+ "phpunit/phpunit": "^9.5.20",
+ "psr/container": "^1.1|^2.0",
+ "vimeo/psalm": "^5.9"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.8.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spiral\\Reactor\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Anton Titov (wolfy-j)",
+ "email": "wolfy-j@spiralscout.com"
+ },
+ {
+ "name": "Pavel Butchnev (butschster)",
+ "email": "pavel.buchnev@spiralscout.com"
+ },
+ {
+ "name": "Aleksei Gagarin (roxblnfk)",
+ "email": "alexey.gagarin@spiralscout.com"
+ },
+ {
+ "name": "Maksim Smakouz (msmakouz)",
+ "email": "maksim.smakouz@spiralscout.com"
+ }
+ ],
+ "description": "Reactor: Code Scaffolding",
+ "homepage": "https://spiral.dev",
+ "support": {
+ "issues": "https://github.com/spiral/framework/issues",
+ "source": "https://github.com/spiral/reactor"
+ },
+ "time": "2023-04-21T14:43:14+00:00"
+ },
+ {
+ "name": "spiral/tokenizer",
+ "version": "3.7.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spiral/tokenizer.git",
+ "reference": "ac2001df3ed7438f62f1ef2e294cf4bdccb8613d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spiral/tokenizer/zipball/ac2001df3ed7438f62f1ef2e294cf4bdccb8613d",
+ "reference": "ac2001df3ed7438f62f1ef2e294cf4bdccb8613d",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "php": ">=8.1",
+ "spiral/core": "^3.7.1",
+ "spiral/logger": "^3.7.1",
+ "symfony/finder": "^5.3.7|^6.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.5.20",
+ "spiral/attributes": "^2.8|^3.0",
+ "spiral/boot": "^3.7.1",
+ "spiral/files": "^3.7.1",
+ "vimeo/psalm": "^5.9"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.8.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Spiral\\Tokenizer\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Anton Titov (wolfy-j)",
+ "email": "wolfy-j@spiralscout.com"
+ },
+ {
+ "name": "Pavel Butchnev (butschster)",
+ "email": "pavel.buchnev@spiralscout.com"
+ },
+ {
+ "name": "Aleksei Gagarin (roxblnfk)",
+ "email": "alexey.gagarin@spiralscout.com"
+ },
+ {
+ "name": "Maksim Smakouz (msmakouz)",
+ "email": "maksim.smakouz@spiralscout.com"
+ }
+ ],
+ "description": "Static Analysis: Class and Invocation locators",
+ "homepage": "https://spiral.dev",
+ "support": {
+ "issues": "https://github.com/spiral/framework/issues",
+ "source": "https://github.com/spiral/tokenizer"
},
- "time": "2023-03-15T07:25:15+00:00"
+ "time": "2023-04-21T14:43:41+00:00"
},
{
- "name": "spiral/core",
- "version": "3.7.1",
+ "name": "symfony/console",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/spiral/core.git",
- "reference": "baa4fcdbc319a2c6ba4037601f4516aa3f6fac14"
+ "url": "https://github.com/symfony/console.git",
+ "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/console/zipball/8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
+ "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/string": "^5.4|^6.0"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<5.4",
+ "symfony/dotenv": "<5.4",
+ "symfony/event-dispatcher": "<5.4",
+ "symfony/lock": "<5.4",
+ "symfony/process": "<5.4"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^5.4|^6.0",
+ "symfony/dependency-injection": "^5.4|^6.0",
+ "symfony/event-dispatcher": "^5.4|^6.0",
+ "symfony/lock": "^5.4|^6.0",
+ "symfony/process": "^5.4|^6.0",
+ "symfony/var-dumper": "^5.4|^6.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Console\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Eases the creation of beautiful and testable command line interfaces",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "cli",
+ "command-line",
+ "console",
+ "terminal"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/console/tree/v6.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-05-29T12:49:39+00:00"
+ },
+ {
+ "name": "symfony/css-selector",
+ "version": "v6.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/css-selector.git",
+ "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
+ "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\CssSelector\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Jean-Franรงois Simon",
+ "email": "jeanfrancois.simon@sensiolabs.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Converts CSS selectors to XPath expressions",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/css-selector/tree/v6.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-03-20T16:43:42+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v3.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
+ "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.4-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-05-23T14:45:45+00:00"
+ },
+ {
+ "name": "symfony/error-handler",
+ "version": "v6.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/error-handler.git",
+ "reference": "99d2d814a6351461af350ead4d963bd67451236f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spiral/core/zipball/baa4fcdbc319a2c6ba4037601f4516aa3f6fac14",
- "reference": "baa4fcdbc319a2c6ba4037601f4516aa3f6fac14",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/99d2d814a6351461af350ead4d963bd67451236f",
+ "reference": "99d2d814a6351461af350ead4d963bd67451236f",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "psr/container": "^1.1|^2.0"
+ "psr/log": "^1|^2|^3",
+ "symfony/var-dumper": "^5.4|^6.0"
},
- "provide": {
- "psr/container-implementation": "^1.1|^2.0"
+ "conflict": {
+ "symfony/deprecation-contracts": "<2.5"
},
"require-dev": {
- "mockery/mockery": "^1.5",
- "phpunit/phpunit": "^9.5.20",
- "vimeo/psalm": "^5.9"
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/http-kernel": "^5.4|^6.0",
+ "symfony/serializer": "^5.4|^6.0"
},
+ "bin": [
+ "Resources/bin/patch-type-declarations"
+ ],
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.8.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "Spiral\\Core\\": "src"
- }
+ "Symfony\\Component\\ErrorHandler\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4703,62 +6757,79 @@
],
"authors": [
{
- "name": "Anton Titov (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
- "name": "Pavel Butchnev (butschster)",
- "email": "pavel.buchnev@spiralscout.com"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools to manage errors and ease debugging PHP code",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/error-handler/tree/v6.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
},
{
- "name": "Aleksei Gagarin (roxblnfk)",
- "email": "alexey.gagarin@spiralscout.com"
+ "url": "https://github.com/fabpot",
+ "type": "github"
},
{
- "name": "Maksim Smakouz (msmakouz)",
- "email": "maksim.smakouz@spiralscout.com"
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "description": "IoC container, IoC scopes, factory, memory, configuration interfaces",
- "homepage": "https://spiral.dev",
- "support": {
- "issues": "https://github.com/spiral/framework/issues",
- "source": "https://github.com/spiral/core"
- },
- "time": "2023-04-20T16:02:14+00:00"
+ "time": "2023-05-10T12:03:13+00:00"
},
{
- "name": "spiral/files",
- "version": "3.7.1",
+ "name": "symfony/event-dispatcher",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/spiral/files.git",
- "reference": "7f22e4967b585d01c11b81e430608efdb8c9645a"
+ "url": "https://github.com/symfony/event-dispatcher.git",
+ "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spiral/files/zipball/7f22e4967b585d01c11b81e430608efdb8c9645a",
- "reference": "7f22e4967b585d01c11b81e430608efdb8c9645a",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
+ "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=8.1",
+ "symfony/event-dispatcher-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<5.4",
+ "symfony/service-contracts": "<2.5"
+ },
+ "provide": {
+ "psr/event-dispatcher-implementation": "1.0",
+ "symfony/event-dispatcher-implementation": "2.0|3.0"
},
"require-dev": {
- "mockery/mockery": "^1.5",
- "phpunit/phpunit": "^9.5.20",
- "vimeo/psalm": "^5.9"
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^5.4|^6.0",
+ "symfony/dependency-injection": "^5.4|^6.0",
+ "symfony/error-handler": "^5.4|^6.0",
+ "symfony/expression-language": "^5.4|^6.0",
+ "symfony/http-foundation": "^5.4|^6.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/stopwatch": "^5.4|^6.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.8.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "Spiral\\Files\\": "src"
- }
+ "Symfony\\Component\\EventDispatcher\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4766,63 +6837,66 @@
],
"authors": [
{
- "name": "Anton Titov (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
- "name": "Pavel Butchnev (butschster)",
- "email": "pavel.buchnev@spiralscout.com"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
},
{
- "name": "Aleksei Gagarin (roxblnfk)",
- "email": "alexey.gagarin@spiralscout.com"
+ "url": "https://github.com/fabpot",
+ "type": "github"
},
{
- "name": "Maksim Smakouz (msmakouz)",
- "email": "maksim.smakouz@spiralscout.com"
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "description": "File Toolkit: atomic file manager",
- "homepage": "https://spiral.dev",
- "support": {
- "issues": "https://github.com/spiral/framework/issues",
- "source": "https://github.com/spiral/files"
- },
- "time": "2023-04-20T16:02:36+00:00"
+ "time": "2023-04-21T14:41:17+00:00"
},
{
- "name": "spiral/logger",
- "version": "3.7.1",
+ "name": "symfony/event-dispatcher-contracts",
+ "version": "v3.3.0",
"source": {
"type": "git",
- "url": "https://github.com/spiral/logger.git",
- "reference": "869aa5fad56d135e96338b63d5de4b69b7920bb8"
+ "url": "https://github.com/symfony/event-dispatcher-contracts.git",
+ "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spiral/logger/zipball/869aa5fad56d135e96338b63d5de4b69b7920bb8",
- "reference": "869aa5fad56d135e96338b63d5de4b69b7920bb8",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
+ "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "psr/log": "1 - 3",
- "spiral/core": "^3.7.1"
- },
- "require-dev": {
- "mockery/mockery": "^1.5",
- "phpunit/phpunit": "^9.5.20",
- "vimeo/psalm": "^5.9"
+ "psr/event-dispatcher": "^1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.8.x-dev"
+ "dev-main": "3.4-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
"psr-4": {
- "Spiral\\Logger\\": "src"
+ "Symfony\\Contracts\\EventDispatcher\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4831,62 +6905,71 @@
],
"authors": [
{
- "name": "Anton Titov (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
- "name": "Pavel Butchnev (butschster)",
- "email": "pavel.buchnev@spiralscout.com"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to dispatching event",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
},
{
- "name": "Aleksei Gagarin (roxblnfk)",
- "email": "alexey.gagarin@spiralscout.com"
+ "url": "https://github.com/fabpot",
+ "type": "github"
},
{
- "name": "Maksim Smakouz (msmakouz)",
- "email": "maksim.smakouz@spiralscout.com"
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "description": "LogFactory and global log listeners",
- "homepage": "https://spiral.dev",
- "support": {
- "issues": "https://github.com/spiral/framework/issues",
- "source": "https://github.com/spiral/logger"
- },
- "time": "2023-04-21T14:43:14+00:00"
+ "time": "2023-05-23T14:45:45+00:00"
},
{
- "name": "spiral/pagination",
- "version": "3.7.1",
+ "name": "symfony/finder",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/spiral/pagination.git",
- "reference": "753d2604cda3363414c1a703bafb709d57a52918"
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spiral/pagination/zipball/753d2604cda3363414c1a703bafb709d57a52918",
- "reference": "753d2604cda3363414c1a703bafb709d57a52918",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/d9b01ba073c44cef617c7907ce2419f8d00d75e2",
+ "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2",
"shasum": ""
},
"require": {
"php": ">=8.1"
},
"require-dev": {
- "mockery/mockery": "^1.5",
- "phpunit/phpunit": "^9.5.20",
- "vimeo/psalm": "^5.9"
+ "symfony/filesystem": "^6.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.8.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "Spiral\\Pagination\\": "src"
- }
+ "Symfony\\Component\\Finder\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4894,66 +6977,88 @@
],
"authors": [
{
- "name": "Anton Titov (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
- "name": "Pavel Butchnev (butschster)",
- "email": "pavel.buchnev@spiralscout.com"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Finds files and directories via an intuitive fluent interface",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/finder/tree/v6.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
},
{
- "name": "Aleksei Gagarin (roxblnfk)",
- "email": "alexey.gagarin@spiralscout.com"
+ "url": "https://github.com/fabpot",
+ "type": "github"
},
{
- "name": "Maksim Smakouz (msmakouz)",
- "email": "maksim.smakouz@spiralscout.com"
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "description": "Common pagination interfaces",
- "homepage": "https://spiral.dev",
- "support": {
- "issues": "https://github.com/spiral/framework/issues",
- "source": "https://github.com/spiral/pagination"
- },
- "time": "2023-04-20T16:06:33+00:00"
+ "time": "2023-04-02T01:25:41+00:00"
},
{
- "name": "spiral/reactor",
- "version": "3.7.1",
+ "name": "symfony/http-client",
+ "version": "v6.3.1",
"source": {
"type": "git",
- "url": "https://github.com/spiral/reactor.git",
- "reference": "2cb26d1231a264d7811716d2144e4d4bbddb5b5f"
+ "url": "https://github.com/symfony/http-client.git",
+ "reference": "1c828a06aef2f5eeba42026dfc532d4fc5406123"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spiral/reactor/zipball/2cb26d1231a264d7811716d2144e4d4bbddb5b5f",
- "reference": "2cb26d1231a264d7811716d2144e4d4bbddb5b5f",
+ "url": "https://api.github.com/repos/symfony/http-client/zipball/1c828a06aef2f5eeba42026dfc532d4fc5406123",
+ "reference": "1c828a06aef2f5eeba42026dfc532d4fc5406123",
"shasum": ""
},
"require": {
- "doctrine/inflector": "^1.4|^2.0",
- "nette/php-generator": "^4.0.1",
"php": ">=8.1",
- "spiral/files": "^3.7.1"
+ "psr/log": "^1|^2|^3",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/http-client-contracts": "^3",
+ "symfony/service-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "php-http/discovery": "<1.15",
+ "symfony/http-foundation": "<6.3"
+ },
+ "provide": {
+ "php-http/async-client-implementation": "*",
+ "php-http/client-implementation": "*",
+ "psr/http-client-implementation": "1.0",
+ "symfony/http-client-implementation": "3.0"
},
"require-dev": {
- "mockery/mockery": "^1.5",
- "phpunit/phpunit": "^9.5.20",
- "psr/container": "^1.1|^2.0",
- "vimeo/psalm": "^5.9"
+ "amphp/amp": "^2.5",
+ "amphp/http-client": "^4.2.1",
+ "amphp/http-tunnel": "^1.0",
+ "amphp/socket": "^1.1",
+ "guzzlehttp/promises": "^1.4",
+ "nyholm/psr7": "^1.0",
+ "php-http/httplug": "^1.0|^2.0",
+ "psr/http-client": "^1.0",
+ "symfony/dependency-injection": "^5.4|^6.0",
+ "symfony/http-kernel": "^5.4|^6.0",
+ "symfony/process": "^5.4|^6.0",
+ "symfony/stopwatch": "^5.4|^6.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.8.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "Spiral\\Reactor\\": "src"
- }
+ "Symfony\\Component\\HttpClient\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4961,68 +7066,72 @@
],
"authors": [
{
- "name": "Anton Titov (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
- "name": "Pavel Butchnev (butschster)",
- "email": "pavel.buchnev@spiralscout.com"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "http"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/http-client/tree/v6.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
},
{
- "name": "Aleksei Gagarin (roxblnfk)",
- "email": "alexey.gagarin@spiralscout.com"
+ "url": "https://github.com/fabpot",
+ "type": "github"
},
{
- "name": "Maksim Smakouz (msmakouz)",
- "email": "maksim.smakouz@spiralscout.com"
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "description": "Reactor: Code Scaffolding",
- "homepage": "https://spiral.dev",
- "support": {
- "issues": "https://github.com/spiral/framework/issues",
- "source": "https://github.com/spiral/reactor"
- },
- "time": "2023-04-21T14:43:14+00:00"
+ "time": "2023-06-24T11:51:27+00:00"
},
{
- "name": "spiral/tokenizer",
- "version": "3.7.1",
+ "name": "symfony/http-client-contracts",
+ "version": "v3.3.0",
"source": {
"type": "git",
- "url": "https://github.com/spiral/tokenizer.git",
- "reference": "ac2001df3ed7438f62f1ef2e294cf4bdccb8613d"
+ "url": "https://github.com/symfony/http-client-contracts.git",
+ "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spiral/tokenizer/zipball/ac2001df3ed7438f62f1ef2e294cf4bdccb8613d",
- "reference": "ac2001df3ed7438f62f1ef2e294cf4bdccb8613d",
+ "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/3b66325d0176b4ec826bffab57c9037d759c31fb",
+ "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb",
"shasum": ""
},
"require": {
- "ext-tokenizer": "*",
- "php": ">=8.1",
- "spiral/core": "^3.7.1",
- "spiral/logger": "^3.7.1",
- "symfony/finder": "^5.3.7|^6.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.5.20",
- "spiral/attributes": "^2.8|^3.0",
- "spiral/boot": "^3.7.1",
- "spiral/files": "^3.7.1",
- "vimeo/psalm": "^5.9"
+ "php": ">=8.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.8.x-dev"
+ "dev-main": "3.4-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
"psr-4": {
- "Spiral\\Tokenizer\\": "src"
- }
+ "Symfony\\Contracts\\HttpClient\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5030,74 +7139,80 @@
],
"authors": [
{
- "name": "Anton Titov (wolfy-j)",
- "email": "wolfy-j@spiralscout.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
- "name": "Pavel Butchnev (butschster)",
- "email": "pavel.buchnev@spiralscout.com"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to HTTP clients",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/http-client-contracts/tree/v3.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
},
{
- "name": "Aleksei Gagarin (roxblnfk)",
- "email": "alexey.gagarin@spiralscout.com"
+ "url": "https://github.com/fabpot",
+ "type": "github"
},
{
- "name": "Maksim Smakouz (msmakouz)",
- "email": "maksim.smakouz@spiralscout.com"
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "description": "Static Analysis: Class and Invocation locators",
- "homepage": "https://spiral.dev",
- "support": {
- "issues": "https://github.com/spiral/framework/issues",
- "source": "https://github.com/spiral/tokenizer"
- },
- "time": "2023-04-21T14:43:41+00:00"
+ "time": "2023-05-23T14:45:45+00:00"
},
{
- "name": "symfony/console",
- "version": "v6.3.0",
+ "name": "symfony/http-foundation",
+ "version": "v6.3.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/console.git",
- "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7"
+ "url": "https://github.com/symfony/http-foundation.git",
+ "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
- "reference": "8788808b07cf0bdd6e4b7fdd23d8ddb1470c83b7",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
+ "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
"shasum": ""
},
"require": {
"php": ">=8.1",
"symfony/deprecation-contracts": "^2.5|^3",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/string": "^5.4|^6.0"
+ "symfony/polyfill-mbstring": "~1.1",
+ "symfony/polyfill-php83": "^1.27"
},
"conflict": {
- "symfony/dependency-injection": "<5.4",
- "symfony/dotenv": "<5.4",
- "symfony/event-dispatcher": "<5.4",
- "symfony/lock": "<5.4",
- "symfony/process": "<5.4"
- },
- "provide": {
- "psr/log-implementation": "1.0|2.0|3.0"
+ "symfony/cache": "<6.2"
},
"require-dev": {
- "psr/log": "^1|^2|^3",
- "symfony/config": "^5.4|^6.0",
+ "doctrine/dbal": "^2.13.1|^3.0",
+ "predis/predis": "^1.1|^2.0",
+ "symfony/cache": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
- "symfony/event-dispatcher": "^5.4|^6.0",
- "symfony/lock": "^5.4|^6.0",
- "symfony/process": "^5.4|^6.0",
- "symfony/var-dumper": "^5.4|^6.0"
+ "symfony/expression-language": "^5.4|^6.0",
+ "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
+ "symfony/mime": "^5.4|^6.0",
+ "symfony/rate-limiter": "^5.2|^6.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Console\\": ""
+ "Symfony\\Component\\HttpFoundation\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -5113,20 +7228,14 @@
"email": "fabien@symfony.com"
},
{
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Eases the creation of beautiful and testable command line interfaces",
- "homepage": "https://symfony.com",
- "keywords": [
- "cli",
- "command-line",
- "console",
- "terminal"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
],
+ "description": "Defines an object-oriented layer for the HTTP specification",
+ "homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/console/tree/v6.3.0"
+ "source": "https://github.com/symfony/http-foundation/tree/v6.3.1"
},
"funding": [
{
@@ -5142,29 +7251,81 @@
"type": "tidelift"
}
],
- "time": "2023-05-29T12:49:39+00:00"
+ "time": "2023-06-24T11:51:27+00:00"
},
{
- "name": "symfony/css-selector",
- "version": "v6.3.0",
+ "name": "symfony/http-kernel",
+ "version": "v6.3.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/css-selector.git",
- "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf"
+ "url": "https://github.com/symfony/http-kernel.git",
+ "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
- "reference": "88453e64cd86c5b60e8d2fb2c6f953bbc353ffbf",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
+ "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=8.1",
+ "psr/log": "^1|^2|^3",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/error-handler": "^6.3",
+ "symfony/event-dispatcher": "^5.4|^6.0",
+ "symfony/http-foundation": "^6.2.7",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "symfony/browser-kit": "<5.4",
+ "symfony/cache": "<5.4",
+ "symfony/config": "<6.1",
+ "symfony/console": "<5.4",
+ "symfony/dependency-injection": "<6.3",
+ "symfony/doctrine-bridge": "<5.4",
+ "symfony/form": "<5.4",
+ "symfony/http-client": "<5.4",
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/mailer": "<5.4",
+ "symfony/messenger": "<5.4",
+ "symfony/translation": "<5.4",
+ "symfony/translation-contracts": "<2.5",
+ "symfony/twig-bridge": "<5.4",
+ "symfony/validator": "<5.4",
+ "symfony/var-dumper": "<6.3",
+ "twig/twig": "<2.13"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
+ },
+ "require-dev": {
+ "psr/cache": "^1.0|^2.0|^3.0",
+ "symfony/browser-kit": "^5.4|^6.0",
+ "symfony/clock": "^6.2",
+ "symfony/config": "^6.1",
+ "symfony/console": "^5.4|^6.0",
+ "symfony/css-selector": "^5.4|^6.0",
+ "symfony/dependency-injection": "^6.3",
+ "symfony/dom-crawler": "^5.4|^6.0",
+ "symfony/expression-language": "^5.4|^6.0",
+ "symfony/finder": "^5.4|^6.0",
+ "symfony/http-client-contracts": "^2.5|^3",
+ "symfony/process": "^5.4|^6.0",
+ "symfony/property-access": "^5.4.5|^6.0.5",
+ "symfony/routing": "^5.4|^6.0",
+ "symfony/serializer": "^6.3",
+ "symfony/stopwatch": "^5.4|^6.0",
+ "symfony/translation": "^5.4|^6.0",
+ "symfony/translation-contracts": "^2.5|^3",
+ "symfony/uid": "^5.4|^6.0",
+ "symfony/validator": "^6.3",
+ "symfony/var-exporter": "^6.2",
+ "twig/twig": "^2.13|^3.0.4"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\CssSelector\\": ""
+ "Symfony\\Component\\HttpKernel\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -5179,19 +7340,15 @@
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
- {
- "name": "Jean-Franรงois Simon",
- "email": "jeanfrancois.simon@sensiolabs.com"
- },
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Converts CSS selectors to XPath expressions",
+ "description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/css-selector/tree/v6.3.0"
+ "source": "https://github.com/symfony/http-kernel/tree/v6.3.1"
},
"funding": [
{
@@ -5207,38 +7364,51 @@
"type": "tidelift"
}
],
- "time": "2023-03-20T16:43:42+00:00"
+ "time": "2023-06-26T06:07:32+00:00"
},
{
- "name": "symfony/deprecation-contracts",
- "version": "v3.3.0",
+ "name": "symfony/mailer",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
+ "url": "https://github.com/symfony/mailer.git",
+ "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
- "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
+ "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "egulias/email-validator": "^2.1.10|^3|^4",
+ "php": ">=8.1",
+ "psr/event-dispatcher": "^1",
+ "psr/log": "^1|^2|^3",
+ "symfony/event-dispatcher": "^5.4|^6.0",
+ "symfony/mime": "^6.2",
+ "symfony/service-contracts": "^2.5|^3"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
+ "conflict": {
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/http-kernel": "<5.4",
+ "symfony/messenger": "<6.2",
+ "symfony/mime": "<6.2",
+ "symfony/twig-bridge": "<6.2.1"
+ },
+ "require-dev": {
+ "symfony/console": "^5.4|^6.0",
+ "symfony/http-client": "^5.4|^6.0",
+ "symfony/messenger": "^6.2",
+ "symfony/twig-bridge": "^6.2"
},
+ "type": "library",
"autoload": {
- "files": [
- "function.php"
+ "psr-4": {
+ "Symfony\\Component\\Mailer\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -5247,18 +7417,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "A generic function and convention to trigger deprecation notices",
+ "description": "Helps sending emails",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
+ "source": "https://github.com/symfony/mailer/tree/v6.3.0"
},
"funding": [
{
@@ -5274,42 +7444,47 @@
"type": "tidelift"
}
],
- "time": "2023-05-23T14:45:45+00:00"
+ "time": "2023-05-29T12:49:39+00:00"
},
{
- "name": "symfony/error-handler",
+ "name": "symfony/mime",
"version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/error-handler.git",
- "reference": "99d2d814a6351461af350ead4d963bd67451236f"
+ "url": "https://github.com/symfony/mime.git",
+ "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/99d2d814a6351461af350ead4d963bd67451236f",
- "reference": "99d2d814a6351461af350ead4d963bd67451236f",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
+ "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "psr/log": "^1|^2|^3",
- "symfony/var-dumper": "^5.4|^6.0"
+ "symfony/polyfill-intl-idn": "^1.10",
+ "symfony/polyfill-mbstring": "^1.0"
},
"conflict": {
- "symfony/deprecation-contracts": "<2.5"
+ "egulias/email-validator": "~3.0.0",
+ "phpdocumentor/reflection-docblock": "<3.2.2",
+ "phpdocumentor/type-resolver": "<1.4.0",
+ "symfony/mailer": "<5.4",
+ "symfony/serializer": "<6.2"
},
"require-dev": {
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/http-kernel": "^5.4|^6.0",
- "symfony/serializer": "^5.4|^6.0"
+ "egulias/email-validator": "^2.1.10|^3.1|^4",
+ "league/html-to-markdown": "^5.0",
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+ "symfony/dependency-injection": "^5.4|^6.0",
+ "symfony/property-access": "^5.4|^6.0",
+ "symfony/property-info": "^5.4|^6.0",
+ "symfony/serializer": "^6.2"
},
- "bin": [
- "Resources/bin/patch-type-declarations"
- ],
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\ErrorHandler\\": ""
+ "Symfony\\Component\\Mime\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -5329,10 +7504,14 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides tools to manage errors and ease debugging PHP code",
+ "description": "Allows manipulating MIME messages",
"homepage": "https://symfony.com",
+ "keywords": [
+ "mime",
+ "mime-type"
+ ],
"support": {
- "source": "https://github.com/symfony/error-handler/tree/v6.3.0"
+ "source": "https://github.com/symfony/mime/tree/v6.3.0"
},
"funding": [
{
@@ -5348,48 +7527,30 @@
"type": "tidelift"
}
],
- "time": "2023-05-10T12:03:13+00:00"
+ "time": "2023-04-28T15:57:00+00:00"
},
{
- "name": "symfony/event-dispatcher",
+ "name": "symfony/options-resolver",
"version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa"
+ "url": "https://github.com/symfony/options-resolver.git",
+ "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
- "reference": "3af8ac1a3f98f6dbc55e10ae59c9e44bfc38dfaa",
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a10f19f5198d589d5c33333cffe98dc9820332dd",
+ "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "symfony/event-dispatcher-contracts": "^2.5|^3"
- },
- "conflict": {
- "symfony/dependency-injection": "<5.4",
- "symfony/service-contracts": "<2.5"
- },
- "provide": {
- "psr/event-dispatcher-implementation": "1.0",
- "symfony/event-dispatcher-implementation": "2.0|3.0"
- },
- "require-dev": {
- "psr/log": "^1|^2|^3",
- "symfony/config": "^5.4|^6.0",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/error-handler": "^5.4|^6.0",
- "symfony/expression-language": "^5.4|^6.0",
- "symfony/http-foundation": "^5.4|^6.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/stopwatch": "^5.4|^6.0"
+ "symfony/deprecation-contracts": "^2.5|^3"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\EventDispatcher\\": ""
+ "Symfony\\Component\\OptionsResolver\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -5409,10 +7570,15 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
+ "description": "Provides an improved replacement for the array_replace PHP function",
"homepage": "https://symfony.com",
+ "keywords": [
+ "config",
+ "configuration",
+ "options"
+ ],
"support": {
- "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.0"
+ "source": "https://github.com/symfony/options-resolver/tree/v6.3.0"
},
"funding": [
{
@@ -5428,39 +7594,47 @@
"type": "tidelift"
}
],
- "time": "2023-04-21T14:41:17+00:00"
+ "time": "2023-05-12T14:21:09+00:00"
},
{
- "name": "symfony/event-dispatcher-contracts",
- "version": "v3.3.0",
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.27.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/event-dispatcher-contracts.git",
- "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
- "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
+ "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "psr/event-dispatcher": "^1"
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-ctype": "*"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "3.4-dev"
+ "dev-main": "1.27-dev"
},
"thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Contracts\\EventDispatcher\\": ""
+ "Symfony\\Polyfill\\Ctype\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -5469,26 +7643,24 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Generic abstractions related to dispatching event",
+ "description": "Symfony polyfill for ctype functions",
"homepage": "https://symfony.com",
"keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
],
"support": {
- "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
},
"funding": [
{
@@ -5504,36 +7676,45 @@
"type": "tidelift"
}
],
- "time": "2023-05-23T14:45:45+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
- "name": "symfony/finder",
- "version": "v6.3.0",
+ "name": "symfony/polyfill-intl-grapheme",
+ "version": "v1.27.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/finder.git",
- "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2"
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+ "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/d9b01ba073c44cef617c7907ce2419f8d00d75e2",
- "reference": "d9b01ba073c44cef617c7907ce2419f8d00d75e2",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
+ "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=7.1"
},
- "require-dev": {
- "symfony/filesystem": "^6.0"
+ "suggest": {
+ "ext-intl": "For best performance"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.27-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Finder\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5541,18 +7722,26 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Finds files and directories via an intuitive fluent interface",
+ "description": "Symfony polyfill for intl's grapheme_* functions",
"homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "grapheme",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
"support": {
- "source": "https://github.com/symfony/finder/tree/v6.3.0"
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
},
"funding": [
{
@@ -5568,61 +7757,47 @@
"type": "tidelift"
}
],
- "time": "2023-04-02T01:25:41+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
- "name": "symfony/http-client",
- "version": "v6.3.1",
+ "name": "symfony/polyfill-intl-idn",
+ "version": "v1.27.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-client.git",
- "reference": "1c828a06aef2f5eeba42026dfc532d4fc5406123"
+ "url": "https://github.com/symfony/polyfill-intl-idn.git",
+ "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client/zipball/1c828a06aef2f5eeba42026dfc532d4fc5406123",
- "reference": "1c828a06aef2f5eeba42026dfc532d4fc5406123",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
+ "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "psr/log": "^1|^2|^3",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/http-client-contracts": "^3",
- "symfony/service-contracts": "^2.5|^3"
- },
- "conflict": {
- "php-http/discovery": "<1.15",
- "symfony/http-foundation": "<6.3"
- },
- "provide": {
- "php-http/async-client-implementation": "*",
- "php-http/client-implementation": "*",
- "psr/http-client-implementation": "1.0",
- "symfony/http-client-implementation": "3.0"
+ "php": ">=7.1",
+ "symfony/polyfill-intl-normalizer": "^1.10",
+ "symfony/polyfill-php72": "^1.10"
},
- "require-dev": {
- "amphp/amp": "^2.5",
- "amphp/http-client": "^4.2.1",
- "amphp/http-tunnel": "^1.0",
- "amphp/socket": "^1.1",
- "guzzlehttp/promises": "^1.4",
- "nyholm/psr7": "^1.0",
- "php-http/httplug": "^1.0|^2.0",
- "psr/http-client": "^1.0",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/http-kernel": "^5.4|^6.0",
- "symfony/process": "^5.4|^6.0",
- "symfony/stopwatch": "^5.4|^6.0"
+ "suggest": {
+ "ext-intl": "For best performance"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.27-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\HttpClient\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Polyfill\\Intl\\Idn\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5630,21 +7805,30 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Laurent Bassin",
+ "email": "laurent@bassin.info"
+ },
+ {
+ "name": "Trevor Rowbotham",
+ "email": "trevor.rowbotham@pm.me"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
+ "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
"homepage": "https://symfony.com",
"keywords": [
- "http"
+ "compatibility",
+ "idn",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
],
"support": {
- "source": "https://github.com/symfony/http-client/tree/v6.3.1"
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
},
"funding": [
{
@@ -5660,41 +7844,47 @@
"type": "tidelift"
}
],
- "time": "2023-06-24T11:51:27+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
- "name": "symfony/http-client-contracts",
- "version": "v3.3.0",
+ "name": "symfony/polyfill-intl-normalizer",
+ "version": "v1.27.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-client-contracts.git",
- "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb"
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/3b66325d0176b4ec826bffab57c9037d759c31fb",
- "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
+ "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=7.1"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "3.4-dev"
+ "dev-main": "1.27-dev"
},
"thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Contracts\\HttpClient\\": ""
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
},
- "exclude-from-classmap": [
- "/Test/"
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -5711,18 +7901,18 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Generic abstractions related to HTTP clients",
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
"homepage": "https://symfony.com",
"keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
+ "compatibility",
+ "intl",
+ "normalizer",
+ "polyfill",
+ "portable",
+ "shim"
],
"support": {
- "source": "https://github.com/symfony/http-client-contracts/tree/v3.3.0"
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
},
"funding": [
{
@@ -5738,49 +7928,48 @@
"type": "tidelift"
}
],
- "time": "2023-05-23T14:45:45+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
- "name": "symfony/http-foundation",
- "version": "v6.3.1",
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.27.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-foundation.git",
- "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66"
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
- "reference": "e0ad0d153e1c20069250986cd9e9dd1ccebb0d66",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
+ "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/polyfill-mbstring": "~1.1",
- "symfony/polyfill-php83": "^1.27"
+ "php": ">=7.1"
},
- "conflict": {
- "symfony/cache": "<6.2"
+ "provide": {
+ "ext-mbstring": "*"
},
- "require-dev": {
- "doctrine/dbal": "^2.13.1|^3.0",
- "predis/predis": "^1.1|^2.0",
- "symfony/cache": "^5.4|^6.0",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/expression-language": "^5.4|^6.0",
- "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
- "symfony/mime": "^5.4|^6.0",
- "symfony/rate-limiter": "^5.2|^6.0"
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.27-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
},
- "type": "library",
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\HttpFoundation\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5788,18 +7977,25 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Defines an object-oriented layer for the HTTP specification",
+ "description": "Symfony polyfill for the Mbstring extension",
"homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v6.3.1"
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
},
"funding": [
{
@@ -5815,85 +8011,42 @@
"type": "tidelift"
}
],
- "time": "2023-06-24T11:51:27+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
- "name": "symfony/http-kernel",
- "version": "v6.3.1",
+ "name": "symfony/polyfill-php72",
+ "version": "v1.27.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-kernel.git",
- "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374"
+ "url": "https://github.com/symfony/polyfill-php72.git",
+ "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
- "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374",
+ "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
+ "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "psr/log": "^1|^2|^3",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/error-handler": "^6.3",
- "symfony/event-dispatcher": "^5.4|^6.0",
- "symfony/http-foundation": "^6.2.7",
- "symfony/polyfill-ctype": "^1.8"
- },
- "conflict": {
- "symfony/browser-kit": "<5.4",
- "symfony/cache": "<5.4",
- "symfony/config": "<6.1",
- "symfony/console": "<5.4",
- "symfony/dependency-injection": "<6.3",
- "symfony/doctrine-bridge": "<5.4",
- "symfony/form": "<5.4",
- "symfony/http-client": "<5.4",
- "symfony/http-client-contracts": "<2.5",
- "symfony/mailer": "<5.4",
- "symfony/messenger": "<5.4",
- "symfony/translation": "<5.4",
- "symfony/translation-contracts": "<2.5",
- "symfony/twig-bridge": "<5.4",
- "symfony/validator": "<5.4",
- "symfony/var-dumper": "<6.3",
- "twig/twig": "<2.13"
- },
- "provide": {
- "psr/log-implementation": "1.0|2.0|3.0"
- },
- "require-dev": {
- "psr/cache": "^1.0|^2.0|^3.0",
- "symfony/browser-kit": "^5.4|^6.0",
- "symfony/clock": "^6.2",
- "symfony/config": "^6.1",
- "symfony/console": "^5.4|^6.0",
- "symfony/css-selector": "^5.4|^6.0",
- "symfony/dependency-injection": "^6.3",
- "symfony/dom-crawler": "^5.4|^6.0",
- "symfony/expression-language": "^5.4|^6.0",
- "symfony/finder": "^5.4|^6.0",
- "symfony/http-client-contracts": "^2.5|^3",
- "symfony/process": "^5.4|^6.0",
- "symfony/property-access": "^5.4.5|^6.0.5",
- "symfony/routing": "^5.4|^6.0",
- "symfony/serializer": "^6.3",
- "symfony/stopwatch": "^5.4|^6.0",
- "symfony/translation": "^5.4|^6.0",
- "symfony/translation-contracts": "^2.5|^3",
- "symfony/uid": "^5.4|^6.0",
- "symfony/validator": "^6.3",
- "symfony/var-exporter": "^6.2",
- "twig/twig": "^2.13|^3.0.4"
+ "php": ">=7.1"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.27-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\HttpKernel\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Polyfill\\Php72\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5901,18 +8054,24 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides a structured process for converting a Request into a Response",
+ "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
"homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
"support": {
- "source": "https://github.com/symfony/http-kernel/tree/v6.3.1"
+ "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
},
"funding": [
{
@@ -5928,51 +8087,44 @@
"type": "tidelift"
}
],
- "time": "2023-06-26T06:07:32+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
- "name": "symfony/mailer",
- "version": "v6.3.0",
+ "name": "symfony/polyfill-php80",
+ "version": "v1.27.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/mailer.git",
- "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435"
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailer/zipball/7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
- "reference": "7b03d9be1dea29bfec0a6c7b603f5072a4c97435",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
+ "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
"shasum": ""
},
"require": {
- "egulias/email-validator": "^2.1.10|^3|^4",
- "php": ">=8.1",
- "psr/event-dispatcher": "^1",
- "psr/log": "^1|^2|^3",
- "symfony/event-dispatcher": "^5.4|^6.0",
- "symfony/mime": "^6.2",
- "symfony/service-contracts": "^2.5|^3"
- },
- "conflict": {
- "symfony/http-client-contracts": "<2.5",
- "symfony/http-kernel": "<5.4",
- "symfony/messenger": "<6.2",
- "symfony/mime": "<6.2",
- "symfony/twig-bridge": "<6.2.1"
- },
- "require-dev": {
- "symfony/console": "^5.4|^6.0",
- "symfony/http-client": "^5.4|^6.0",
- "symfony/messenger": "^6.2",
- "symfony/twig-bridge": "^6.2"
+ "php": ">=7.1"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.27-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Mailer\\": ""
+ "Symfony\\Polyfill\\Php80\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -5981,18 +8133,28 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Helps sending emails",
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
"homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
"support": {
- "source": "https://github.com/symfony/mailer/tree/v6.3.0"
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
},
"funding": [
{
@@ -6008,51 +8170,43 @@
"type": "tidelift"
}
],
- "time": "2023-05-29T12:49:39+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
- "name": "symfony/mime",
- "version": "v6.3.0",
+ "name": "symfony/polyfill-php83",
+ "version": "v1.27.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/mime.git",
- "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad"
+ "url": "https://github.com/symfony/polyfill-php83.git",
+ "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
- "reference": "7b5d2121858cd6efbed778abce9cfdd7ab1f62ad",
+ "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
+ "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/polyfill-intl-idn": "^1.10",
- "symfony/polyfill-mbstring": "^1.0"
- },
- "conflict": {
- "egulias/email-validator": "~3.0.0",
- "phpdocumentor/reflection-docblock": "<3.2.2",
- "phpdocumentor/type-resolver": "<1.4.0",
- "symfony/mailer": "<5.4",
- "symfony/serializer": "<6.2"
- },
- "require-dev": {
- "egulias/email-validator": "^2.1.10|^3.1|^4",
- "league/html-to-markdown": "^5.0",
- "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/property-access": "^5.4|^6.0",
- "symfony/property-info": "^5.4|^6.0",
- "symfony/serializer": "^6.2"
+ "php": ">=7.1",
+ "symfony/polyfill-php80": "^1.14"
},
"type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Mime\\": ""
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.27-dev"
},
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php83\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6060,22 +8214,24 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Allows manipulating MIME messages",
+ "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
- "mime",
- "mime-type"
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
],
"support": {
- "source": "https://github.com/symfony/mime/tree/v6.3.0"
+ "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
},
"funding": [
{
@@ -6091,34 +8247,48 @@
"type": "tidelift"
}
],
- "time": "2023-04-28T15:57:00+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
- "name": "symfony/options-resolver",
- "version": "v6.3.0",
+ "name": "symfony/polyfill-uuid",
+ "version": "v1.27.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/options-resolver.git",
- "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd"
+ "url": "https://github.com/symfony/polyfill-uuid.git",
+ "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a10f19f5198d589d5c33333cffe98dc9820332dd",
- "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd",
+ "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
+ "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3"
+ "php": ">=7.1"
+ },
+ "provide": {
+ "ext-uuid": "*"
+ },
+ "suggest": {
+ "ext-uuid": "For best performance"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.27-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\OptionsResolver\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Polyfill\\Uuid\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6126,23 +8296,24 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Grรฉgoire Pineau",
+ "email": "lyrixx@lyrixx.info"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides an improved replacement for the array_replace PHP function",
+ "description": "Symfony polyfill for uuid functions",
"homepage": "https://symfony.com",
"keywords": [
- "config",
- "configuration",
- "options"
+ "compatibility",
+ "polyfill",
+ "portable",
+ "uuid"
],
"support": {
- "source": "https://github.com/symfony/options-resolver/tree/v6.3.0"
+ "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
},
"funding": [
{
@@ -6158,48 +8329,33 @@
"type": "tidelift"
}
],
- "time": "2023-05-12T14:21:09+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
- "name": "symfony/polyfill-ctype",
- "version": "v1.27.0",
+ "name": "symfony/process",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
+ "url": "https://github.com/symfony/process.git",
+ "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
- "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
+ "url": "https://api.github.com/repos/symfony/process/zipball/8741e3ed7fe2e91ec099e02446fb86667a0f1628",
+ "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628",
"shasum": ""
},
"require": {
- "php": ">=7.1"
- },
- "provide": {
- "ext-ctype": "*"
- },
- "suggest": {
- "ext-ctype": "For best performance"
+ "php": ">=8.1"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Ctype\\": ""
- }
+ "Symfony\\Component\\Process\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6207,24 +8363,18 @@
],
"authors": [
{
- "name": "Gert de Pagter",
- "email": "BackEndTea@gmail.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for ctype functions",
+ "description": "Executes commands in sub-processes",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "ctype",
- "polyfill",
- "portable"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
+ "source": "https://github.com/symfony/process/tree/v6.3.0"
},
"funding": [
{
@@ -6240,45 +8390,38 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-05-19T08:06:44+00:00"
},
{
- "name": "symfony/polyfill-intl-grapheme",
- "version": "v1.27.0",
+ "name": "symfony/property-access",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
+ "url": "https://github.com/symfony/property-access.git",
+ "reference": "db9358571ce63f09c439c2fee6c12e5b090b69ac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
- "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
+ "url": "https://api.github.com/repos/symfony/property-access/zipball/db9358571ce63f09c439c2fee6c12e5b090b69ac",
+ "reference": "db9358571ce63f09c439c2fee6c12e5b090b69ac",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/property-info": "^5.4|^6.0"
},
- "suggest": {
- "ext-intl": "For best performance"
+ "require-dev": {
+ "symfony/cache": "^5.4|^6.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
- }
+ "Symfony\\Component\\PropertyAccess\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6286,26 +8429,29 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for intl's grapheme_* functions",
+ "description": "Provides functions to read and write from/to an object or array using a simple string notation",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "grapheme",
- "intl",
- "polyfill",
- "portable",
- "shim"
+ "access",
+ "array",
+ "extraction",
+ "index",
+ "injection",
+ "object",
+ "property",
+ "property-path",
+ "reflection"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
+ "source": "https://github.com/symfony/property-access/tree/v6.3.0"
},
"funding": [
{
@@ -6321,47 +8467,47 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-05-19T08:06:44+00:00"
},
{
- "name": "symfony/polyfill-intl-idn",
- "version": "v1.27.0",
+ "name": "symfony/property-info",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-intl-idn.git",
- "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
+ "url": "https://github.com/symfony/property-info.git",
+ "reference": "7f3a03716112269741fe2a809f8f791a371d1fcd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
- "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
+ "url": "https://api.github.com/repos/symfony/property-info/zipball/7f3a03716112269741fe2a809f8f791a371d1fcd",
+ "reference": "7f3a03716112269741fe2a809f8f791a371d1fcd",
"shasum": ""
},
"require": {
- "php": ">=7.1",
- "symfony/polyfill-intl-normalizer": "^1.10",
- "symfony/polyfill-php72": "^1.10"
+ "php": ">=8.1",
+ "symfony/string": "^5.4|^6.0"
},
- "suggest": {
- "ext-intl": "For best performance"
+ "conflict": {
+ "phpdocumentor/reflection-docblock": "<5.2",
+ "phpdocumentor/type-resolver": "<1.5.1",
+ "symfony/dependency-injection": "<5.4"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
+ "require-dev": {
+ "doctrine/annotations": "^1.10.4|^2",
+ "phpdocumentor/reflection-docblock": "^5.2",
+ "phpstan/phpdoc-parser": "^1.0",
+ "symfony/cache": "^5.4|^6.0",
+ "symfony/dependency-injection": "^5.4|^6.0",
+ "symfony/serializer": "^5.4|^6.0"
},
+ "type": "library",
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Intl\\Idn\\": ""
- }
+ "Symfony\\Component\\PropertyInfo\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6369,30 +8515,26 @@
],
"authors": [
{
- "name": "Laurent Bassin",
- "email": "laurent@bassin.info"
- },
- {
- "name": "Trevor Rowbotham",
- "email": "trevor.rowbotham@pm.me"
+ "name": "Kรฉvin Dunglas",
+ "email": "dunglas@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
+ "description": "Extracts information about PHP class' properties using metadata of popular sources",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "idn",
- "intl",
- "polyfill",
- "portable",
- "shim"
+ "doctrine",
+ "phpdoc",
+ "property",
+ "symfony",
+ "type",
+ "validator"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
+ "source": "https://github.com/symfony/property-info/tree/v6.3.0"
},
"funding": [
{
@@ -6408,47 +8550,52 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-05-19T08:06:44+00:00"
},
{
- "name": "symfony/polyfill-intl-normalizer",
- "version": "v1.27.0",
+ "name": "symfony/psr-http-message-bridge",
+ "version": "v2.2.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
+ "url": "https://github.com/symfony/psr-http-message-bridge.git",
+ "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
- "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
+ "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
+ "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=7.2.5",
+ "psr/http-message": "^1.0 || ^2.0",
+ "symfony/http-foundation": "^5.4 || ^6.0"
+ },
+ "require-dev": {
+ "nyholm/psr7": "^1.1",
+ "psr/log": "^1.1 || ^2 || ^3",
+ "symfony/browser-kit": "^5.4 || ^6.0",
+ "symfony/config": "^5.4 || ^6.0",
+ "symfony/event-dispatcher": "^5.4 || ^6.0",
+ "symfony/framework-bundle": "^5.4 || ^6.0",
+ "symfony/http-kernel": "^5.4 || ^6.0",
+ "symfony/phpunit-bridge": "^6.2"
},
"suggest": {
- "ext-intl": "For best performance"
+ "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
},
- "type": "library",
+ "type": "symfony-bridge",
"extra": {
"branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "dev-main": "2.2-dev"
}
},
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
+ "Symfony\\Bridge\\PsrHttpMessage\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -6457,26 +8604,25 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "homepage": "http://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for intl's Normalizer class and related functions",
- "homepage": "https://symfony.com",
+ "description": "PSR HTTP message bridge",
+ "homepage": "http://symfony.com",
"keywords": [
- "compatibility",
- "intl",
- "normalizer",
- "polyfill",
- "portable",
- "shim"
+ "http",
+ "http-message",
+ "psr-17",
+ "psr-7"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
+ "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
+ "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
},
"funding": [
{
@@ -6492,48 +8638,48 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-04-21T08:40:19+00:00"
},
{
- "name": "symfony/polyfill-mbstring",
- "version": "v1.27.0",
+ "name": "symfony/routing",
+ "version": "v6.3.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
+ "url": "https://github.com/symfony/routing.git",
+ "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
- "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
+ "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1"
},
- "provide": {
- "ext-mbstring": "*"
+ "conflict": {
+ "doctrine/annotations": "<1.12",
+ "symfony/config": "<6.2",
+ "symfony/dependency-injection": "<5.4",
+ "symfony/yaml": "<5.4"
},
- "suggest": {
- "ext-mbstring": "For best performance"
+ "require-dev": {
+ "doctrine/annotations": "^1.12|^2",
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^6.2",
+ "symfony/dependency-injection": "^5.4|^6.0",
+ "symfony/expression-language": "^5.4|^6.0",
+ "symfony/http-foundation": "^5.4|^6.0",
+ "symfony/yaml": "^5.4|^6.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
- }
+ "Symfony\\Component\\Routing\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6541,25 +8687,24 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for the Mbstring extension",
+ "description": "Maps an HTTP request to a set of configuration variables",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "mbstring",
- "polyfill",
- "portable",
- "shim"
+ "router",
+ "routing",
+ "uri",
+ "url"
],
"support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
+ "source": "https://github.com/symfony/routing/tree/v6.3.1"
},
"funding": [
{
@@ -6575,42 +8720,65 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-06-05T15:30:22+00:00"
},
{
- "name": "symfony/polyfill-php72",
- "version": "v1.27.0",
+ "name": "symfony/serializer",
+ "version": "v6.3.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
+ "url": "https://github.com/symfony/serializer.git",
+ "reference": "1d238ee3180bc047f8ab713bfb73848d553f4407"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
- "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
+ "url": "https://api.github.com/repos/symfony/serializer/zipball/1d238ee3180bc047f8ab713bfb73848d553f4407",
+ "reference": "1d238ee3180bc047f8ab713bfb73848d553f4407",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1",
+ "symfony/polyfill-ctype": "~1.8"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
+ "conflict": {
+ "doctrine/annotations": "<1.12",
+ "phpdocumentor/reflection-docblock": "<3.2.2",
+ "phpdocumentor/type-resolver": "<1.4.0",
+ "symfony/dependency-injection": "<5.4",
+ "symfony/property-access": "<5.4",
+ "symfony/property-info": "<5.4",
+ "symfony/uid": "<5.4",
+ "symfony/yaml": "<5.4"
+ },
+ "require-dev": {
+ "doctrine/annotations": "^1.12|^2",
+ "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
+ "symfony/cache": "^5.4|^6.0",
+ "symfony/config": "^5.4|^6.0",
+ "symfony/console": "^5.4|^6.0",
+ "symfony/dependency-injection": "^5.4|^6.0",
+ "symfony/error-handler": "^5.4|^6.0",
+ "symfony/filesystem": "^5.4|^6.0",
+ "symfony/form": "^5.4|^6.0",
+ "symfony/http-foundation": "^5.4|^6.0",
+ "symfony/http-kernel": "^5.4|^6.0",
+ "symfony/mime": "^5.4|^6.0",
+ "symfony/property-access": "^5.4|^6.0",
+ "symfony/property-info": "^5.4|^6.0",
+ "symfony/uid": "^5.4|^6.0",
+ "symfony/validator": "^5.4|^6.0",
+ "symfony/var-dumper": "^5.4|^6.0",
+ "symfony/var-exporter": "^5.4|^6.0",
+ "symfony/yaml": "^5.4|^6.0"
},
+ "type": "library",
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Php72\\": ""
- }
+ "Symfony\\Component\\Serializer\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6618,24 +8786,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
+ "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
+ "source": "https://github.com/symfony/serializer/tree/v6.3.1"
},
"funding": [
{
@@ -6651,44 +8813,45 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-06-21T19:54:33+00:00"
},
{
- "name": "symfony/polyfill-php80",
- "version": "v1.27.0",
+ "name": "symfony/service-contracts",
+ "version": "v3.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
- "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
+ "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1",
+ "psr/container": "^2.0"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.27-dev"
+ "dev-main": "3.4-dev"
},
"thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Php80\\": ""
+ "Symfony\\Contracts\\Service\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Test/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -6696,10 +8859,6 @@
"MIT"
],
"authors": [
- {
- "name": "Ion Bazan",
- "email": "ion.bazan@gmail.com"
- },
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
@@ -6709,16 +8868,18 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
+ "description": "Generic abstractions related to writing services",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
+ "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
},
"funding": [
{
@@ -6734,43 +8895,50 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-05-23T14:45:45+00:00"
},
{
- "name": "symfony/polyfill-php83",
- "version": "v1.27.0",
+ "name": "symfony/string",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php83.git",
- "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
+ "url": "https://github.com/symfony/string.git",
+ "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
- "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
+ "url": "https://api.github.com/repos/symfony/string/zipball/f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
+ "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
"shasum": ""
},
- "require": {
- "php": ">=7.1",
- "symfony/polyfill-php80": "^1.14"
+ "require": {
+ "php": ">=8.1",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-intl-grapheme": "~1.0",
+ "symfony/polyfill-intl-normalizer": "~1.0",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/translation-contracts": "<2.5"
+ },
+ "require-dev": {
+ "symfony/error-handler": "^5.4|^6.0",
+ "symfony/http-client": "^5.4|^6.0",
+ "symfony/intl": "^6.2",
+ "symfony/translation-contracts": "^2.5|^3.0",
+ "symfony/var-exporter": "^5.4|^6.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
"files": [
- "bootstrap.php"
+ "Resources/functions.php"
],
"psr-4": {
- "Symfony\\Polyfill\\Php83\\": ""
- }
+ "Symfony\\Component\\String\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6786,16 +8954,18 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
+ "grapheme",
+ "i18n",
+ "string",
+ "unicode",
+ "utf-8",
+ "utf8"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
+ "source": "https://github.com/symfony/string/tree/v6.3.0"
},
"funding": [
{
@@ -6811,48 +8981,66 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-03-21T21:06:29+00:00"
},
{
- "name": "symfony/polyfill-uuid",
- "version": "v1.27.0",
+ "name": "symfony/translation",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-uuid.git",
- "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
+ "url": "https://github.com/symfony/translation.git",
+ "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
- "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/f72b2cba8f79dd9d536f534f76874b58ad37876f",
+ "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/translation-contracts": "^2.5|^3.0"
+ },
+ "conflict": {
+ "symfony/config": "<5.4",
+ "symfony/console": "<5.4",
+ "symfony/dependency-injection": "<5.4",
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/http-kernel": "<5.4",
+ "symfony/service-contracts": "<2.5",
+ "symfony/twig-bundle": "<5.4",
+ "symfony/yaml": "<5.4"
},
"provide": {
- "ext-uuid": "*"
+ "symfony/translation-implementation": "2.3|3.0"
},
- "suggest": {
- "ext-uuid": "For best performance"
+ "require-dev": {
+ "nikic/php-parser": "^4.13",
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^5.4|^6.0",
+ "symfony/console": "^5.4|^6.0",
+ "symfony/dependency-injection": "^5.4|^6.0",
+ "symfony/finder": "^5.4|^6.0",
+ "symfony/http-client-contracts": "^2.5|^3.0",
+ "symfony/http-kernel": "^5.4|^6.0",
+ "symfony/intl": "^5.4|^6.0",
+ "symfony/polyfill-intl-icu": "^1.21",
+ "symfony/routing": "^5.4|^6.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/yaml": "^5.4|^6.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "1.27-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
"files": [
- "bootstrap.php"
+ "Resources/functions.php"
],
"psr-4": {
- "Symfony\\Polyfill\\Uuid\\": ""
- }
+ "Symfony\\Component\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6860,24 +9048,18 @@
],
"authors": [
{
- "name": "Grรฉgoire Pineau",
- "email": "lyrixx@lyrixx.info"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for uuid functions",
+ "description": "Provides tools to internationalize your application",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "uuid"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
+ "source": "https://github.com/symfony/translation/tree/v6.3.0"
},
"funding": [
{
@@ -6893,32 +9075,41 @@
"type": "tidelift"
}
],
- "time": "2022-11-03T14:55:06+00:00"
+ "time": "2023-05-19T12:46:45+00:00"
},
{
- "name": "symfony/process",
- "version": "v6.3.0",
+ "name": "symfony/translation-contracts",
+ "version": "v3.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628"
+ "url": "https://github.com/symfony/translation-contracts.git",
+ "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/8741e3ed7fe2e91ec099e02446fb86667a0f1628",
- "reference": "8741e3ed7fe2e91ec099e02446fb86667a0f1628",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
+ "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
"shasum": ""
},
"require": {
"php": ">=8.1"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.4-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
"autoload": {
"psr-4": {
- "Symfony\\Component\\Process\\": ""
+ "Symfony\\Contracts\\Translation\\": ""
},
"exclude-from-classmap": [
- "/Tests/"
+ "/Test/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -6927,18 +9118,26 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Executes commands in sub-processes",
+ "description": "Generic abstractions related to translation",
"homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
"support": {
- "source": "https://github.com/symfony/process/tree/v6.3.0"
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
},
"funding": [
{
@@ -6954,49 +9153,33 @@
"type": "tidelift"
}
],
- "time": "2023-05-19T08:06:44+00:00"
+ "time": "2023-05-30T17:17:10+00:00"
},
{
- "name": "symfony/psr-http-message-bridge",
- "version": "v2.2.0",
+ "name": "symfony/uid",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/psr-http-message-bridge.git",
- "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
+ "url": "https://github.com/symfony/uid.git",
+ "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
- "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
+ "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384",
+ "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "psr/http-message": "^1.0 || ^2.0",
- "symfony/http-foundation": "^5.4 || ^6.0"
+ "php": ">=8.1",
+ "symfony/polyfill-uuid": "^1.15"
},
"require-dev": {
- "nyholm/psr7": "^1.1",
- "psr/log": "^1.1 || ^2 || ^3",
- "symfony/browser-kit": "^5.4 || ^6.0",
- "symfony/config": "^5.4 || ^6.0",
- "symfony/event-dispatcher": "^5.4 || ^6.0",
- "symfony/framework-bundle": "^5.4 || ^6.0",
- "symfony/http-kernel": "^5.4 || ^6.0",
- "symfony/phpunit-bridge": "^6.2"
- },
- "suggest": {
- "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
- },
- "type": "symfony-bridge",
- "extra": {
- "branch-alias": {
- "dev-main": "2.2-dev"
- }
+ "symfony/console": "^5.4|^6.0"
},
+ "type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Bridge\\PsrHttpMessage\\": ""
+ "Symfony\\Component\\Uid\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -7008,25 +9191,27 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Grรฉgoire Pineau",
+ "email": "lyrixx@lyrixx.info"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
- "homepage": "http://symfony.com/contributors"
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "PSR HTTP message bridge",
- "homepage": "http://symfony.com",
+ "description": "Provides an object-oriented API to generate and represent UIDs",
+ "homepage": "https://symfony.com",
"keywords": [
- "http",
- "http-message",
- "psr-17",
- "psr-7"
+ "UID",
+ "ulid",
+ "uuid"
],
"support": {
- "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
- "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
+ "source": "https://github.com/symfony/uid/tree/v6.3.0"
},
"funding": [
{
@@ -7042,44 +9227,46 @@
"type": "tidelift"
}
],
- "time": "2023-04-21T08:40:19+00:00"
+ "time": "2023-04-08T07:25:02+00:00"
},
{
- "name": "symfony/routing",
+ "name": "symfony/var-dumper",
"version": "v6.3.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/routing.git",
- "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5"
+ "url": "https://github.com/symfony/var-dumper.git",
+ "reference": "c81268d6960ddb47af17391a27d222bd58cf0515"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
- "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c81268d6960ddb47af17391a27d222bd58cf0515",
+ "reference": "c81268d6960ddb47af17391a27d222bd58cf0515",
"shasum": ""
},
"require": {
- "php": ">=8.1"
- },
- "conflict": {
- "doctrine/annotations": "<1.12",
- "symfony/config": "<6.2",
- "symfony/dependency-injection": "<5.4",
- "symfony/yaml": "<5.4"
- },
- "require-dev": {
- "doctrine/annotations": "^1.12|^2",
- "psr/log": "^1|^2|^3",
- "symfony/config": "^6.2",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/expression-language": "^5.4|^6.0",
- "symfony/http-foundation": "^5.4|^6.0",
- "symfony/yaml": "^5.4|^6.0"
+ "php": ">=8.1",
+ "symfony/polyfill-mbstring": "~1.0"
},
+ "conflict": {
+ "symfony/console": "<5.4"
+ },
+ "require-dev": {
+ "ext-iconv": "*",
+ "symfony/console": "^5.4|^6.0",
+ "symfony/process": "^5.4|^6.0",
+ "symfony/uid": "^5.4|^6.0",
+ "twig/twig": "^2.13|^3.0.4"
+ },
+ "bin": [
+ "Resources/bin/var-dump-server"
+ ],
"type": "library",
"autoload": {
+ "files": [
+ "Resources/functions/dump.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Routing\\": ""
+ "Symfony\\Component\\VarDumper\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -7091,24 +9278,22 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Maps an HTTP request to a set of configuration variables",
+ "description": "Provides mechanisms for walking through any arbitrary PHP variable",
"homepage": "https://symfony.com",
"keywords": [
- "router",
- "routing",
- "uri",
- "url"
+ "debug",
+ "dump"
],
"support": {
- "source": "https://github.com/symfony/routing/tree/v6.3.1"
+ "source": "https://github.com/symfony/var-dumper/tree/v6.3.1"
},
"funding": [
{
@@ -7124,45 +9309,42 @@
"type": "tidelift"
}
],
- "time": "2023-06-05T15:30:22+00:00"
+ "time": "2023-06-21T12:08:28+00:00"
},
{
- "name": "symfony/service-contracts",
- "version": "v3.3.0",
+ "name": "symfony/web-link",
+ "version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/service-contracts.git",
- "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
+ "url": "https://github.com/symfony/web-link.git",
+ "reference": "0989ca617d0703cdca501a245f10e194ff22315b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
- "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
+ "url": "https://api.github.com/repos/symfony/web-link/zipball/0989ca617d0703cdca501a245f10e194ff22315b",
+ "reference": "0989ca617d0703cdca501a245f10e194ff22315b",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "psr/container": "^2.0"
+ "psr/link": "^1.1|^2.0"
},
"conflict": {
- "ext-psr": "<1.1|>=2"
+ "symfony/http-kernel": "<5.4"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
+ "provide": {
+ "psr/link-implementation": "1.0|2.0"
+ },
+ "require-dev": {
+ "symfony/http-kernel": "^5.4|^6.0"
},
+ "type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Contracts\\Service\\": ""
+ "Symfony\\Component\\WebLink\\": ""
},
"exclude-from-classmap": [
- "/Test/"
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7171,26 +9353,30 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Kรฉvin Dunglas",
+ "email": "dunglas@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Generic abstractions related to writing services",
+ "description": "Manages links between resources",
"homepage": "https://symfony.com",
"keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
+ "dns-prefetch",
+ "http",
+ "http2",
+ "link",
+ "performance",
+ "prefetch",
+ "preload",
+ "prerender",
+ "psr13",
+ "push"
],
"support": {
- "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
+ "source": "https://github.com/symfony/web-link/tree/v6.3.0"
},
"funding": [
{
@@ -7206,46 +9392,39 @@
"type": "tidelift"
}
],
- "time": "2023-05-23T14:45:45+00:00"
+ "time": "2023-04-21T14:41:17+00:00"
},
{
- "name": "symfony/string",
+ "name": "symfony/yaml",
"version": "v6.3.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/string.git",
- "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f"
+ "url": "https://github.com/symfony/yaml.git",
+ "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
- "reference": "f2e190ee75ff0f5eced645ec0be5c66fac81f51f",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/a9a8337aa641ef2aa39c3e028f9107ec391e5927",
+ "reference": "a9a8337aa641ef2aa39c3e028f9107ec391e5927",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-intl-grapheme": "~1.0",
- "symfony/polyfill-intl-normalizer": "~1.0",
- "symfony/polyfill-mbstring": "~1.0"
+ "symfony/polyfill-ctype": "^1.8"
},
"conflict": {
- "symfony/translation-contracts": "<2.5"
+ "symfony/console": "<5.4"
},
"require-dev": {
- "symfony/error-handler": "^5.4|^6.0",
- "symfony/http-client": "^5.4|^6.0",
- "symfony/intl": "^6.2",
- "symfony/translation-contracts": "^2.5|^3.0",
- "symfony/var-exporter": "^5.4|^6.0"
+ "symfony/console": "^5.4|^6.0"
},
+ "bin": [
+ "Resources/bin/yaml-lint"
+ ],
"type": "library",
"autoload": {
- "files": [
- "Resources/functions.php"
- ],
"psr-4": {
- "Symfony\\Component\\String\\": ""
+ "Symfony\\Component\\Yaml\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -7257,26 +9436,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
+ "description": "Loads and dumps YAML files",
"homepage": "https://symfony.com",
- "keywords": [
- "grapheme",
- "i18n",
- "string",
- "unicode",
- "utf-8",
- "utf8"
- ],
"support": {
- "source": "https://github.com/symfony/string/tree/v6.3.0"
+ "source": "https://github.com/symfony/yaml/tree/v6.3.0"
},
"funding": [
{
@@ -7292,136 +9463,173 @@
"type": "tidelift"
}
],
- "time": "2023-03-21T21:06:29+00:00"
+ "time": "2023-04-28T13:28:14+00:00"
},
{
- "name": "symfony/translation",
- "version": "v6.3.0",
+ "name": "tijsverkoyen/css-to-inline-styles",
+ "version": "2.2.6",
"source": {
"type": "git",
- "url": "https://github.com/symfony/translation.git",
- "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f"
+ "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
+ "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/f72b2cba8f79dd9d536f534f76874b58ad37876f",
- "reference": "f72b2cba8f79dd9d536f534f76874b58ad37876f",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
+ "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/translation-contracts": "^2.5|^3.0"
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "php": "^5.5 || ^7.0 || ^8.0",
+ "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
- "conflict": {
- "symfony/config": "<5.4",
- "symfony/console": "<5.4",
- "symfony/dependency-injection": "<5.4",
- "symfony/http-client-contracts": "<2.5",
- "symfony/http-kernel": "<5.4",
- "symfony/service-contracts": "<2.5",
- "symfony/twig-bundle": "<5.4",
- "symfony/yaml": "<5.4"
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
},
- "provide": {
- "symfony/translation-implementation": "2.3|3.0"
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "TijsVerkoyen\\CssToInlineStyles\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Tijs Verkoyen",
+ "email": "css_to_inline_styles@verkoyen.eu",
+ "role": "Developer"
+ }
+ ],
+ "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
+ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
+ "support": {
+ "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
+ "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
+ },
+ "time": "2023-01-03T09:29:04+00:00"
+ },
+ {
+ "name": "vlucas/phpdotenv",
+ "version": "v5.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/vlucas/phpdotenv.git",
+ "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
+ "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
+ "shasum": ""
+ },
+ "require": {
+ "ext-pcre": "*",
+ "graham-campbell/result-type": "^1.0.2",
+ "php": "^7.1.3 || ^8.0",
+ "phpoption/phpoption": "^1.8",
+ "symfony/polyfill-ctype": "^1.23",
+ "symfony/polyfill-mbstring": "^1.23.1",
+ "symfony/polyfill-php80": "^1.23.1"
},
"require-dev": {
- "nikic/php-parser": "^4.13",
- "psr/log": "^1|^2|^3",
- "symfony/config": "^5.4|^6.0",
- "symfony/console": "^5.4|^6.0",
- "symfony/dependency-injection": "^5.4|^6.0",
- "symfony/finder": "^5.4|^6.0",
- "symfony/http-client-contracts": "^2.5|^3.0",
- "symfony/http-kernel": "^5.4|^6.0",
- "symfony/intl": "^5.4|^6.0",
- "symfony/polyfill-intl-icu": "^1.21",
- "symfony/routing": "^5.4|^6.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/yaml": "^5.4|^6.0"
+ "bamarni/composer-bin-plugin": "^1.4.1",
+ "ext-filter": "*",
+ "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
+ },
+ "suggest": {
+ "ext-filter": "Required to use the boolean validator."
},
"type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": true
+ },
+ "branch-alias": {
+ "dev-master": "5.5-dev"
+ }
+ },
"autoload": {
- "files": [
- "Resources/functions.php"
- ],
"psr-4": {
- "Symfony\\Component\\Translation\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Dotenv\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
},
{
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Vance Lucas",
+ "email": "vance@vancelucas.com",
+ "homepage": "https://github.com/vlucas"
}
],
- "description": "Provides tools to internationalize your application",
- "homepage": "https://symfony.com",
+ "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
+ "keywords": [
+ "dotenv",
+ "env",
+ "environment"
+ ],
"support": {
- "source": "https://github.com/symfony/translation/tree/v6.3.0"
+ "issues": "https://github.com/vlucas/phpdotenv/issues",
+ "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
},
"funding": [
{
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
+ "url": "https://github.com/GrahamCampbell",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
"type": "tidelift"
}
],
- "time": "2023-05-19T12:46:45+00:00"
+ "time": "2022-10-16T01:01:54+00:00"
},
{
- "name": "symfony/translation-contracts",
- "version": "v3.3.0",
+ "name": "voku/portable-ascii",
+ "version": "2.0.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/translation-contracts.git",
- "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
+ "url": "https://github.com/voku/portable-ascii.git",
+ "reference": "b56450eed252f6801410d810c8e1727224ae0743"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
- "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
+ "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
+ "reference": "b56450eed252f6801410d810c8e1727224ae0743",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=7.0.0"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
+ "require-dev": {
+ "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
+ },
+ "suggest": {
+ "ext-intl": "Use Intl for transliterator_transliterate() support"
},
+ "type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Contracts\\Translation\\": ""
- },
- "exclude-from-classmap": [
- "/Test/"
- ]
+ "voku\\": "src/voku/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -7429,72 +9637,113 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Lars Moelleken",
+ "homepage": "http://www.moelleken.org/"
}
],
- "description": "Generic abstractions related to translation",
- "homepage": "https://symfony.com",
+ "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
+ "homepage": "https://github.com/voku/portable-ascii",
"keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
+ "ascii",
+ "clean",
+ "php"
],
"support": {
- "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
+ "issues": "https://github.com/voku/portable-ascii/issues",
+ "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
},
"funding": [
{
- "url": "https://symfony.com/sponsor",
+ "url": "https://www.paypal.me/moelleken",
"type": "custom"
},
{
- "url": "https://github.com/fabpot",
+ "url": "https://github.com/voku",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "url": "https://opencollective.com/portable-ascii",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://www.patreon.com/voku",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
"type": "tidelift"
}
],
- "time": "2023-05-30T17:17:10+00:00"
+ "time": "2022-03-08T17:03:00+00:00"
},
{
- "name": "symfony/uid",
- "version": "v6.3.0",
+ "name": "wayofdev/laravel-cycle-orm-adapter",
+ "version": "v3.4.13",
"source": {
"type": "git",
- "url": "https://github.com/symfony/uid.git",
- "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384"
+ "url": "https://github.com/wayofdev/laravel-cycle-orm-adapter.git",
+ "reference": "e93a4cd6b6c01a99d74556dabe3e1f9daca08cb2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/uid/zipball/01b0f20b1351d997711c56f1638f7a8c3061e384",
- "reference": "01b0f20b1351d997711c56f1638f7a8c3061e384",
+ "url": "https://api.github.com/repos/wayofdev/laravel-cycle-orm-adapter/zipball/e93a4cd6b6c01a99d74556dabe3e1f9daca08cb2",
+ "reference": "e93a4cd6b6c01a99d74556dabe3e1f9daca08cb2",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/polyfill-uuid": "^1.15"
+ "cycle/annotated": "*",
+ "cycle/database": "^2.4",
+ "cycle/migrations": "^4.0",
+ "cycle/orm": "^2.3",
+ "cycle/schema-migrations-generator": "^2.1",
+ "cycle/schema-renderer": "^1.2",
+ "ext-pdo": "*",
+ "illuminate/console": "^10.9",
+ "illuminate/contracts": "^10.9",
+ "illuminate/support": "^10.9",
+ "laminas/laminas-hydrator": "^4.14",
+ "php": "^8.2",
+ "spiral/attributes": "^3.1",
+ "symfony/console": "^6.2"
},
"require-dev": {
- "symfony/console": "^5.4|^6.0"
+ "ergebnis/composer-normalize": "^2.30",
+ "fakerphp/faker": "^1.21",
+ "jetbrains/phpstorm-attributes": "^1.0",
+ "nunomaduro/collision": "^7.5",
+ "nunomaduro/larastan": "^2.5",
+ "orchestra/testbench": "^8.5",
+ "pestphp/pest": "^2.5",
+ "pestphp/pest-plugin-laravel": "^2.0",
+ "phpstan/extension-installer": "^1.3",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-deprecation-rules": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "phpunit/phpunit": "^10.1",
+ "roave/security-advisories": "dev-latest",
+ "spatie/laravel-ray": "^1.32",
+ "wayofdev/cs-fixer-config": "^1.1"
},
"type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "WayOfDev\\Cycle\\Bridge\\Laravel\\Providers\\CycleServiceProvider"
+ ],
+ "aliases": {
+ "Package": "Cycle"
+ }
+ },
+ "composer-normalize": {
+ "indent-size": 4,
+ "indent-style": "space"
+ }
+ },
"autoload": {
"psr-4": {
- "Symfony\\Component\\Uid\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "WayOfDev\\Cycle\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -7502,86 +9751,77 @@
],
"authors": [
{
- "name": "Grรฉgoire Pineau",
- "email": "lyrixx@lyrixx.info"
- },
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Andrij Orlenko",
+ "email": "the@wayof.dev"
}
],
- "description": "Provides an object-oriented API to generate and represent UIDs",
- "homepage": "https://symfony.com",
- "keywords": [
- "UID",
- "ulid",
- "uuid"
- ],
+ "description": "PHP package template with GitHub Actions",
+ "homepage": "https://wayof.dev",
"support": {
- "source": "https://github.com/symfony/uid/tree/v6.3.0"
+ "issues": "https://github.com/wayofdev/laravel-cycle-orm-adapter/issues",
+ "source": "https://github.com/wayofdev/laravel-cycle-orm-adapter"
},
"funding": [
{
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
+ "url": "https://github.com/wayofdev",
"type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
}
],
- "time": "2023-04-08T07:25:02+00:00"
+ "time": "2023-06-30T11:21:14+00:00"
},
{
- "name": "symfony/var-dumper",
- "version": "v6.3.1",
+ "name": "wayofdev/laravel-cycle-orm-event-sourcing",
+ "version": "v1.2.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/var-dumper.git",
- "reference": "c81268d6960ddb47af17391a27d222bd58cf0515"
+ "url": "https://github.com/wayofdev/laravel-cycle-orm-event-sourcing.git",
+ "reference": "f98632f563856f19daf597e66f1929987525f3ba"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c81268d6960ddb47af17391a27d222bd58cf0515",
- "reference": "c81268d6960ddb47af17391a27d222bd58cf0515",
+ "url": "https://api.github.com/repos/wayofdev/laravel-cycle-orm-event-sourcing/zipball/f98632f563856f19daf597e66f1929987525f3ba",
+ "reference": "f98632f563856f19daf597e66f1929987525f3ba",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "symfony/console": "<5.4"
+ "beberlei/assert": "^3.3",
+ "eventsauce/eventsauce": "^3.4",
+ "ext-decimal": "*",
+ "ext-json": "*",
+ "illuminate/contracts": "^10.13",
+ "php": "^8.2"
},
"require-dev": {
- "ext-iconv": "*",
- "symfony/console": "^5.4|^6.0",
- "symfony/process": "^5.4|^6.0",
- "symfony/uid": "^5.4|^6.0",
- "twig/twig": "^2.13|^3.0.4"
+ "ergebnis/composer-normalize": "^2.31",
+ "nunomaduro/larastan": "^2.6",
+ "orchestra/testbench": "^8.5",
+ "pestphp/pest": "^2.6",
+ "pestphp/pest-plugin-laravel": "^2.0",
+ "phpstan/extension-installer": "^1.3",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-deprecation-rules": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "phpunit/phpunit": "^10.2",
+ "roave/security-advisories": "dev-latest",
+ "wayofdev/cs-fixer-config": "^1.2"
},
- "bin": [
- "Resources/bin/var-dump-server"
- ],
"type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "WayOfDev\\EventSourcing\\Bridge\\Laravel\\Providers\\EventSourcingServiceProvider"
+ ]
+ },
+ "composer-normalize": {
+ "indent-size": 4,
+ "indent-style": "space"
+ }
+ },
"autoload": {
- "files": [
- "Resources/functions/dump.php"
- ],
"psr-4": {
- "Symfony\\Component\\VarDumper\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "WayOfDev\\EventSourcing\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -7589,203 +9829,221 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "lotyp",
+ "email": "the@wayof.dev"
}
],
- "description": "Provides mechanisms for walking through any arbitrary PHP variable",
- "homepage": "https://symfony.com",
- "keywords": [
- "debug",
- "dump"
- ],
+ "description": "Package that provides Cycle ORM integration with EventSauce in Laravel.",
+ "homepage": "https://wayof.dev",
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v6.3.1"
+ "issues": "https://github.com/wayofdev/laravel-package-tpl/issues",
+ "source": "https://github.com/wayofdev/laravel-package-tpl"
},
"funding": [
{
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
+ "url": "https://github.com/wayofdev",
"type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "type": "tidelift"
}
],
- "time": "2023-06-21T12:08:28+00:00"
+ "time": "2023-06-09T10:23:35+00:00"
},
{
- "name": "tijsverkoyen/css-to-inline-styles",
- "version": "2.2.6",
+ "name": "wayofdev/laravel-open-docs",
+ "version": "v2.0.18",
"source": {
"type": "git",
- "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
- "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
+ "url": "https://github.com/wayofdev/laravel-open-docs.git",
+ "reference": "3dea1ddafa475bedc46e81b4803383bf94517600"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
- "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
+ "url": "https://api.github.com/repos/wayofdev/laravel-open-docs/zipball/3dea1ddafa475bedc46e81b4803383bf94517600",
+ "reference": "3dea1ddafa475bedc46e81b4803383bf94517600",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "ext-libxml": "*",
- "php": "^5.5 || ^7.0 || ^8.0",
- "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
+ "laravel/framework": "^10.13",
+ "php": "^8.2",
+ "zircote/swagger-php": "^4.7"
},
"require-dev": {
- "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
+ "ergebnis/composer-normalize": "^2.31",
+ "nunomaduro/larastan": "^2.6",
+ "orchestra/testbench": "^8.5",
+ "pestphp/pest": "^2.6",
+ "pestphp/pest-plugin-laravel": "^2.0.0",
+ "phpstan/extension-installer": "^1.3",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-deprecation-rules": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "phpunit/phpunit": "^10.2",
+ "roave/security-advisories": "dev-latest",
+ "wayofdev/cs-fixer-config": "^1.2"
},
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "2.2.x-dev"
+ "laravel": {
+ "providers": [
+ "WayOfDev\\OpenDocs\\Bridge\\Laravel\\Providers\\OpenDocsServiceProvider"
+ ]
+ },
+ "composer-normalize": {
+ "indent-size": 4,
+ "indent-style": "space"
}
},
"autoload": {
"psr-4": {
- "TijsVerkoyen\\CssToInlineStyles\\": "src"
+ "WayOfDev\\OpenDocs\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Tijs Verkoyen",
- "email": "css_to_inline_styles@verkoyen.eu",
- "role": "Developer"
+ "name": "lotyp",
+ "email": "the@wayof.dev"
}
],
- "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
- "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
+ "description": "PHP package template with GitHub Actions",
+ "homepage": "https://wayof.dev",
"support": {
- "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
- "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
+ "issues": "https://github.com/wayofdev/laravel-open-docs/issues",
+ "source": "https://github.com/wayofdev/laravel-open-docs"
},
- "time": "2023-01-03T09:29:04+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/wayofdev",
+ "type": "github"
+ }
+ ],
+ "time": "2023-06-30T09:31:10+00:00"
},
{
- "name": "vlucas/phpdotenv",
- "version": "v5.5.0",
+ "name": "wayofdev/laravel-paginator",
+ "version": "v1.2.23",
"source": {
"type": "git",
- "url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
+ "url": "https://github.com/wayofdev/laravel-paginator.git",
+ "reference": "dda47ed5f004f4d2aabba45ea9b5dec8bdb8773b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
- "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
+ "url": "https://api.github.com/repos/wayofdev/laravel-paginator/zipball/dda47ed5f004f4d2aabba45ea9b5dec8bdb8773b",
+ "reference": "dda47ed5f004f4d2aabba45ea9b5dec8bdb8773b",
"shasum": ""
},
"require": {
- "ext-pcre": "*",
- "graham-campbell/result-type": "^1.0.2",
- "php": "^7.1.3 || ^8.0",
- "phpoption/phpoption": "^1.8",
- "symfony/polyfill-ctype": "^1.23",
- "symfony/polyfill-mbstring": "^1.23.1",
- "symfony/polyfill-php80": "^1.23.1"
+ "illuminate/contracts": "^v10.13",
+ "php": "^8.2",
+ "spiral/pagination": "^3.7",
+ "symfony/web-link": "^6.3"
},
"require-dev": {
- "bamarni/composer-bin-plugin": "^1.4.1",
- "ext-filter": "*",
- "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
- },
- "suggest": {
- "ext-filter": "Required to use the boolean validator."
+ "ergebnis/composer-normalize": "^2.31",
+ "nunomaduro/larastan": "^2.6",
+ "orchestra/testbench": "^8.5",
+ "pestphp/pest": "^2.6",
+ "pestphp/pest-plugin-laravel": "^2.0.0",
+ "phpstan/extension-installer": "^1.3",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-deprecation-rules": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "phpunit/phpunit": "^10.2",
+ "roave/security-advisories": "dev-latest",
+ "tiagohillebrandt/php-parse-link-header": "^1.0",
+ "wayofdev/cs-fixer-config": "^1.2"
},
"type": "library",
"extra": {
- "bamarni-bin": {
- "bin-links": true,
- "forward-command": true
- },
- "branch-alias": {
- "dev-master": "5.5-dev"
+ "composer-normalize": {
+ "indent-size": 4,
+ "indent-style": "space"
}
},
"autoload": {
"psr-4": {
- "Dotenv\\": "src/"
+ "WayOfDev\\Paginator\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Graham Campbell",
- "email": "hello@gjcampbell.co.uk",
- "homepage": "https://github.com/GrahamCampbell"
- },
- {
- "name": "Vance Lucas",
- "email": "vance@vancelucas.com",
- "homepage": "https://github.com/vlucas"
+ "name": "lotyp",
+ "email": "the@wayof.dev"
}
],
- "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
- "keywords": [
- "dotenv",
- "env",
- "environment"
- ],
+ "description": "Custom Laravel Paginator for Cycle-ORM implementing RFC 5988.",
+ "homepage": "https://wayof.dev",
"support": {
- "issues": "https://github.com/vlucas/phpdotenv/issues",
- "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
+ "issues": "https://github.com/wayofdev/laravel-paginator/issues",
+ "source": "https://github.com/wayofdev/laravel-paginator"
},
"funding": [
{
- "url": "https://github.com/GrahamCampbell",
+ "url": "https://github.com/wayofdev",
"type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
- "type": "tidelift"
}
],
- "time": "2022-10-16T01:01:54+00:00"
+ "time": "2023-06-30T11:37:54+00:00"
},
{
- "name": "voku/portable-ascii",
- "version": "2.0.1",
+ "name": "wayofdev/laravel-request-query-builder",
+ "version": "v1.3.61",
"source": {
"type": "git",
- "url": "https://github.com/voku/portable-ascii.git",
- "reference": "b56450eed252f6801410d810c8e1727224ae0743"
+ "url": "https://github.com/wayofdev/laravel-request-query-builder.git",
+ "reference": "9639cd7e10271f1054aac2317d2adc2f11db5b7e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
- "reference": "b56450eed252f6801410d810c8e1727224ae0743",
+ "url": "https://api.github.com/repos/wayofdev/laravel-request-query-builder/zipball/9639cd7e10271f1054aac2317d2adc2f11db5b7e",
+ "reference": "9639cd7e10271f1054aac2317d2adc2f11db5b7e",
"shasum": ""
},
"require": {
- "php": ">=7.0.0"
+ "laminas/laminas-hydrator": "^4.14",
+ "php": "^8.2",
+ "wayofdev/laravel-cycle-orm-adapter": "^3.1",
+ "wayofdev/laravel-paginator": "^1.0"
},
"require-dev": {
- "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
- },
- "suggest": {
- "ext-intl": "Use Intl for transliterator_transliterate() support"
+ "ergebnis/composer-normalize": "^2.31",
+ "nunomaduro/larastan": "^2.6",
+ "orchestra/testbench": "^8.5",
+ "pestphp/pest": "^2.6",
+ "pestphp/pest-plugin-laravel": "^2.0.0",
+ "phpstan/extension-installer": "^1.3",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-deprecation-rules": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "phpunit/phpunit": "^10.2",
+ "roave/security-advisories": "dev-latest",
+ "wayofdev/cs-fixer-config": "^1.2"
},
"type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "WayOfDev\\RQL\\Bridge\\Laravel\\Providers\\RQLServiceProvider"
+ ]
+ },
+ "composer-normalize": {
+ "indent-size": 4,
+ "indent-style": "space"
+ }
+ },
"autoload": {
"psr-4": {
- "voku\\": "src/voku/"
+ "WayOfDev\\RQL\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -7794,103 +10052,70 @@
],
"authors": [
{
- "name": "Lars Moelleken",
- "homepage": "http://www.moelleken.org/"
+ "name": "lotyp",
+ "email": "the@wayof.dev"
}
],
- "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
- "homepage": "https://github.com/voku/portable-ascii",
- "keywords": [
- "ascii",
- "clean",
- "php"
- ],
+ "description": "RQL - Resource Query Language for Laravel.",
+ "homepage": "https://wayof.dev",
"support": {
- "issues": "https://github.com/voku/portable-ascii/issues",
- "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
+ "issues": "https://github.com/wayofdev/laravel-request-query-builder/issues",
+ "source": "https://github.com/wayofdev/laravel-request-query-builder"
},
"funding": [
{
- "url": "https://www.paypal.me/moelleken",
- "type": "custom"
- },
- {
- "url": "https://github.com/voku",
+ "url": "https://github.com/wayofdev",
"type": "github"
- },
- {
- "url": "https://opencollective.com/portable-ascii",
- "type": "open_collective"
- },
- {
- "url": "https://www.patreon.com/voku",
- "type": "patreon"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
- "type": "tidelift"
}
],
- "time": "2022-03-08T17:03:00+00:00"
+ "time": "2023-06-30T08:24:11+00:00"
},
{
- "name": "wayofdev/laravel-cycle-orm-adapter",
- "version": "v3.3.24",
+ "name": "wayofdev/laravel-symfony-serializer",
+ "version": "v1.1.14",
"source": {
"type": "git",
- "url": "https://github.com/wayofdev/laravel-cycle-orm-adapter.git",
- "reference": "44b5fba6befa881b63aaf8a4b0d06fc5f6768131"
+ "url": "https://github.com/wayofdev/laravel-symfony-serializer.git",
+ "reference": "7694db324d5080d90f707dd9ef90d9c4852f36f9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/wayofdev/laravel-cycle-orm-adapter/zipball/44b5fba6befa881b63aaf8a4b0d06fc5f6768131",
- "reference": "44b5fba6befa881b63aaf8a4b0d06fc5f6768131",
+ "url": "https://api.github.com/repos/wayofdev/laravel-symfony-serializer/zipball/7694db324d5080d90f707dd9ef90d9c4852f36f9",
+ "reference": "7694db324d5080d90f707dd9ef90d9c4852f36f9",
"shasum": ""
},
"require": {
- "cycle/annotated": "*",
- "cycle/database": "^2.4",
- "cycle/migrations": "^4.0",
- "cycle/orm": "^2.3",
- "cycle/schema-migrations-generator": "^2.1",
- "cycle/schema-renderer": "^1.2",
- "ext-pdo": "*",
- "illuminate/console": "^10.9",
- "illuminate/contracts": "^10.9",
- "illuminate/support": "^10.9",
- "laminas/laminas-hydrator": "^4.14",
- "php": "^8.1",
- "spiral/attributes": "^3.1",
- "symfony/console": "^6.2"
+ "doctrine/annotations": "^2.0",
+ "php": "^8.2",
+ "symfony/property-access": "^6.3",
+ "symfony/serializer": "^6.3"
},
"require-dev": {
- "ergebnis/composer-normalize": "^2.30",
- "fakerphp/faker": "^1.21",
- "jetbrains/phpstorm-attributes": "^1.0",
- "nunomaduro/collision": "^7.5",
- "nunomaduro/larastan": "^2.5",
+ "ergebnis/composer-normalize": "^2.31",
+ "nunomaduro/larastan": "^2.6",
"orchestra/testbench": "^8.5",
- "pestphp/pest": "^2.5",
- "pestphp/pest-plugin-laravel": "^2.0",
+ "pestphp/pest": "^2.6",
+ "pestphp/pest-plugin-laravel": "^2.0.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
- "phpunit/phpunit": "^10.1",
+ "phpunit/phpunit": "^10.2",
+ "ramsey/uuid": "^4.7",
"roave/security-advisories": "dev-latest",
- "spatie/laravel-ray": "^1.32",
- "wayofdev/cs-fixer-config": "^1.1"
+ "symfony/yaml": "^6.3",
+ "wayofdev/cs-fixer-config": "^1.2"
+ },
+ "suggest": {
+ "symfony/yaml": "For using the YamlEncoder."
},
"type": "library",
"extra": {
"laravel": {
"providers": [
- "WayOfDev\\Cycle\\Bridge\\Laravel\\Providers\\CycleServiceProvider"
- ],
- "aliases": {
- "Package": "Cycle"
- }
+ "WayOfDev\\Serializer\\Bridge\\Laravel\\Providers\\SerializerServiceProvider"
+ ]
},
"composer-normalize": {
"indent-size": 4,
@@ -7899,7 +10124,7 @@
},
"autoload": {
"psr-4": {
- "WayOfDev\\Cycle\\": "src/"
+ "WayOfDev\\Serializer\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -7908,15 +10133,15 @@
],
"authors": [
{
- "name": "Andrij Orlenko",
+ "name": "lotyp",
"email": "the@wayof.dev"
}
],
- "description": "PHP package template with GitHub Actions",
+ "description": "Laravel wrapper around Symfony Serializer.",
"homepage": "https://wayof.dev",
"support": {
- "issues": "https://github.com/wayofdev/laravel-cycle-orm-adapter/issues",
- "source": "https://github.com/wayofdev/laravel-cycle-orm-adapter"
+ "issues": "https://github.com/wayofdev/laravel-symfony-serializer/issues",
+ "source": "https://github.com/wayofdev/laravel-symfony-serializer"
},
"funding": [
{
@@ -7924,7 +10149,7 @@
"type": "github"
}
],
- "time": "2023-06-19T11:14:25+00:00"
+ "time": "2023-06-30T11:17:05+00:00"
},
{
"name": "webmozart/assert",
@@ -8034,30 +10259,108 @@
},
"funding": [
{
- "url": "https://github.com/yiisoft",
- "type": "github"
+ "url": "https://github.com/yiisoft",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/yiisoft",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2021-10-26T21:43:25+00:00"
+ },
+ {
+ "name": "zircote/swagger-php",
+ "version": "4.7.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/zircote/swagger-php.git",
+ "reference": "6d2f0fcc46bf9043877de8656a9ea95331155522"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/zircote/swagger-php/zipball/6d2f0fcc46bf9043877de8656a9ea95331155522",
+ "reference": "6d2f0fcc46bf9043877de8656a9ea95331155522",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/annotations": "^1.7 || ^2.0",
+ "ext-json": "*",
+ "php": ">=7.2",
+ "psr/log": "^1.1 || ^2.0 || ^3.0",
+ "symfony/deprecation-contracts": "^2 || ^3",
+ "symfony/finder": ">=2.2",
+ "symfony/yaml": ">=3.3"
+ },
+ "require-dev": {
+ "composer/package-versions-deprecated": "^1.11",
+ "friendsofphp/php-cs-fixer": "^2.17 || ^3.0",
+ "phpstan/phpstan": "^1.6",
+ "phpunit/phpunit": ">=8",
+ "vimeo/psalm": "^4.23"
+ },
+ "bin": [
+ "bin/openapi"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "OpenApi\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Robert Allen",
+ "email": "zircote@gmail.com"
},
{
- "url": "https://opencollective.com/yiisoft",
- "type": "open_collective"
+ "name": "Bob Fanger",
+ "email": "bfanger@gmail.com",
+ "homepage": "https://bfanger.nl"
+ },
+ {
+ "name": "Martin Rademacher",
+ "email": "mano@radebatz.net",
+ "homepage": "https://radebatz.net"
}
],
- "time": "2021-10-26T21:43:25+00:00"
+ "description": "swagger-php - Generate interactive documentation for your RESTful API using phpdoc annotations",
+ "homepage": "https://github.com/zircote/swagger-php/",
+ "keywords": [
+ "api",
+ "json",
+ "rest",
+ "service discovery"
+ ],
+ "support": {
+ "issues": "https://github.com/zircote/swagger-php/issues",
+ "source": "https://github.com/zircote/swagger-php/tree/4.7.10"
+ },
+ "time": "2023-04-28T00:56:39+00:00"
}
],
"packages-dev": [
{
"name": "brianium/paratest",
- "version": "v7.2.0",
+ "version": "v7.2.2",
"source": {
"type": "git",
"url": "https://github.com/paratestphp/paratest.git",
- "reference": "970d21c0ad524861c16548b1363fc21b6c724634"
+ "reference": "eb9d6b0924bf39781ab7a7ed1d7db89514f9ea76"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/paratestphp/paratest/zipball/970d21c0ad524861c16548b1363fc21b6c724634",
- "reference": "970d21c0ad524861c16548b1363fc21b6c724634",
+ "url": "https://api.github.com/repos/paratestphp/paratest/zipball/eb9d6b0924bf39781ab7a7ed1d7db89514f9ea76",
+ "reference": "eb9d6b0924bf39781ab7a7ed1d7db89514f9ea76",
"shasum": ""
},
"require": {
@@ -8127,7 +10430,7 @@
],
"support": {
"issues": "https://github.com/paratestphp/paratest/issues",
- "source": "https://github.com/paratestphp/paratest/tree/v7.2.0"
+ "source": "https://github.com/paratestphp/paratest/tree/v7.2.2"
},
"funding": [
{
@@ -8139,39 +10442,34 @@
"type": "paypal"
}
],
- "time": "2023-06-14T13:08:51+00:00"
+ "time": "2023-06-22T14:22:36+00:00"
},
{
- "name": "composer/pcre",
- "version": "3.1.0",
+ "name": "butschster/entity-faker",
+ "version": "v2.0.0",
"source": {
"type": "git",
- "url": "https://github.com/composer/pcre.git",
- "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
+ "url": "https://github.com/butschster/entity-faker.git",
+ "reference": "64349ff1e9d7f96aacc99781ea18db163ee366ab"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
- "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
+ "url": "https://api.github.com/repos/butschster/entity-faker/zipball/64349ff1e9d7f96aacc99781ea18db163ee366ab",
+ "reference": "64349ff1e9d7f96aacc99781ea18db163ee366ab",
"shasum": ""
},
- "require": {
- "php": "^7.4 || ^8.0"
- },
"require-dev": {
- "phpstan/phpstan": "^1.3",
- "phpstan/phpstan-strict-rules": "^1.1",
- "symfony/phpunit-bridge": "^5"
+ "fakerphp/faker": "^1.19",
+ "laminas/laminas-hydrator": "^4.2",
+ "mockery/mockery": "^1.5",
+ "php": "^8.1",
+ "phpunit/phpunit": "^9.5"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "Composer\\Pcre\\": "src"
+ "Butschster\\Tests\\": "tests",
+ "Butschster\\EntityFaker\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -8180,58 +10478,44 @@
],
"authors": [
{
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
+ "name": "Pavel Buchnev",
+ "email": "butschster@gmail.com"
}
],
- "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
+ "description": "Create fake entities based on your classes",
"keywords": [
- "PCRE",
- "preg",
- "regex",
- "regular expression"
+ "entity-generator",
+ "faker",
+ "php",
+ "seeder"
],
"support": {
- "issues": "https://github.com/composer/pcre/issues",
- "source": "https://github.com/composer/pcre/tree/3.1.0"
+ "issues": "https://github.com/butschster/entity-faker/issues",
+ "source": "https://github.com/butschster/entity-faker/tree/v2.0.0"
},
- "funding": [
- {
- "url": "https://packagist.com",
- "type": "custom"
- },
- {
- "url": "https://github.com/composer",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
- "type": "tidelift"
- }
- ],
- "time": "2022-11-17T09:50:14+00:00"
+ "time": "2022-07-13T20:13:15+00:00"
},
{
- "name": "composer/semver",
- "version": "3.3.2",
+ "name": "composer/pcre",
+ "version": "3.1.0",
"source": {
"type": "git",
- "url": "https://github.com/composer/semver.git",
- "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
+ "url": "https://github.com/composer/pcre.git",
+ "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
- "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
+ "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
+ "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
"shasum": ""
},
"require": {
- "php": "^5.3.2 || ^7.0 || ^8.0"
+ "php": "^7.4 || ^8.0"
},
"require-dev": {
- "phpstan/phpstan": "^1.4",
- "symfony/phpunit-bridge": "^4.2 || ^5"
+ "phpstan/phpstan": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "symfony/phpunit-bridge": "^5"
},
"type": "library",
"extra": {
@@ -8241,7 +10525,7 @@
},
"autoload": {
"psr-4": {
- "Composer\\Semver\\": "src"
+ "Composer\\Pcre\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -8249,33 +10533,22 @@
"MIT"
],
"authors": [
- {
- "name": "Nils Adermann",
- "email": "naderman@naderman.de",
- "homepage": "http://www.naderman.de"
- },
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be"
- },
- {
- "name": "Rob Bast",
- "email": "rob.bast@gmail.com",
- "homepage": "http://robbast.nl"
}
],
- "description": "Semver library that offers utilities, version constraint parsing and validation.",
+ "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
"keywords": [
- "semantic",
- "semver",
- "validation",
- "versioning"
+ "PCRE",
+ "preg",
+ "regex",
+ "regular expression"
],
"support": {
- "irc": "irc://irc.freenode.org/composer",
- "issues": "https://github.com/composer/semver/issues",
- "source": "https://github.com/composer/semver/tree/3.3.2"
+ "issues": "https://github.com/composer/pcre/issues",
+ "source": "https://github.com/composer/pcre/tree/3.1.0"
},
"funding": [
{
@@ -8291,7 +10564,7 @@
"type": "tidelift"
}
],
- "time": "2022-04-01T19:23:25+00:00"
+ "time": "2022-11-17T09:50:14+00:00"
},
{
"name": "composer/xdebug-handler",
@@ -8408,16 +10681,16 @@
},
{
"name": "ergebnis/composer-normalize",
- "version": "2.31.0",
+ "version": "2.32.0",
"source": {
"type": "git",
"url": "https://github.com/ergebnis/composer-normalize.git",
- "reference": "da1d18bcc2ca02111359c2c76fd938a907ba0a16"
+ "reference": "7198c83a4ae261bec72726663be20a7639653a27"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/da1d18bcc2ca02111359c2c76fd938a907ba0a16",
- "reference": "da1d18bcc2ca02111359c2c76fd938a907ba0a16",
+ "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/7198c83a4ae261bec72726663be20a7639653a27",
+ "reference": "7198c83a4ae261bec72726663be20a7639653a27",
"shasum": ""
},
"require": {
@@ -8428,19 +10701,20 @@
"ext-json": "*",
"justinrainbow/json-schema": "^5.2.12",
"localheinz/diff": "^1.1.1",
- "php": "~8.0.0 || ~8.1.0 || ~8.2.0"
+ "php": "~8.1.0 || ~8.2.0"
},
"require-dev": {
- "composer/composer": "^2.5.5",
+ "composer/composer": "^2.5.8",
"ergebnis/license": "^2.1.0",
- "ergebnis/php-cs-fixer-config": "^5.5.2",
- "fakerphp/faker": "^1.21.0",
- "infection/infection": "~0.26.19",
- "phpunit/phpunit": "^9.6.7",
+ "ergebnis/php-cs-fixer-config": "^5.10.0",
+ "ergebnis/phpunit-slow-test-detector": "^2.3.0",
+ "fakerphp/faker": "^1.23.0",
+ "infection/infection": "~0.27.0",
+ "phpunit/phpunit": "^10.2.3",
"psalm/plugin-phpunit": "~0.18.4",
- "rector/rector": "~0.15.25",
+ "rector/rector": "~0.17.2",
"symfony/filesystem": "^6.0.13",
- "vimeo/psalm": "^5.9.0"
+ "vimeo/psalm": "^5.13.1"
},
"type": "composer-plugin",
"extra": {
@@ -8479,7 +10753,7 @@
"security": "https://github.com/ergebnis/composer-normalize/blob/main/.github/SECURITY.md",
"source": "https://github.com/ergebnis/composer-normalize"
},
- "time": "2023-05-02T14:10:33+00:00"
+ "time": "2023-06-30T10:51:27+00:00"
},
{
"name": "ergebnis/json",
@@ -9606,16 +11880,16 @@
},
{
"name": "pestphp/pest",
- "version": "v2.7.0",
+ "version": "v2.8.1",
"source": {
"type": "git",
"url": "https://github.com/pestphp/pest.git",
- "reference": "c0af671ca214c1fb43133daaa0a667f57b11ef10"
+ "reference": "cd823193cc8a68b77146387b8f5dd65ef0470d62"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/pestphp/pest/zipball/c0af671ca214c1fb43133daaa0a667f57b11ef10",
- "reference": "c0af671ca214c1fb43133daaa0a667f57b11ef10",
+ "url": "https://api.github.com/repos/pestphp/pest/zipball/cd823193cc8a68b77146387b8f5dd65ef0470d62",
+ "reference": "cd823193cc8a68b77146387b8f5dd65ef0470d62",
"shasum": ""
},
"require": {
@@ -9623,7 +11897,7 @@
"nunomaduro/collision": "^7.6.0",
"nunomaduro/termwind": "^1.15.1",
"pestphp/pest-plugin": "^2.0.1",
- "pestphp/pest-plugin-arch": "^2.2.0",
+ "pestphp/pest-plugin-arch": "^2.2.1",
"php": "^8.1.0",
"phpunit/phpunit": "^10.2.2"
},
@@ -9689,7 +11963,7 @@
],
"support": {
"issues": "https://github.com/pestphp/pest/issues",
- "source": "https://github.com/pestphp/pest/tree/v2.7.0"
+ "source": "https://github.com/pestphp/pest/tree/v2.8.1"
},
"funding": [
{
@@ -9701,7 +11975,7 @@
"type": "github"
}
],
- "time": "2023-06-15T12:11:00+00:00"
+ "time": "2023-06-20T12:33:29+00:00"
},
{
"name": "pestphp/pest-plugin",
@@ -10364,16 +12638,16 @@
},
{
"name": "phpstan/phpstan",
- "version": "1.10.19",
+ "version": "1.10.21",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan.git",
- "reference": "af5a296ff02610c1bfb4ddfac9fd4a08657b9046"
+ "reference": "b2a30186be2e4d97dce754ae4e65eb0ec2f04eb5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/af5a296ff02610c1bfb4ddfac9fd4a08657b9046",
- "reference": "af5a296ff02610c1bfb4ddfac9fd4a08657b9046",
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b2a30186be2e4d97dce754ae4e65eb0ec2f04eb5",
+ "reference": "b2a30186be2e4d97dce754ae4e65eb0ec2f04eb5",
"shasum": ""
},
"require": {
@@ -10422,7 +12696,7 @@
"type": "tidelift"
}
],
- "time": "2023-06-14T15:26:58+00:00"
+ "time": "2023-06-21T20:07:58+00:00"
},
{
"name": "phpstan/phpstan-deprecation-rules",
@@ -10893,23 +13167,161 @@
],
"time": "2023-06-11T06:15:20+00:00"
},
+ {
+ "name": "qossmic/deptrac-shim",
+ "version": "1.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/qossmic/deptrac-shim.git",
+ "reference": "3179a2c4978654add865309e3c280ef3d60f0043"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/qossmic/deptrac-shim/zipball/3179a2c4978654add865309e3c280ef3d60f0043",
+ "reference": "3179a2c4978654add865309e3c280ef3d60f0043",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-tokenizer": "*",
+ "ext-zlib": "*",
+ "php": "^8.1"
+ },
+ "replace": {
+ "qossmic/deptrac": "self.version"
+ },
+ "suggest": {
+ "ext-dom": "For using the JUnit output formatter"
+ },
+ "bin": [
+ "deptrac"
+ ],
+ "type": "library",
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Tim Glabisch"
+ },
+ {
+ "name": "Simon Mรถnch",
+ "email": "simon.moench@qossmic.com"
+ },
+ {
+ "name": "Denis Brumann",
+ "email": "denis.brumann@qossmic.com",
+ "role": "maintainer"
+ }
+ ],
+ "description": "deptrac phar distribution",
+ "support": {
+ "issues": "https://github.com/qossmic/deptrac-shim/issues",
+ "source": "https://github.com/qossmic/deptrac-shim/tree/1.0.2"
+ },
+ "time": "2022-12-02T11:47:53+00:00"
+ },
+ {
+ "name": "rinvex/countries",
+ "version": "v9.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/rinvex/countries.git",
+ "reference": "0fdccd0e37bc2f53ae93dda7bbb498189f2e4e22"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/rinvex/countries/zipball/0fdccd0e37bc2f53ae93dda7bbb498189f2e4e22",
+ "reference": "0fdccd0e37bc2f53ae93dda7bbb498189f2e4e22",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1.0"
+ },
+ "require-dev": {
+ "codedungeon/phpunit-result-printer": "^0.32.0",
+ "phpunit/phpunit": "^10.1.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Rinvex\\Country\\Providers\\CountryServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/helpers.php"
+ ],
+ "psr-4": {
+ "Rinvex\\Country\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Rinvex LLC",
+ "email": "help@rinvex.com",
+ "homepage": "https://rinvex.com"
+ },
+ {
+ "name": "Abdelrahman Omran",
+ "email": "me@omranic.com",
+ "homepage": "https://omranic.com",
+ "role": "Project Lead"
+ },
+ {
+ "name": "The Generous PHP Community",
+ "homepage": "https://github.com/rinvex/countries/contributors"
+ }
+ ],
+ "description": "Rinvex Countries is a simple and lightweight package for retrieving country details with flexibility. A whole bunch of data including name, demonym, capital, iso codes, dialling codes, geo data, currencies, flags, emoji, and other attributes for all 250 countries worldwide at your fingertips.",
+ "homepage": "https://rinvex.com",
+ "keywords": [
+ "Flexible",
+ "Simple",
+ "countries",
+ "country",
+ "currencies",
+ "demonym",
+ "dialling",
+ "emoji",
+ "flags",
+ "geographic",
+ "languages",
+ "rinvex",
+ "svg"
+ ],
+ "support": {
+ "docs": "https://github.com/rinvex/countries/blob/master/README.md",
+ "email": "help@rinvex.com",
+ "issues": "https://github.com/rinvex/countries/issues",
+ "source": "https://github.com/rinvex/countries"
+ },
+ "time": "2023-05-02T00:57:05+00:00"
+ },
{
"name": "roave/security-advisories",
"version": "dev-latest",
"source": {
"type": "git",
"url": "https://github.com/Roave/SecurityAdvisories.git",
- "reference": "e47f876d3b2df4a1354964c32820b4d7c10b8675"
+ "reference": "9920192eab87b9ae105696b0b86326c8fac91677"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/e47f876d3b2df4a1354964c32820b4d7c10b8675",
- "reference": "e47f876d3b2df4a1354964c32820b4d7c10b8675",
+ "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/9920192eab87b9ae105696b0b86326c8fac91677",
+ "reference": "9920192eab87b9ae105696b0b86326c8fac91677",
"shasum": ""
},
"conflict": {
"3f/pygmentize": "<1.2",
- "admidio/admidio": "<4.2.8",
+ "admidio/admidio": "<4.2.9",
"adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3",
"aheinze/cockpit": "<=2.2.1",
"akaunting/akaunting": "<2.1.13",
@@ -10922,7 +13334,7 @@
"amphp/http-client": ">=4,<4.4",
"anchorcms/anchor-cms": "<=0.12.7",
"andreapollastri/cipi": "<=3.1.15",
- "andrewhaine/silverstripe-form-capture": ">=0.2,<=0.2.3|>=1,<=1.0.1|>=2,<=2.2.4",
+ "andrewhaine/silverstripe-form-capture": ">=0.2,<=0.2.3|>=1,<1.0.2|>=2,<2.2.5",
"apereo/phpcas": "<1.6",
"api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6|>=2.6,<2.7.10|>=3,<3.0.12|>=3.1,<3.1.3",
"appwrite/server-ce": "<=1.2.1",
@@ -10942,8 +13354,8 @@
"barzahlen/barzahlen-php": "<2.0.1",
"baserproject/basercms": "<4.7.5",
"bassjobsen/bootstrap-3-typeahead": ">4.0.2",
- "bigfork/silverstripe-form-capture": ">=3,<=3.1",
- "billz/raspap-webgui": "<=2.6.6",
+ "bigfork/silverstripe-form-capture": ">=3,<3.1.1",
+ "billz/raspap-webgui": "<2.8.9",
"bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
"bmarshall511/wordpress_zero_spam": "<5.2.13",
"bolt/bolt": "<3.7.2",
@@ -10980,7 +13392,7 @@
"contao/core-bundle": "<4.9.40|>=4.10,<4.11.7|>=4.13,<4.13.21|>=5.1,<5.1.4|= 4.10.0",
"contao/listing-bundle": ">=4,<4.4.8",
"contao/managed-edition": "<=1.5",
- "craftcms/cms": "<4.4.6|>= 4.0.0-RC1, < 4.4.12|>= 4.0.0-RC1, <= 4.4.5|>= 4.0.0-RC1, <= 4.4.6|>= 4.0.0-RC1, < 4.4.6|>= 4.0.0-RC1, < 4.3.7|>= 4.0.0-RC1, < 4.2.1",
+ "craftcms/cms": "<=4.4.9|>= 4.0.0-RC1, < 4.4.12|>= 4.0.0-RC1, <= 4.4.5|>= 4.0.0-RC1, <= 4.4.6|>= 4.0.0-RC1, < 4.4.6|>= 4.0.0-RC1, < 4.3.7|>= 4.0.0-RC1, < 4.2.1",
"croogo/croogo": "<3.0.7",
"cuyz/valinor": "<0.12",
"czproject/git-php": "<4.0.3",
@@ -11062,7 +13474,7 @@
"froala/wysiwyg-editor": "<3.2.7",
"froxlor/froxlor": "<2.1",
"fuel/core": "<1.8.1",
- "funadmin/funadmin": "<=3.2",
+ "funadmin/funadmin": "<=3.2|>=3.3.2,<=3.3.3",
"gaoming13/wechat-php-sdk": "<=1.10.2",
"genix/cms": "<=1.1.11",
"getgrav/grav": "<1.7.42",
@@ -11080,6 +13492,7 @@
"guzzlehttp/psr7": "<1.9.1|>=2,<2.4.5",
"harvesthq/chosen": "<1.8.7",
"helloxz/imgurl": "= 2.31|<=2.31",
+ "hhxsv5/laravel-s": "<3.7.36",
"hillelcoren/invoice-ninja": "<5.3.35",
"himiklab/yii2-jqgrid-widget": "<1.0.8",
"hjue/justwriting": "<=1",
@@ -11120,6 +13533,7 @@
"kazist/phpwhois": "<=4.2.6",
"kelvinmo/simplexrd": "<3.1.1",
"kevinpapst/kimai2": "<1.16.7",
+ "khodakhah/nodcms": "<=3",
"kimai/kimai": "<1.1",
"kitodo/presentation": "<3.1.2",
"klaviyo/magento2-extension": ">=1,<3",
@@ -11170,7 +13584,7 @@
"modx/revolution": "<= 2.8.3-pl|<2.8",
"mojo42/jirafeau": "<4.4",
"monolog/monolog": ">=1.8,<1.12",
- "moodle/moodle": "<4.2-rc.2|= 3.11",
+ "moodle/moodle": "<4.2-rc.2|= 4.2.0|= 3.11",
"mustache/mustache": ">=2,<2.14.1",
"namshi/jose": "<2.2",
"neoan3-apps/template": "<1.1.1",
@@ -11274,10 +13688,11 @@
"scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11",
"sensiolabs/connect": "<4.2.3",
"serluck/phpwhois": "<=4.2.6",
+ "sheng/yiicms": "<=1.2",
"shopware/core": "<=6.4.20",
"shopware/platform": "<=6.4.20",
"shopware/production": "<=6.3.5.2",
- "shopware/shopware": "<=5.7.14",
+ "shopware/shopware": "<=5.7.17",
"shopware/storefront": "<=6.4.8.1",
"shopxo/shopxo": "<2.2.6",
"showdoc/showdoc": "<2.10.4",
@@ -11411,6 +13826,8 @@
"web-auth/webauthn-framework": ">=3.3,<3.3.4",
"webbuilders-group/silverstripe-kapost-bridge": "<0.4",
"webcoast/deferred-image-processing": "<1.0.2",
+ "webklex/laravel-imap": "<5.3",
+ "webklex/php-imap": "<5.3",
"webpa/webpa": "<3.1.2",
"wikimedia/parsoid": "<0.12.2",
"willdurand/js-translation-bundle": "<2.1.1",
@@ -11502,7 +13919,7 @@
"type": "tidelift"
}
],
- "time": "2023-06-16T20:04:13+00:00"
+ "time": "2023-06-28T23:04:41+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -13097,18 +15514,96 @@
}
],
"time": "2023-06-27T21:57:36+00:00"
+ },
+ {
+ "name": "wayofdev/laravel-cycle-orm-factories",
+ "version": "v1.1.51",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/wayofdev/laravel-cycle-orm-factories.git",
+ "reference": "5bbd8178a2c1acd82289ba52336ac085231d0099"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/wayofdev/laravel-cycle-orm-factories/zipball/5bbd8178a2c1acd82289ba52336ac085231d0099",
+ "reference": "5bbd8178a2c1acd82289ba52336ac085231d0099",
+ "shasum": ""
+ },
+ "require": {
+ "butschster/entity-faker": "^2.0",
+ "fakerphp/faker": "^1.22",
+ "laminas/laminas-hydrator": "^4.14",
+ "laravel/framework": "^v10.13",
+ "php": "^8.2"
+ },
+ "require-dev": {
+ "ergebnis/composer-normalize": "^2.31",
+ "nunomaduro/larastan": "^2.6",
+ "orchestra/testbench": "^8.5",
+ "pestphp/pest": "^2.6",
+ "pestphp/pest-plugin-laravel": "^2.0.0",
+ "phpstan/extension-installer": "^1.3",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-deprecation-rules": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.5",
+ "phpunit/phpunit": "^10.2",
+ "roave/security-advisories": "dev-latest",
+ "wayofdev/cs-fixer-config": "^1.2",
+ "wayofdev/laravel-cycle-orm-adapter": "^3.3"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "WayOfDev\\DatabaseSeeder\\Bridge\\Laravel\\Providers\\DatabaseSeederServiceProvider"
+ ]
+ },
+ "composer-normalize": {
+ "indent-size": 4,
+ "indent-style": "space"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "WayOfDev\\DatabaseSeeder\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "lotyp",
+ "email": "the@wayof.dev"
+ }
+ ],
+ "description": "Cycle-ORM Entity Factories and Database Seeders for Laravel.",
+ "homepage": "https://wayof.dev",
+ "support": {
+ "issues": "https://github.com/wayofdev/laravel-cycle-orm-factories/issues",
+ "source": "https://github.com/wayofdev/laravel-cycle-orm-factories"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/wayofdev",
+ "type": "github"
+ }
+ ],
+ "time": "2023-06-30T08:25:57+00:00"
}
],
"aliases": [],
- "minimum-stability": "stable",
+ "minimum-stability": "dev",
"stability-flags": {
"roave/security-advisories": 20
},
"prefer-stable": true,
"prefer-lowest": false,
"platform": {
- "ext-pdo": "*",
- "php": "^8.1"
+ "php": "^8.2",
+ "ext-pdo": "*"
},
"platform-dev": [],
"plugin-api-version": "2.3.0"
diff --git a/app/config/app.php b/app/config/app.php
index 2a713d6..64994d2 100644
--- a/app/config/app.php
+++ b/app/config/app.php
@@ -123,16 +123,26 @@
*/
'providers' => ServiceProvider::defaultProviders()->merge([
/*
- * Package Service Providers...
+ * Package Service Providers
*/
/*
- * Application Service Providers...
+ * Application Service Providers
*/
\Laravel\Providers\AppServiceProvider::class,
\Laravel\Providers\AuthServiceProvider::class,
\Laravel\Providers\EventServiceProvider::class,
\Laravel\Providers\RouteServiceProvider::class,
+
+ /*
+ * Domain Service Providers
+ */
+ \Laravel\Providers\Domain\CountryServiceProvider::class,
+ \Laravel\Providers\Domain\ClientServiceProvider::class,
+ \Laravel\Providers\Domain\CategoryServiceProvider::class,
+ \Laravel\Providers\Domain\ProductServiceProvider::class,
+ \Laravel\Providers\Domain\CartServiceProvider::class,
+ \Laravel\Providers\Domain\OrderServiceProvider::class,
])->toArray(),
/*
diff --git a/app/config/auth.php b/app/config/auth.php
index 96c50ef..b4d4caf 100644
--- a/app/config/auth.php
+++ b/app/config/auth.php
@@ -11,8 +11,7 @@
* as required, but they're a perfect start for most applications.
*/
'defaults' => [
- 'guard' => 'web',
- 'passwords' => 'users',
+ 'guard' => 'api-public',
],
/*
@@ -30,9 +29,15 @@
*
*/
'guards' => [
- 'web' => [
- 'driver' => 'session',
- 'provider' => 'users',
+ 'api-admin' => [
+ 'driver' => 'auth0.authorizer',
+ 'provider' => 'auth0-provider',
+ 'configuration' => 'api-admin',
+ ],
+ 'api-public' => [
+ 'driver' => 'auth0.authorizer',
+ 'provider' => 'auth0-provider',
+ 'configuration' => 'api-public',
],
],
@@ -51,9 +56,10 @@
*
*/
'providers' => [
- 'users' => [
- 'driver' => 'database',
- 'table' => 'users',
+ 'auth0-provider' => [
+ 'driver' => 'auth0.provider',
+ 'repository' => 'auth0.repository',
+ // 'repository' => \Infrastructure\Persistence\Auth0\ClientRepository::class,
],
],
diff --git a/app/config/auth0.php b/app/config/auth0.php
new file mode 100644
index 0000000..bb86d83
--- /dev/null
+++ b/app/config/auth0.php
@@ -0,0 +1,64 @@
+ false,
+ 'registerMiddleware' => false,
+ 'registerAuthenticationRoutes' => false,
+ 'configurationPath' => null,
+
+ 'guards' => [
+ 'default' => [
+ Configuration::CONFIG_STRATEGY => Configuration::get(Configuration::CONFIG_STRATEGY, SdkConfiguration::STRATEGY_NONE),
+ // Configuration::CONFIG_DOMAIN => Configuration::get(Configuration::CONFIG_DOMAIN),
+ Configuration::CONFIG_CUSTOM_DOMAIN => Configuration::get(Configuration::CONFIG_CUSTOM_DOMAIN),
+ Configuration::CONFIG_CLIENT_ID => Configuration::get(Configuration::CONFIG_CLIENT_ID),
+ Configuration::CONFIG_CLIENT_SECRET => Configuration::get(Configuration::CONFIG_CLIENT_SECRET),
+ Configuration::CONFIG_AUDIENCE => Configuration::get(Configuration::CONFIG_AUDIENCE),
+ Configuration::CONFIG_ORGANIZATION => Configuration::get(Configuration::CONFIG_ORGANIZATION),
+ Configuration::CONFIG_USE_PKCE => Configuration::get(Configuration::CONFIG_USE_PKCE),
+ Configuration::CONFIG_SCOPE => Configuration::get(Configuration::CONFIG_SCOPE),
+ Configuration::CONFIG_RESPONSE_MODE => Configuration::get(Configuration::CONFIG_RESPONSE_MODE),
+ Configuration::CONFIG_RESPONSE_TYPE => Configuration::get(Configuration::CONFIG_RESPONSE_TYPE),
+ Configuration::CONFIG_TOKEN_ALGORITHM => Configuration::get(Configuration::CONFIG_TOKEN_ALGORITHM),
+ Configuration::CONFIG_TOKEN_JWKS_URI => Configuration::get(Configuration::CONFIG_TOKEN_JWKS_URI),
+ Configuration::CONFIG_TOKEN_MAX_AGE => Configuration::get(Configuration::CONFIG_TOKEN_MAX_AGE),
+ Configuration::CONFIG_TOKEN_LEEWAY => Configuration::get(Configuration::CONFIG_TOKEN_LEEWAY),
+ Configuration::CONFIG_TOKEN_CACHE => Configuration::get(Configuration::CONFIG_TOKEN_CACHE),
+ Configuration::CONFIG_TOKEN_CACHE_TTL => Configuration::get(Configuration::CONFIG_TOKEN_CACHE_TTL),
+ Configuration::CONFIG_HTTP_MAX_RETRIES => Configuration::get(Configuration::CONFIG_HTTP_MAX_RETRIES),
+ Configuration::CONFIG_HTTP_TELEMETRY => Configuration::get(Configuration::CONFIG_HTTP_TELEMETRY),
+
+ Configuration::CONFIG_DOMAIN => env('AUTH0_ADMIN_DOMAIN'),
+ Configuration::CONFIG_MANAGEMENT_TOKEN => env('AUTH0_MANAGEMENT_API_TOKEN'),
+ // Configuration::CONFIG_MANAGEMENT_TOKEN => Configuration::get(Configuration::CONFIG_MANAGEMENT_TOKEN),
+
+ Configuration::CONFIG_MANAGEMENT_TOKEN_CACHE => Configuration::get(Configuration::CONFIG_MANAGEMENT_TOKEN_CACHE),
+ Configuration::CONFIG_CLIENT_ASSERTION_SIGNING_KEY => Configuration::get(Configuration::CONFIG_CLIENT_ASSERTION_SIGNING_KEY),
+ Configuration::CONFIG_CLIENT_ASSERTION_SIGNING_ALGORITHM => Configuration::get(Configuration::CONFIG_CLIENT_ASSERTION_SIGNING_ALGORITHM),
+ Configuration::CONFIG_PUSHED_AUTHORIZATION_REQUEST => Configuration::get(Configuration::CONFIG_PUSHED_AUTHORIZATION_REQUEST),
+ ],
+
+ 'api-admin' => [
+ Configuration::CONFIG_STRATEGY => SdkConfiguration::STRATEGY_API,
+ Configuration::CONFIG_DOMAIN => env('AUTH0_ADMIN_DOMAIN'),
+ Configuration::CONFIG_CLIENT_ID => env('AUTH0_ADMIN_CLIENT_ID'),
+ Configuration::CONFIG_CLIENT_SECRET => env('AUTH0_ADMIN_CLIENT_SECRET'),
+ Configuration::CONFIG_AUDIENCE => [env('AUTH0_ADMIN_AUDIENCE')],
+ Configuration::CONFIG_MANAGEMENT_TOKEN => env('AUTH0_MANAGEMENT_API_TOKEN'),
+ ],
+
+ 'api-public' => [
+ Configuration::CONFIG_STRATEGY => SdkConfiguration::STRATEGY_API,
+ Configuration::CONFIG_DOMAIN => env('AUTH0_PUBLIC_DOMAIN'),
+ Configuration::CONFIG_CLIENT_ID => env('AUTH0_PUBLIC_CLIENT_ID'),
+ Configuration::CONFIG_CLIENT_SECRET => env('AUTH0_PUBLIC_CLIENT_SECRET'),
+ Configuration::CONFIG_AUDIENCE => [env('AUTH0_PUBLIC_AUDIENCE')],
+ Configuration::CONFIG_MANAGEMENT_TOKEN => env('AUTH0_MANAGEMENT_API_TOKEN'),
+ ],
+ ],
+];
diff --git a/app/config/cycle.php b/app/config/cycle.php
index 33743b6..9e3bf70 100644
--- a/app/config/cycle.php
+++ b/app/config/cycle.php
@@ -157,11 +157,10 @@
*/
'defaults' => [
SchemaInterface::MAPPER => \Cycle\ORM\Mapper\Mapper::class,
- SchemaInterface::REPOSITORY => \Cycle\ORM\Select\Repository::class,
+ SchemaInterface::REPOSITORY => \WayOfDev\RQL\Bridge\Cycle\Repository::class,
+ SchemaInterface::SOURCE => \Cycle\ORM\Select\Source::class,
SchemaInterface::SCOPE => null,
- SchemaInterface::TYPECAST_HANDLER => [
- // \Cycle\ORM\Parser\Typecast::class, \App\Infrastructure\CycleORM\Typecaster\UuidTypecast::class,
- ],
+ SchemaInterface::TYPECAST_HANDLER => [],
],
'collections' => [
@@ -229,10 +228,5 @@
/*
* Custom relation types for entities
*/
- 'customRelations' => [
- // \Cycle\ORM\Relation::EMBEDDED => [
- // \Cycle\ORM\Config\RelationConfig::LOADER => \Cycle\ORM\Select\Loader\EmbeddedLoader::class,
- // \Cycle\ORM\Config\RelationConfig::RELATION => \Cycle\ORM\Relation\Embedded::class,
- // ],
- ],
+ 'customRelations' => [],
];
diff --git a/app/config/open-docs.php b/app/config/open-docs.php
new file mode 100644
index 0000000..050d6c5
--- /dev/null
+++ b/app/config/open-docs.php
@@ -0,0 +1,83 @@
+ true,
+
+ 'frontend' => [
+ /*
+ * Should swagger be enabled by default
+ */
+ 'swagger' => [
+ 'enabled' => env('OPEN_DOCS_SWAGGER_ENABLED', true),
+
+ 'version' => '4.19.0',
+
+ 'controller' => SwaggerController::class,
+ ],
+
+ /*
+ * Should redoc be enabled by default
+ */
+ 'redoc' => [
+ 'enabled' => env('OPEN_DOCS_REDOC_ENABLED', true),
+
+ 'version' => '2.0.0',
+
+ 'controller' => RedocController::class,
+ ],
+ ],
+
+ 'collections' => [
+ 'public' => [
+ 'docs' => [
+ 'route' => [
+ 'url' => '/api/public/docs',
+ ],
+ ],
+ 'redoc' => [
+ 'route' => [
+ 'url' => '/api/public/redoc',
+ ],
+ ],
+ 'swagger' => [
+ 'route' => [
+ 'url' => '/api/public/swagger',
+ ],
+ ],
+ 'paths' => [
+ base_path('src/Application'),
+ app_path('Public'),
+ ],
+ ],
+
+ 'admin' => [
+ 'docs' => [
+ 'route' => [
+ 'url' => '/api/admin/docs',
+ ],
+ ],
+ 'redoc' => [
+ 'route' => [
+ 'url' => '/api/admin/redoc',
+ ],
+ ],
+ 'swagger' => [
+ 'route' => [
+ 'url' => '/api/admin/swagger',
+ ],
+ ],
+ 'paths' => [
+ base_path('src/Application'),
+ app_path('Admin'),
+ ],
+ ],
+ ],
+];
diff --git a/app/config/route-attributes.php b/app/config/route-attributes.php
new file mode 100644
index 0000000..d006632
--- /dev/null
+++ b/app/config/route-attributes.php
@@ -0,0 +1,34 @@
+ true,
+
+ /*
+ * Controllers in these directories that have routing attributes
+ * will automatically be registered.
+ *
+ * Optionally, you can specify group configuration by using key/values
+ */
+ 'directories' => [
+ app_path('Public') => [
+ 'prefix' => 'api/public',
+ // 'middleware' => 'auth:api-public',
+ ],
+ app_path('Admin') => [
+ 'prefix' => 'api/admin',
+ 'middleware' => 'auth:api-admin',
+ ],
+ ],
+
+ /*
+ * This middleware will be applied to all routes.
+ */
+ 'middleware' => [
+ \Illuminate\Routing\Middleware\SubstituteBindings::class,
+ ],
+];
diff --git a/app/database/factories/Domain/AddressFactory.php b/app/database/factories/Domain/AddressFactory.php
new file mode 100644
index 0000000..2afdb34
--- /dev/null
+++ b/app/database/factories/Domain/AddressFactory.php
@@ -0,0 +1,47 @@
+make();
+
+ return [
+ 'id' => $generator->nextId(),
+ 'type' => $this->faker->randomElement(Type::cases()),
+ 'client' => $client,
+ 'signature' => Signature::random(),
+ ];
+ }
+
+ public function makeEntity(array $definition): Address
+ {
+ return new Address(
+ id: $definition['id'],
+ type: $definition['type'],
+ client: $definition['client'],
+ signature: $definition['signature'],
+ );
+ }
+
+ public function entity(): string
+ {
+ return Address::class;
+ }
+}
diff --git a/app/database/factories/Domain/CartFactory.php b/app/database/factories/Domain/CartFactory.php
new file mode 100644
index 0000000..6754380
--- /dev/null
+++ b/app/database/factories/Domain/CartFactory.php
@@ -0,0 +1,41 @@
+ $generator->nextId(),
+ 'signature' => Signature::random(),
+ ];
+ }
+
+ public function makeEntity(array $definition): Cart
+ {
+ return new Cart(
+ id: $definition['id'],
+ signature: $definition['signature'],
+ );
+ }
+
+ public function entity(): string
+ {
+ return Cart::class;
+ }
+}
diff --git a/app/database/factories/Domain/CategoryFactory.php b/app/database/factories/Domain/CategoryFactory.php
new file mode 100644
index 0000000..f54de4d
--- /dev/null
+++ b/app/database/factories/Domain/CategoryFactory.php
@@ -0,0 +1,46 @@
+ $generator->nextId(),
+ 'name' => $this->faker->name(),
+ 'gender' => $this->faker->randomElement(Gender::cases()),
+ 'signature' => Signature::random(),
+ ];
+ }
+
+ public function makeEntity(array $definition): Category
+ {
+ return new Category(
+ id: $definition['id'],
+ name: $definition['name'],
+ gender: $definition['gender'],
+ signature: $definition['signature'],
+ );
+ }
+
+ public function entity(): string
+ {
+ return Category::class;
+ }
+}
diff --git a/app/database/factories/Domain/ClientFactory.php b/app/database/factories/Domain/ClientFactory.php
new file mode 100644
index 0000000..878a074
--- /dev/null
+++ b/app/database/factories/Domain/ClientFactory.php
@@ -0,0 +1,77 @@
+ $generator->nextId(),
+ 'userId' => null,
+ 'email' => fake()->unique()->safeEmail(),
+ 'username' => fake()->unique()->userName(),
+ 'name' => Name::fromArray([
+ 'firstName' => fake()->firstName(),
+ 'lastName' => fake()->lastName(),
+ 'middleName' => fake()->lastName(),
+ ]),
+ 'personalInfo' => PersonalInfo::fromArray([
+ 'gender' => $this->faker->randomElement(Gender::cases())->toString(),
+ 'birthDate' => null,
+ ]),
+ 'company' => fake()->company(),
+ 'signature' => Signature::random(),
+ ];
+ }
+
+ /**
+ * @throws AssertionFailedException
+ */
+ public function deleted(): ClientFactory
+ {
+ $deleted = Signature::random();
+
+ return $this->state(fn (array $attributes) => [
+ 'deleted' => $deleted,
+ ]);
+ }
+
+ public function makeEntity(array $definition): Client
+ {
+ return new Client(
+ id: $definition['id'],
+ userId: $definition['userId'],
+ email: $definition['email'],
+ username: $definition['username'],
+ name: $definition['name'],
+ personalInfo: $definition['personalInfo'],
+ company: $definition['company'],
+ signature: $definition['signature'],
+ );
+ }
+
+ public function entity(): string
+ {
+ return Client::class;
+ }
+}
diff --git a/app/database/factories/Domain/OrderFactory.php b/app/database/factories/Domain/OrderFactory.php
new file mode 100644
index 0000000..e61c0ae
--- /dev/null
+++ b/app/database/factories/Domain/OrderFactory.php
@@ -0,0 +1,41 @@
+ $generator->nextId(),
+ 'signature' => Signature::random(),
+ ];
+ }
+
+ public function makeEntity(array $definition): Order
+ {
+ return new Order(
+ id: $definition['id'],
+ signature: $definition['signature'],
+ );
+ }
+
+ public function entity(): string
+ {
+ return Order::class;
+ }
+}
diff --git a/app/database/factories/Domain/ProductFactory.php b/app/database/factories/Domain/ProductFactory.php
new file mode 100644
index 0000000..8f577b3
--- /dev/null
+++ b/app/database/factories/Domain/ProductFactory.php
@@ -0,0 +1,73 @@
+findAll();
+
+ return [
+ 'id' => $generator->nextId(),
+ 'name' => $this->faker->name(),
+ 'status' => $this->faker->randomElement(Status::cases()),
+ 'description' => $this->faker->text(),
+ 'category' => $this->faker->randomElement($categories),
+ 'code' => Code::fromArray([
+ 'sku' => Sku::fromString('S' . $this->faker->numberBetween(1000, 999999))->toString(),
+ 'ian' => Ian::fromString($this->faker->ean13())->toString(),
+ 'upc' => Upc::fromString($this->faker->ean13())->toString(),
+ ]),
+ 'seo' => Seo::fromArray([
+ 'slug' => $this->faker->slug(),
+ 'title' => $this->faker->name(),
+ 'description' => $this->faker->text(),
+ ]),
+ 'signature' => Signature::random(),
+ ];
+ }
+
+ public function makeEntity(array $definition): Product
+ {
+ return new Product(
+ id: $definition['id'],
+ name: $definition['name'],
+ status: $definition['status'],
+ description: $definition['description'],
+ category: $definition['category'],
+ code: $definition['code'],
+ seo: $definition['seo'],
+ signature: $definition['signature'],
+ );
+ }
+
+ public function entity(): string
+ {
+ return Product::class;
+ }
+}
diff --git a/app/database/factories/UserFactory.php b/app/database/factories/UserFactory.php
deleted file mode 100644
index 2a28a0e..0000000
--- a/app/database/factories/UserFactory.php
+++ /dev/null
@@ -1,40 +0,0 @@
-
- */
-class UserFactory extends Factory
-{
- /**
- * Define the model's default state.
- *
- * @return array
- */
- public function definition(): array
- {
- return [
- 'name' => fake()->name(),
- 'email' => fake()->unique()->safeEmail(),
- 'email_verified_at' => now(),
- 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
- 'remember_token' => Str::random(10),
- ];
- }
-
- /**
- * Indicate that the model's email address should be unverified.
- */
- public function unverified(): static
- {
- return $this->state(fn (array $attributes) => [
- 'email_verified_at' => null,
- ]);
- }
-}
diff --git a/app/database/migrations/cycle/20230517.185454_0_0_default_create_roles_create_users.php b/app/database/migrations/cycle/20230517.185454_0_0_default_create_roles_create_users.php
deleted file mode 100644
index 277cf3b..0000000
--- a/app/database/migrations/cycle/20230517.185454_0_0_default_create_roles_create_users.php
+++ /dev/null
@@ -1,42 +0,0 @@
-table('users')
- ->addColumn('incremental_id', 'bigInteger', ['nullable' => false, 'default' => null])
- ->addColumn('email', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
- ->addColumn('company', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
- ->addColumn('name', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
- ->setPrimaryKeys(['incremental_id'])
- ->create();
- $this->table('roles')
- ->addColumn('id', 'primary', ['nullable' => false, 'default' => null])
- ->addColumn('name', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
- ->addColumn('user_incrementalId', 'bigInteger', ['nullable' => false, 'default' => null])
- ->addIndex(['user_incrementalId'], ['name' => 'roles_index_user_incrementalid_646522feb8e5f', 'unique' => false])
- ->addForeignKey(['user_incrementalId'], 'users', ['incremental_id'], [
- 'name' => 'roles_foreign_user_incrementalid_646522feb8e6c',
- 'delete' => 'CASCADE',
- 'update' => 'CASCADE',
- 'indexCreate' => true,
- ])
- ->setPrimaryKeys(['id'])
- ->create();
- }
-
- public function down(): void
- {
- $this->table('roles')->drop();
- $this->table('users')->drop();
- }
-}
diff --git a/app/database/migrations/cycle/20230630.143040_0_0_default_create_carts_create_items_create_categories_create_client_addresses_create_clients_create_countries_create_country_sta.php b/app/database/migrations/cycle/20230630.143040_0_0_default_create_carts_create_items_create_categories_create_client_addresses_create_clients_create_countries_create_country_sta.php
new file mode 100644
index 0000000..5eef46e
--- /dev/null
+++ b/app/database/migrations/cycle/20230630.143040_0_0_default_create_carts_create_items_create_categories_create_client_addresses_create_clients_create_countries_create_country_sta.php
@@ -0,0 +1,172 @@
+table('carts')
+ ->addColumn('incremental_id', 'bigPrimary', ['nullable' => false, 'default' => null])
+ ->addColumn('id', 'uuid', ['nullable' => false, 'default' => null])
+ ->addColumn('created_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('created_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_by', 'json', ['nullable' => true, 'default' => null])
+ ->setPrimaryKeys(['incremental_id'])
+ ->create();
+ $this->table('items')
+ ->addColumn('incremental_id', 'bigPrimary', ['nullable' => false, 'default' => null])
+ ->addColumn('cart_incrementalId', 'bigInteger', ['nullable' => false, 'default' => null])
+ ->addIndex(['cart_incrementalId'], ['name' => 'items_index_cart_incrementalid_649ee7101f093', 'unique' => false])
+ ->addForeignKey(['cart_incrementalId'], 'carts', ['incremental_id'], [
+ 'name' => 'items_foreign_cart_incrementalid_649ee7101f09c',
+ 'delete' => 'CASCADE',
+ 'update' => 'CASCADE',
+ 'indexCreate' => true,
+ ])
+ ->setPrimaryKeys(['incremental_id'])
+ ->create();
+ $this->table('categories')
+ ->addColumn('incremental_id', 'bigPrimary', ['nullable' => false, 'default' => null])
+ ->addColumn('id', 'uuid', ['nullable' => false, 'default' => null])
+ ->addColumn('name', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->addColumn('gender', 'enum', ['nullable' => false, 'default' => null, 'values' => ['male', 'female', 'other']])
+ ->addColumn('created_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('created_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_by', 'json', ['nullable' => true, 'default' => null])
+ ->setPrimaryKeys(['incremental_id'])
+ ->create();
+ $this->table('clients')
+ ->addColumn('incremental_id', 'bigPrimary', ['nullable' => false, 'default' => null])
+ ->addColumn('id', 'uuid', ['nullable' => false, 'default' => null])
+ ->addColumn('user_id', 'uuid', ['nullable' => true, 'default' => null])
+ ->addColumn('email', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('username', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('company', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('first_name', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('last_name', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('middle_name', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('gender', 'enum', ['nullable' => false, 'default' => null, 'values' => ['male', 'female', 'other']])
+ ->addColumn('birth_date', 'date', ['nullable' => true, 'default' => null])
+ ->addColumn('created_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('created_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_by', 'json', ['nullable' => true, 'default' => null])
+ ->setPrimaryKeys(['incremental_id'])
+ ->create();
+ $this->table('client_addresses')
+ ->addColumn('incremental_id', 'bigPrimary', ['nullable' => false, 'default' => null])
+ ->addColumn('id', 'uuid', ['nullable' => false, 'default' => null])
+ ->addColumn('type', 'enum', ['nullable' => false, 'default' => null, 'values' => ['billing', 'shipping']])
+ ->addColumn('is_default', 'boolean', ['nullable' => false, 'default' => false])
+ ->addColumn('client_id', 'bigInteger', ['nullable' => false, 'default' => null])
+ ->addColumn('created_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('created_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_by', 'json', ['nullable' => true, 'default' => null])
+ ->addIndex(['client_id'], ['name' => 'client_addresses_index_client_id_649ee7101f286', 'unique' => false])
+ ->addForeignKey(['client_id'], 'clients', ['incremental_id'], [
+ 'name' => 'client_addresses_foreign_client_id_649ee7101f28c',
+ 'delete' => 'CASCADE',
+ 'update' => 'CASCADE',
+ 'indexCreate' => true,
+ ])
+ ->setPrimaryKeys(['incremental_id'])
+ ->create();
+ $this->table('countries')
+ ->addColumn('id', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->addColumn('name', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->addColumn('emoji', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->addColumn('iso_alpha2', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->addColumn('iso_alpha3', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->addColumn('iso_numeric', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->setPrimaryKeys(['id'])
+ ->create();
+ $this->table('country_states')
+ ->addColumn('id', 'primary', ['nullable' => false, 'default' => null])
+ ->addColumn('code', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->addColumn('name', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->addColumn('country_id', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->addIndex(['country_id'], ['name' => 'country_states_index_country_id_649ee7101f29e', 'unique' => false])
+ ->addForeignKey(['country_id'], 'countries', ['id'], [
+ 'name' => 'country_states_foreign_country_id_649ee7101f2a2',
+ 'delete' => 'CASCADE',
+ 'update' => 'CASCADE',
+ 'indexCreate' => true,
+ ])
+ ->setPrimaryKeys(['id'])
+ ->create();
+ $this->table('orders')
+ ->addColumn('incremental_id', 'bigPrimary', ['nullable' => false, 'default' => null])
+ ->addColumn('id', 'uuid', ['nullable' => false, 'default' => null])
+ ->addColumn('created_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('created_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_by', 'json', ['nullable' => true, 'default' => null])
+ ->setPrimaryKeys(['incremental_id'])
+ ->create();
+ $this->table('products')
+ ->addColumn('incremental_id', 'bigPrimary', ['nullable' => false, 'default' => null])
+ ->addColumn('id', 'uuid', ['nullable' => false, 'default' => null])
+ ->addColumn('name', 'string', ['nullable' => false, 'default' => null, 'size' => 255])
+ ->addColumn('status', 'enum', [
+ 'nullable' => false,
+ 'default' => 'active',
+ 'values' => ['active', 'disabled', 'hidden'],
+ ])
+ ->addColumn('description', 'text', ['nullable' => false, 'default' => null])
+ ->addColumn('category_id', 'bigInteger', ['nullable' => false, 'default' => null])
+ ->addColumn('code_sku', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('code_ian', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('code_upc', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('seo_slug', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('seo_title', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('seo_description', 'string', ['nullable' => true, 'default' => null, 'size' => 255])
+ ->addColumn('created_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('created_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('updated_by', 'json', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_at', 'datetime', ['nullable' => true, 'default' => null])
+ ->addColumn('deleted_by', 'json', ['nullable' => true, 'default' => null])
+ ->addIndex(['category_id'], ['name' => 'products_index_category_id_649ee7101f2b0', 'unique' => false])
+ ->addForeignKey(['category_id'], 'categories', ['incremental_id'], [
+ 'name' => 'products_foreign_category_id_649ee7101f2b3',
+ 'delete' => 'CASCADE',
+ 'update' => 'CASCADE',
+ 'indexCreate' => true,
+ ])
+ ->setPrimaryKeys(['incremental_id'])
+ ->create();
+ }
+
+ public function down(): void
+ {
+ $this->table('products')->drop();
+ $this->table('orders')->drop();
+ $this->table('country_states')->drop();
+ $this->table('countries')->drop();
+ $this->table('client_addresses')->drop();
+ $this->table('clients')->drop();
+ $this->table('categories')->drop();
+ $this->table('items')->drop();
+ $this->table('carts')->drop();
+ }
+}
diff --git a/app/database/seeders/AddressSeeder.php b/app/database/seeders/AddressSeeder.php
new file mode 100644
index 0000000..c0c1f8c
--- /dev/null
+++ b/app/database/seeders/AddressSeeder.php
@@ -0,0 +1,22 @@
+times(10)->create();
+ }
+}
diff --git a/app/database/seeders/CartSeeder.php b/app/database/seeders/CartSeeder.php
new file mode 100644
index 0000000..9125778
--- /dev/null
+++ b/app/database/seeders/CartSeeder.php
@@ -0,0 +1,22 @@
+times(10)->create();
+ }
+}
diff --git a/app/database/seeders/CategorySeeder.php b/app/database/seeders/CategorySeeder.php
new file mode 100644
index 0000000..e8f60f8
--- /dev/null
+++ b/app/database/seeders/CategorySeeder.php
@@ -0,0 +1,22 @@
+times(10)->create();
+ }
+}
diff --git a/app/database/seeders/ClientSeeder.php b/app/database/seeders/ClientSeeder.php
new file mode 100644
index 0000000..b343dfc
--- /dev/null
+++ b/app/database/seeders/ClientSeeder.php
@@ -0,0 +1,22 @@
+times(10)->create();
+ }
+}
diff --git a/app/database/seeders/CountrySeeder.php b/app/database/seeders/CountrySeeder.php
new file mode 100644
index 0000000..8118ab5
--- /dev/null
+++ b/app/database/seeders/CountrySeeder.php
@@ -0,0 +1,96 @@
+states = new Collection(
+ json_decode(file_get_contents(__DIR__ . '/data/states.json'), false, 512, JSON_THROW_ON_ERROR)
+ );
+ }
+
+ /**
+ * @throws Throwable
+ */
+ public function run(): void
+ {
+ // DB::table('country_states')->truncate();
+ // DB::table('countries')->truncate();
+
+ /** @var RinvexCountry[] $countries */
+ $countries = CountryLoader::countries(true, true);
+
+ // create a map of Country entities keyed by country_code
+ $countryMap = [];
+
+ foreach ($countries as $country) {
+ $entity = new Country(
+ id: $country->getIsoAlpha2(),
+ name: $country->getName(),
+ code: Iso::fromArray([
+ 'alpha2' => $country->getIsoAlpha2(),
+ 'alpha3' => $country->getIsoAlpha3(),
+ 'numeric' => $country->getIsoNumeric(),
+ ]),
+ emoji: $country->getEmoji(),
+ );
+
+ if (in_array($country->getIsoAlpha2(), self::COUNTRIES_WITH_STATES, true)) {
+ $countryMap[$entity->id()] = $entity;
+ }
+
+ $this->entityManager->persist($entity);
+ }
+
+ foreach ($countryMap as $country) {
+ foreach ($this->getStates($country->id()) as $state) {
+ $stateEntity = new State(
+ code: $state->state_code,
+ name: $state->name,
+ country: $country
+ );
+
+ $this->entityManager->persist($stateEntity);
+ }
+ }
+
+ $this->entityManager->run();
+ }
+
+ private function getStates($countryCode): Collection
+ {
+ return $this->states->where('country_code', $countryCode);
+ }
+}
diff --git a/app/database/seeders/DatabaseSeeder.php b/app/database/seeders/DatabaseSeeder.php
index 9f5aa30..fef2a00 100644
--- a/app/database/seeders/DatabaseSeeder.php
+++ b/app/database/seeders/DatabaseSeeder.php
@@ -4,7 +4,6 @@
namespace Database\Seeders;
-// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
@@ -14,11 +13,11 @@ class DatabaseSeeder extends Seeder
*/
public function run(): void
{
- // \Domain\User\Models\User::factory(10)->create();
-
- // \Domain\User\Models\User::factory()->create([
- // 'name' => 'Test User',
- // 'email' => 'test@example.com',
- // ]);
+ $this->call(CountrySeeder::class);
+ $this->call(ClientSeeder::class);
+ $this->call(CategorySeeder::class);
+ $this->call(ProductSeeder::class);
+ $this->call(CartSeeder::class);
+ $this->call(OrderSeeder::class);
}
}
diff --git a/app/database/seeders/OrderSeeder.php b/app/database/seeders/OrderSeeder.php
new file mode 100644
index 0000000..47a4318
--- /dev/null
+++ b/app/database/seeders/OrderSeeder.php
@@ -0,0 +1,22 @@
+times(10)->create();
+ }
+}
diff --git a/app/database/seeders/ProductSeeder.php b/app/database/seeders/ProductSeeder.php
new file mode 100644
index 0000000..ded89dd
--- /dev/null
+++ b/app/database/seeders/ProductSeeder.php
@@ -0,0 +1,22 @@
+times(10)->create();
+ }
+}
diff --git a/app/database/seeders/data/states.json b/app/database/seeders/data/states.json
new file mode 100644
index 0000000..7e4780d
--- /dev/null
+++ b/app/database/seeders/data/states.json
@@ -0,0 +1,55849 @@
+[
+ {
+ "id": 3901,
+ "name": "Badakhshan",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "BDS",
+ "type": null,
+ "latitude": "36.73477250",
+ "longitude": "70.81199530"
+ },
+ {
+ "id": 3871,
+ "name": "Badghis",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "BDG",
+ "type": null,
+ "latitude": "35.16713390",
+ "longitude": "63.76953840"
+ },
+ {
+ "id": 3875,
+ "name": "Baghlan",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "BGL",
+ "type": null,
+ "latitude": "36.17890260",
+ "longitude": "68.74530640"
+ },
+ {
+ "id": 3884,
+ "name": "Balkh",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "BAL",
+ "type": null,
+ "latitude": "36.75506030",
+ "longitude": "66.89753720"
+ },
+ {
+ "id": 3872,
+ "name": "Bamyan",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "BAM",
+ "type": null,
+ "latitude": "34.81000670",
+ "longitude": "67.82121040"
+ },
+ {
+ "id": 3892,
+ "name": "Daykundi",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "DAY",
+ "type": null,
+ "latitude": "33.66949500",
+ "longitude": "66.04635340"
+ },
+ {
+ "id": 3899,
+ "name": "Farah",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "FRA",
+ "type": null,
+ "latitude": "32.49532800",
+ "longitude": "62.26266270"
+ },
+ {
+ "id": 3889,
+ "name": "Faryab",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "FYB",
+ "type": null,
+ "latitude": "36.07956130",
+ "longitude": "64.90595500"
+ },
+ {
+ "id": 3870,
+ "name": "Ghazni",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "GHA",
+ "type": null,
+ "latitude": "33.54505870",
+ "longitude": "68.41739720"
+ },
+ {
+ "id": 3888,
+ "name": "Ghลr",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "GHO",
+ "type": null,
+ "latitude": "34.09957760",
+ "longitude": "64.90595500"
+ },
+ {
+ "id": 3873,
+ "name": "Helmand",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "HEL",
+ "type": null,
+ "latitude": "39.29893610",
+ "longitude": "-76.61604720"
+ },
+ {
+ "id": 3887,
+ "name": "Herat",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "HER",
+ "type": null,
+ "latitude": "34.35286500",
+ "longitude": "62.20402870"
+ },
+ {
+ "id": 3886,
+ "name": "Jowzjan",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "JOW",
+ "type": null,
+ "latitude": "36.89696920",
+ "longitude": "65.66585680"
+ },
+ {
+ "id": 3902,
+ "name": "Kabul",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "KAB",
+ "type": null,
+ "latitude": "34.55534940",
+ "longitude": "69.20748600"
+ },
+ {
+ "id": 3890,
+ "name": "Kandahar",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "KAN",
+ "type": null,
+ "latitude": "31.62887100",
+ "longitude": "65.73717490"
+ },
+ {
+ "id": 3879,
+ "name": "Kapisa",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "KAP",
+ "type": null,
+ "latitude": "34.98105720",
+ "longitude": "69.62145620"
+ },
+ {
+ "id": 3878,
+ "name": "Khost",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "KHO",
+ "type": null,
+ "latitude": "33.33384720",
+ "longitude": "69.93716730"
+ },
+ {
+ "id": 3876,
+ "name": "Kunar",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "KNR",
+ "type": null,
+ "latitude": "34.84658930",
+ "longitude": "71.09731700"
+ },
+ {
+ "id": 3900,
+ "name": "Kunduz Province",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "KDZ",
+ "type": null,
+ "latitude": "36.72855110",
+ "longitude": "68.86789820"
+ },
+ {
+ "id": 3891,
+ "name": "Laghman",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "LAG",
+ "type": null,
+ "latitude": "34.68976870",
+ "longitude": "70.14558050"
+ },
+ {
+ "id": 3897,
+ "name": "Logar",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "LOG",
+ "type": null,
+ "latitude": "34.01455180",
+ "longitude": "69.19239160"
+ },
+ {
+ "id": 3882,
+ "name": "Nangarhar",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "NAN",
+ "type": null,
+ "latitude": "34.17183130",
+ "longitude": "70.62167940"
+ },
+ {
+ "id": 3896,
+ "name": "Nimruz",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "NIM",
+ "type": null,
+ "latitude": "31.02614880",
+ "longitude": "62.45041540"
+ },
+ {
+ "id": 3880,
+ "name": "Nuristan",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "NUR",
+ "type": null,
+ "latitude": "35.32502230",
+ "longitude": "70.90712360"
+ },
+ {
+ "id": 3894,
+ "name": "Paktia",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "PIA",
+ "type": null,
+ "latitude": "33.70619900",
+ "longitude": "69.38310790"
+ },
+ {
+ "id": 3877,
+ "name": "Paktika",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "PKA",
+ "type": null,
+ "latitude": "32.26453860",
+ "longitude": "68.52471490"
+ },
+ {
+ "id": 3881,
+ "name": "Panjshir",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "PAN",
+ "type": null,
+ "latitude": "38.88023910",
+ "longitude": "-77.17172380"
+ },
+ {
+ "id": 3895,
+ "name": "Parwan",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "PAR",
+ "type": null,
+ "latitude": "34.96309770",
+ "longitude": "68.81088490"
+ },
+ {
+ "id": 3883,
+ "name": "Samangan",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "SAM",
+ "type": null,
+ "latitude": "36.31555060",
+ "longitude": "67.96428630"
+ },
+ {
+ "id": 3885,
+ "name": "Sar-e Pol",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "SAR",
+ "type": null,
+ "latitude": "36.21662800",
+ "longitude": "65.93336000"
+ },
+ {
+ "id": 3893,
+ "name": "Takhar",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "TAK",
+ "type": null,
+ "latitude": "36.66980130",
+ "longitude": "69.47845410"
+ },
+ {
+ "id": 3898,
+ "name": "Urozgan",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "URU",
+ "type": null,
+ "latitude": "32.92712870",
+ "longitude": "66.14152630"
+ },
+ {
+ "id": 3874,
+ "name": "Zabul",
+ "country_id": 1,
+ "country_code": "AF",
+ "country_name": "Afghanistan",
+ "state_code": "ZAB",
+ "type": null,
+ "latitude": "32.19187820",
+ "longitude": "67.18944880"
+ },
+ {
+ "id": 603,
+ "name": "Berat County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "01",
+ "type": null,
+ "latitude": "40.69530120",
+ "longitude": "20.04496620"
+ },
+ {
+ "id": 629,
+ "name": "Berat District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "BR",
+ "type": null,
+ "latitude": "40.70863770",
+ "longitude": "19.94373140"
+ },
+ {
+ "id": 607,
+ "name": "Bulqizรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "BU",
+ "type": null,
+ "latitude": "41.49425870",
+ "longitude": "20.21471570"
+ },
+ {
+ "id": 618,
+ "name": "Delvinรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "DL",
+ "type": null,
+ "latitude": "39.94813640",
+ "longitude": "20.09558910"
+ },
+ {
+ "id": 608,
+ "name": "Devoll District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "DV",
+ "type": null,
+ "latitude": "40.64473470",
+ "longitude": "20.95066360"
+ },
+ {
+ "id": 610,
+ "name": "Dibรซr County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "09",
+ "type": null,
+ "latitude": "41.58881630",
+ "longitude": "20.23556470"
+ },
+ {
+ "id": 605,
+ "name": "Dibรซr District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "DI",
+ "type": null,
+ "latitude": "41.58881630",
+ "longitude": "20.23556470"
+ },
+ {
+ "id": 632,
+ "name": "Durrรซs County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "02",
+ "type": null,
+ "latitude": "41.50809720",
+ "longitude": "19.61631850"
+ },
+ {
+ "id": 639,
+ "name": "Durrรซs District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "DR",
+ "type": null,
+ "latitude": "41.37065170",
+ "longitude": "19.52110630"
+ },
+ {
+ "id": 598,
+ "name": "Elbasan County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "03",
+ "type": null,
+ "latitude": "41.12666720",
+ "longitude": "20.23556470"
+ },
+ {
+ "id": 631,
+ "name": "Fier County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "04",
+ "type": null,
+ "latitude": "40.91913920",
+ "longitude": "19.66393090"
+ },
+ {
+ "id": 627,
+ "name": "Fier District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "FR",
+ "type": null,
+ "latitude": "40.72750400",
+ "longitude": "19.56275960"
+ },
+ {
+ "id": 604,
+ "name": "Gjirokastรซr County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "05",
+ "type": null,
+ "latitude": "40.06728740",
+ "longitude": "20.10452290"
+ },
+ {
+ "id": 621,
+ "name": "Gjirokastรซr District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "GJ",
+ "type": null,
+ "latitude": "40.06728740",
+ "longitude": "20.10452290"
+ },
+ {
+ "id": 617,
+ "name": "Gramsh District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "GR",
+ "type": null,
+ "latitude": "40.86698730",
+ "longitude": "20.18493230"
+ },
+ {
+ "id": 600,
+ "name": "Has District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "HA",
+ "type": null,
+ "latitude": "42.79013360",
+ "longitude": "-83.61220120"
+ },
+ {
+ "id": 594,
+ "name": "Kavajรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "KA",
+ "type": null,
+ "latitude": "41.18445290",
+ "longitude": "19.56275960"
+ },
+ {
+ "id": 628,
+ "name": "Kolonjรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "ER",
+ "type": null,
+ "latitude": "40.33732620",
+ "longitude": "20.67946760"
+ },
+ {
+ "id": 630,
+ "name": "Korรงรซ County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "06",
+ "type": null,
+ "latitude": "40.59056700",
+ "longitude": "20.61689210"
+ },
+ {
+ "id": 597,
+ "name": "Korรงรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "KO",
+ "type": null,
+ "latitude": "40.59056700",
+ "longitude": "20.61689210"
+ },
+ {
+ "id": 614,
+ "name": "Krujรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "KR",
+ "type": null,
+ "latitude": "41.50947650",
+ "longitude": "19.77107320"
+ },
+ {
+ "id": 612,
+ "name": "Kuรงovรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "KC",
+ "type": null,
+ "latitude": "40.78370630",
+ "longitude": "19.87823480"
+ },
+ {
+ "id": 601,
+ "name": "Kukรซs County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "07",
+ "type": null,
+ "latitude": "42.08074640",
+ "longitude": "20.41429230"
+ },
+ {
+ "id": 623,
+ "name": "Kukรซs District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "KU",
+ "type": null,
+ "latitude": "42.08074640",
+ "longitude": "20.41429230"
+ },
+ {
+ "id": 622,
+ "name": "Kurbin District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "KB",
+ "type": null,
+ "latitude": "41.64126440",
+ "longitude": "19.70559500"
+ },
+ {
+ "id": 609,
+ "name": "Lezhรซ County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "08",
+ "type": null,
+ "latitude": "41.78137590",
+ "longitude": "19.80679160"
+ },
+ {
+ "id": 595,
+ "name": "Lezhรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "LE",
+ "type": null,
+ "latitude": "41.78607300",
+ "longitude": "19.64607580"
+ },
+ {
+ "id": 596,
+ "name": "Librazhd District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "LB",
+ "type": null,
+ "latitude": "41.18292320",
+ "longitude": "20.31747690"
+ },
+ {
+ "id": 599,
+ "name": "Lushnjรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "LU",
+ "type": null,
+ "latitude": "40.94198300",
+ "longitude": "19.69964280"
+ },
+ {
+ "id": 602,
+ "name": "Malรซsi e Madhe District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "MM",
+ "type": null,
+ "latitude": "42.42451730",
+ "longitude": "19.61631850"
+ },
+ {
+ "id": 637,
+ "name": "Mallakastรซr District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "MK",
+ "type": null,
+ "latitude": "40.52733760",
+ "longitude": "19.78297910"
+ },
+ {
+ "id": 635,
+ "name": "Mat District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "MT",
+ "type": null,
+ "latitude": "41.59376750",
+ "longitude": "19.99732440"
+ },
+ {
+ "id": 638,
+ "name": "Mirditรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "MR",
+ "type": null,
+ "latitude": "41.76428600",
+ "longitude": "19.90205090"
+ },
+ {
+ "id": 619,
+ "name": "Peqin District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "PQ",
+ "type": null,
+ "latitude": "41.04709020",
+ "longitude": "19.75023840"
+ },
+ {
+ "id": 625,
+ "name": "Pรซrmet District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "PR",
+ "type": null,
+ "latitude": "40.23618370",
+ "longitude": "20.35173340"
+ },
+ {
+ "id": 606,
+ "name": "Pogradec District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "PG",
+ "type": null,
+ "latitude": "40.90153140",
+ "longitude": "20.65562890"
+ },
+ {
+ "id": 620,
+ "name": "Pukรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "PU",
+ "type": null,
+ "latitude": "42.04697720",
+ "longitude": "19.89609680"
+ },
+ {
+ "id": 624,
+ "name": "Sarandรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "SR",
+ "type": null,
+ "latitude": "39.85921190",
+ "longitude": "20.02710010"
+ },
+ {
+ "id": 611,
+ "name": "Shkodรซr County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "10",
+ "type": null,
+ "latitude": "42.15037100",
+ "longitude": "19.66393090"
+ },
+ {
+ "id": 626,
+ "name": "Shkodรซr District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "SH",
+ "type": null,
+ "latitude": "42.06929850",
+ "longitude": "19.50325590"
+ },
+ {
+ "id": 593,
+ "name": "Skrapar District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "SK",
+ "type": null,
+ "latitude": "40.53499460",
+ "longitude": "20.28322170"
+ },
+ {
+ "id": 616,
+ "name": "Tepelenรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "TE",
+ "type": null,
+ "latitude": "40.29666320",
+ "longitude": "20.01816730"
+ },
+ {
+ "id": 615,
+ "name": "Tirana County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "11",
+ "type": null,
+ "latitude": "41.24275980",
+ "longitude": "19.80679160"
+ },
+ {
+ "id": 633,
+ "name": "Tirana District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "TR",
+ "type": null,
+ "latitude": "41.32754590",
+ "longitude": "19.81869820"
+ },
+ {
+ "id": 636,
+ "name": "Tropojรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "TP",
+ "type": null,
+ "latitude": "42.39821510",
+ "longitude": "20.16259550"
+ },
+ {
+ "id": 634,
+ "name": "Vlorรซ County",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "12",
+ "type": null,
+ "latitude": "40.15009600",
+ "longitude": "19.80679160"
+ },
+ {
+ "id": 613,
+ "name": "Vlorรซ District",
+ "country_id": 3,
+ "country_code": "AL",
+ "country_name": "Albania",
+ "state_code": "VL",
+ "type": null,
+ "latitude": "40.46606680",
+ "longitude": "19.49135600"
+ },
+ {
+ "id": 1118,
+ "name": "Adrar",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "01",
+ "type": null,
+ "latitude": "26.41813100",
+ "longitude": "-0.60147170"
+ },
+ {
+ "id": 1119,
+ "name": "Aรฏn Defla",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "44",
+ "type": null,
+ "latitude": "36.25094290",
+ "longitude": "1.93938150"
+ },
+ {
+ "id": 1122,
+ "name": "Aรฏn Tรฉmouchent",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "46",
+ "type": null,
+ "latitude": "35.29926980",
+ "longitude": "-1.13927920"
+ },
+ {
+ "id": 1144,
+ "name": "Algiers",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "16",
+ "type": null,
+ "latitude": "36.69972940",
+ "longitude": "3.05761990"
+ },
+ {
+ "id": 1103,
+ "name": "Annaba",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "23",
+ "type": null,
+ "latitude": "36.80205080",
+ "longitude": "7.52472430"
+ },
+ {
+ "id": 1142,
+ "name": "Batna",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "05",
+ "type": null,
+ "latitude": "35.59659540",
+ "longitude": "5.89871390"
+ },
+ {
+ "id": 1108,
+ "name": "Bรฉchar",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "08",
+ "type": null,
+ "latitude": "31.62380980",
+ "longitude": "-2.21624430"
+ },
+ {
+ "id": 1128,
+ "name": "Bรฉjaรฏa",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "06",
+ "type": null,
+ "latitude": "36.75152580",
+ "longitude": "5.05568370"
+ },
+ {
+ "id": 4909,
+ "name": "Bรฉni Abbรจs",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "53",
+ "type": null,
+ "latitude": "30.08310420",
+ "longitude": "-2.83450520"
+ },
+ {
+ "id": 1114,
+ "name": "Biskra",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "07",
+ "type": null,
+ "latitude": "34.84494370",
+ "longitude": "5.72485670"
+ },
+ {
+ "id": 1111,
+ "name": "Blida",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "09",
+ "type": null,
+ "latitude": "36.53112300",
+ "longitude": "2.89762540"
+ },
+ {
+ "id": 4908,
+ "name": "Bordj Baji Mokhtar",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "52",
+ "type": null,
+ "latitude": "22.96633500",
+ "longitude": "-3.94727320"
+ },
+ {
+ "id": 1116,
+ "name": "Bordj Bou Arrรฉridj",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "34",
+ "type": null,
+ "latitude": "36.07399250",
+ "longitude": "4.76302710"
+ },
+ {
+ "id": 1104,
+ "name": "Bouรฏra",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "10",
+ "type": null,
+ "latitude": "36.36918460",
+ "longitude": "3.90061940"
+ },
+ {
+ "id": 1125,
+ "name": "Boumerdรจs",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "35",
+ "type": null,
+ "latitude": "36.68395590",
+ "longitude": "3.62178020"
+ },
+ {
+ "id": 1105,
+ "name": "Chlef",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "02",
+ "type": null,
+ "latitude": "36.16935150",
+ "longitude": "1.28910360"
+ },
+ {
+ "id": 1121,
+ "name": "Constantine",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "25",
+ "type": null,
+ "latitude": "36.33739110",
+ "longitude": "6.66381200"
+ },
+ {
+ "id": 4912,
+ "name": "Djanet",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "56",
+ "type": null,
+ "latitude": "23.83108720",
+ "longitude": "8.70046720"
+ },
+ {
+ "id": 1098,
+ "name": "Djelfa",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "17",
+ "type": null,
+ "latitude": "34.67039560",
+ "longitude": "3.25037610"
+ },
+ {
+ "id": 1129,
+ "name": "El Bayadh",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "32",
+ "type": null,
+ "latitude": "32.71488240",
+ "longitude": "0.90566230"
+ },
+ {
+ "id": 4905,
+ "name": "El M'ghair",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "49",
+ "type": null,
+ "latitude": "33.95405610",
+ "longitude": "5.13464180"
+ },
+ {
+ "id": 4906,
+ "name": "El Menia",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "50",
+ "type": null,
+ "latitude": "31.36422500",
+ "longitude": "2.57844950"
+ },
+ {
+ "id": 1099,
+ "name": "El Oued",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "39",
+ "type": null,
+ "latitude": "33.36781100",
+ "longitude": "6.85165110"
+ },
+ {
+ "id": 1100,
+ "name": "El Tarf",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "36",
+ "type": null,
+ "latitude": "36.75766780",
+ "longitude": "8.30763430"
+ },
+ {
+ "id": 1127,
+ "name": "Ghardaรฏa",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "47",
+ "type": null,
+ "latitude": "32.49437410",
+ "longitude": "3.64446000"
+ },
+ {
+ "id": 1137,
+ "name": "Guelma",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "24",
+ "type": null,
+ "latitude": "36.46274440",
+ "longitude": "7.43308330"
+ },
+ {
+ "id": 1112,
+ "name": "Illizi",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "33",
+ "type": null,
+ "latitude": "26.16900050",
+ "longitude": "8.48424650"
+ },
+ {
+ "id": 4914,
+ "name": "In Guezzam",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "58",
+ "type": null,
+ "latitude": "20.38643230",
+ "longitude": "4.77893940"
+ },
+ {
+ "id": 4913,
+ "name": "In Salah",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "57",
+ "type": null,
+ "latitude": "27.21492290",
+ "longitude": "1.84843960"
+ },
+ {
+ "id": 1113,
+ "name": "Jijel",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "18",
+ "type": null,
+ "latitude": "36.71796810",
+ "longitude": "5.98325770"
+ },
+ {
+ "id": 1126,
+ "name": "Khenchela",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "40",
+ "type": null,
+ "latitude": "35.42694040",
+ "longitude": "7.14601550"
+ },
+ {
+ "id": 1138,
+ "name": "Laghouat",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "03",
+ "type": null,
+ "latitude": "33.80783410",
+ "longitude": "2.86282940"
+ },
+ {
+ "id": 1134,
+ "name": "M'Sila",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "28",
+ "type": null,
+ "latitude": "35.71866460",
+ "longitude": "4.52334230"
+ },
+ {
+ "id": 1124,
+ "name": "Mascara",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "29",
+ "type": null,
+ "latitude": "35.39041250",
+ "longitude": "0.14949880"
+ },
+ {
+ "id": 1109,
+ "name": "Mรฉdรฉa",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "26",
+ "type": null,
+ "latitude": "36.26370780",
+ "longitude": "2.75878570"
+ },
+ {
+ "id": 1132,
+ "name": "Mila",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "43",
+ "type": null,
+ "latitude": "36.36479570",
+ "longitude": "6.15269850"
+ },
+ {
+ "id": 1140,
+ "name": "Mostaganem",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "27",
+ "type": null,
+ "latitude": "35.95830540",
+ "longitude": "0.33718890"
+ },
+ {
+ "id": 1102,
+ "name": "Naama",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "45",
+ "type": null,
+ "latitude": "33.26673170",
+ "longitude": "-0.31286590"
+ },
+ {
+ "id": 1101,
+ "name": "Oran",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "31",
+ "type": null,
+ "latitude": "35.60823510",
+ "longitude": "-0.56360900"
+ },
+ {
+ "id": 1139,
+ "name": "Ouargla",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "30",
+ "type": null,
+ "latitude": "32.22648630",
+ "longitude": "5.72998210"
+ },
+ {
+ "id": 4907,
+ "name": "Ouled Djellal",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "51",
+ "type": null,
+ "latitude": "34.41782210",
+ "longitude": "4.96858430"
+ },
+ {
+ "id": 1136,
+ "name": "Oum El Bouaghi",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "04",
+ "type": null,
+ "latitude": "35.86887890",
+ "longitude": "7.11082660"
+ },
+ {
+ "id": 1130,
+ "name": "Relizane",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "48",
+ "type": null,
+ "latitude": "35.73834050",
+ "longitude": "0.75328090"
+ },
+ {
+ "id": 1123,
+ "name": "Saรฏda",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "20",
+ "type": null,
+ "latitude": "34.84152070",
+ "longitude": "0.14560550"
+ },
+ {
+ "id": 1141,
+ "name": "Sรฉtif",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "19",
+ "type": null,
+ "latitude": "36.30733890",
+ "longitude": "5.56172790"
+ },
+ {
+ "id": 4902,
+ "name": "Sidi Bel Abbรจs",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "22",
+ "type": null,
+ "latitude": "34.68060240",
+ "longitude": "-1.09994950"
+ },
+ {
+ "id": 1110,
+ "name": "Skikda",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "21",
+ "type": null,
+ "latitude": "36.67211980",
+ "longitude": "6.83509990"
+ },
+ {
+ "id": 1143,
+ "name": "Souk Ahras",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "41",
+ "type": null,
+ "latitude": "36.28010620",
+ "longitude": "7.93840330"
+ },
+ {
+ "id": 1135,
+ "name": "Tamanghasset",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "11",
+ "type": null,
+ "latitude": "22.79029720",
+ "longitude": "5.51932680"
+ },
+ {
+ "id": 1117,
+ "name": "Tรฉbessa",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "12",
+ "type": null,
+ "latitude": "35.12906910",
+ "longitude": "7.95928630"
+ },
+ {
+ "id": 1106,
+ "name": "Tiaret",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "14",
+ "type": null,
+ "latitude": "35.37086890",
+ "longitude": "1.32178520"
+ },
+ {
+ "id": 4910,
+ "name": "Timimoun",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "54",
+ "type": null,
+ "latitude": "29.67890600",
+ "longitude": "0.50046080"
+ },
+ {
+ "id": 1120,
+ "name": "Tindouf",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "37",
+ "type": null,
+ "latitude": "27.80631190",
+ "longitude": "-5.72998210"
+ },
+ {
+ "id": 1115,
+ "name": "Tipasa",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "42",
+ "type": null,
+ "latitude": "36.54626500",
+ "longitude": "2.18432850"
+ },
+ {
+ "id": 1133,
+ "name": "Tissemsilt",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "38",
+ "type": null,
+ "latitude": "35.60537810",
+ "longitude": "1.81309800"
+ },
+ {
+ "id": 1131,
+ "name": "Tizi Ouzou",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "15",
+ "type": null,
+ "latitude": "36.70691100",
+ "longitude": "4.23333550"
+ },
+ {
+ "id": 1107,
+ "name": "Tlemcen",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "13",
+ "type": null,
+ "latitude": "34.67802840",
+ "longitude": "-1.36621600"
+ },
+ {
+ "id": 4911,
+ "name": "Touggourt",
+ "country_id": 4,
+ "country_code": "DZ",
+ "country_name": "Algeria",
+ "state_code": "55",
+ "type": null,
+ "latitude": "33.12484760",
+ "longitude": "5.78327150"
+ },
+ {
+ "id": 488,
+ "name": "Andorra la Vella",
+ "country_id": 6,
+ "country_code": "AD",
+ "country_name": "Andorra",
+ "state_code": "07",
+ "type": null,
+ "latitude": "42.50631740",
+ "longitude": "1.52183550"
+ },
+ {
+ "id": 489,
+ "name": "Canillo",
+ "country_id": 6,
+ "country_code": "AD",
+ "country_name": "Andorra",
+ "state_code": "02",
+ "type": null,
+ "latitude": "42.59782490",
+ "longitude": "1.65663770"
+ },
+ {
+ "id": 487,
+ "name": "Encamp",
+ "country_id": 6,
+ "country_code": "AD",
+ "country_name": "Andorra",
+ "state_code": "03",
+ "type": null,
+ "latitude": "42.53597640",
+ "longitude": "1.58367730"
+ },
+ {
+ "id": 492,
+ "name": "Escaldes-Engordany",
+ "country_id": 6,
+ "country_code": "AD",
+ "country_name": "Andorra",
+ "state_code": "08",
+ "type": null,
+ "latitude": "42.49093790",
+ "longitude": "1.58869660"
+ },
+ {
+ "id": 493,
+ "name": "La Massana",
+ "country_id": 6,
+ "country_code": "AD",
+ "country_name": "Andorra",
+ "state_code": "04",
+ "type": null,
+ "latitude": "42.54562500",
+ "longitude": "1.51473920"
+ },
+ {
+ "id": 491,
+ "name": "Ordino",
+ "country_id": 6,
+ "country_code": "AD",
+ "country_name": "Andorra",
+ "state_code": "05",
+ "type": null,
+ "latitude": "42.59944330",
+ "longitude": "1.54023270"
+ },
+ {
+ "id": 490,
+ "name": "Sant Juliร de Lรฒria",
+ "country_id": 6,
+ "country_code": "AD",
+ "country_name": "Andorra",
+ "state_code": "06",
+ "type": null,
+ "latitude": "42.45296310",
+ "longitude": "1.49182350"
+ },
+ {
+ "id": 221,
+ "name": "Bengo Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "BGO",
+ "type": null,
+ "latitude": "-9.10422570",
+ "longitude": "13.72891670"
+ },
+ {
+ "id": 218,
+ "name": "Benguela Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "BGU",
+ "type": null,
+ "latitude": "-12.80037440",
+ "longitude": "13.91439900"
+ },
+ {
+ "id": 212,
+ "name": "Biรฉ Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "BIE",
+ "type": null,
+ "latitude": "-12.57279070",
+ "longitude": "17.66888700"
+ },
+ {
+ "id": 228,
+ "name": "Cabinda Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "CAB",
+ "type": null,
+ "latitude": "-5.02487490",
+ "longitude": "12.34638750"
+ },
+ {
+ "id": 226,
+ "name": "Cuando Cubango Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "CCU",
+ "type": null,
+ "latitude": "-16.41808240",
+ "longitude": "18.80761950"
+ },
+ {
+ "id": 217,
+ "name": "Cuanza Norte Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "CNO",
+ "type": null,
+ "latitude": "-9.23985130",
+ "longitude": "14.65878210"
+ },
+ {
+ "id": 216,
+ "name": "Cuanza Sul",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "CUS",
+ "type": null,
+ "latitude": "-10.59519100",
+ "longitude": "15.40680790"
+ },
+ {
+ "id": 215,
+ "name": "Cunene Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "CNN",
+ "type": null,
+ "latitude": "-16.28022210",
+ "longitude": "16.15809370"
+ },
+ {
+ "id": 213,
+ "name": "Huambo Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "HUA",
+ "type": null,
+ "latitude": "-12.52682210",
+ "longitude": "15.59433880"
+ },
+ {
+ "id": 225,
+ "name": "Huรญla Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "HUI",
+ "type": null,
+ "latitude": "-14.92805530",
+ "longitude": "14.65878210"
+ },
+ {
+ "id": 222,
+ "name": "Luanda Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "LUA",
+ "type": null,
+ "latitude": "-9.03508800",
+ "longitude": "13.26634790"
+ },
+ {
+ "id": 223,
+ "name": "Lunda Norte Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "LNO",
+ "type": null,
+ "latitude": "-8.35250220",
+ "longitude": "19.18800470"
+ },
+ {
+ "id": 220,
+ "name": "Lunda Sul Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "LSU",
+ "type": null,
+ "latitude": "-10.28665780",
+ "longitude": "20.71224650"
+ },
+ {
+ "id": 227,
+ "name": "Malanje Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "MAL",
+ "type": null,
+ "latitude": "-9.82511830",
+ "longitude": "16.91225100"
+ },
+ {
+ "id": 219,
+ "name": "Moxico Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "MOX",
+ "type": null,
+ "latitude": "-13.42935790",
+ "longitude": "20.33088140"
+ },
+ {
+ "id": 224,
+ "name": "Uรญge Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "UIG",
+ "type": null,
+ "latitude": "-7.17367320",
+ "longitude": "15.40680790"
+ },
+ {
+ "id": 214,
+ "name": "Zaire Province",
+ "country_id": 7,
+ "country_code": "AO",
+ "country_name": "Angola",
+ "state_code": "ZAI",
+ "type": null,
+ "latitude": "-6.57334580",
+ "longitude": "13.17403480"
+ },
+ {
+ "id": 3708,
+ "name": "Barbuda",
+ "country_id": 10,
+ "country_code": "AG",
+ "country_name": "Antigua And Barbuda",
+ "state_code": "10",
+ "type": null,
+ "latitude": "17.62662420",
+ "longitude": "-61.77130280"
+ },
+ {
+ "id": 3703,
+ "name": "Redonda",
+ "country_id": 10,
+ "country_code": "AG",
+ "country_name": "Antigua And Barbuda",
+ "state_code": "11",
+ "type": null,
+ "latitude": "16.93841600",
+ "longitude": "-62.34551480"
+ },
+ {
+ "id": 3709,
+ "name": "Saint George Parish",
+ "country_id": 10,
+ "country_code": "AG",
+ "country_name": "Antigua And Barbuda",
+ "state_code": "03",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3706,
+ "name": "Saint John Parish",
+ "country_id": 10,
+ "country_code": "AG",
+ "country_name": "Antigua And Barbuda",
+ "state_code": "04",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3707,
+ "name": "Saint Mary Parish",
+ "country_id": 10,
+ "country_code": "AG",
+ "country_name": "Antigua And Barbuda",
+ "state_code": "05",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3705,
+ "name": "Saint Paul Parish",
+ "country_id": 10,
+ "country_code": "AG",
+ "country_name": "Antigua And Barbuda",
+ "state_code": "06",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3704,
+ "name": "Saint Peter Parish",
+ "country_id": 10,
+ "country_code": "AG",
+ "country_name": "Antigua And Barbuda",
+ "state_code": "07",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3710,
+ "name": "Saint Philip Parish",
+ "country_id": 10,
+ "country_code": "AG",
+ "country_name": "Antigua And Barbuda",
+ "state_code": "08",
+ "type": null,
+ "latitude": "40.43682580",
+ "longitude": "-80.06855320"
+ },
+ {
+ "id": 3656,
+ "name": "Buenos Aires",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "B",
+ "type": "province",
+ "latitude": "-37.20172850",
+ "longitude": "-59.84106970"
+ },
+ {
+ "id": 3647,
+ "name": "Catamarca",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "K",
+ "type": "province",
+ "latitude": "-28.47158770",
+ "longitude": "-65.78772090"
+ },
+ {
+ "id": 3640,
+ "name": "Chaco",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "H",
+ "type": "province",
+ "latitude": "-27.42571750",
+ "longitude": "-59.02437840"
+ },
+ {
+ "id": 3651,
+ "name": "Chubut",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "U",
+ "type": "province",
+ "latitude": "-43.29342460",
+ "longitude": "-65.11148180"
+ },
+ {
+ "id": 4880,
+ "name": "Ciudad Autรณnoma de Buenos Aires",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "C",
+ "type": "city",
+ "latitude": "-34.60368440",
+ "longitude": "-58.38155910"
+ },
+ {
+ "id": 3642,
+ "name": "Cรณrdoba",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "X",
+ "type": "province",
+ "latitude": "-31.39928760",
+ "longitude": "-64.26438420"
+ },
+ {
+ "id": 3638,
+ "name": "Corrientes",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "W",
+ "type": "province",
+ "latitude": "-27.46921310",
+ "longitude": "-58.83063490"
+ },
+ {
+ "id": 3654,
+ "name": "Entre Rรญos",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "E",
+ "type": "province",
+ "latitude": "-31.77466540",
+ "longitude": "-60.49564610"
+ },
+ {
+ "id": 3652,
+ "name": "Formosa",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "P",
+ "type": "province",
+ "latitude": "-26.18948040",
+ "longitude": "-58.22428060"
+ },
+ {
+ "id": 3645,
+ "name": "Jujuy",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "Y",
+ "type": "province",
+ "latitude": "-24.18433970",
+ "longitude": "-65.30217700"
+ },
+ {
+ "id": 3655,
+ "name": "La Pampa",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "L",
+ "type": "province",
+ "latitude": "-36.61475730",
+ "longitude": "-64.28392090"
+ },
+ {
+ "id": 3653,
+ "name": "La Rioja",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "F",
+ "type": "province",
+ "latitude": "-29.41937930",
+ "longitude": "-66.85599320"
+ },
+ {
+ "id": 3646,
+ "name": "Mendoza",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "M",
+ "type": "province",
+ "latitude": "-32.88945870",
+ "longitude": "-68.84583860"
+ },
+ {
+ "id": 3644,
+ "name": "Misiones",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "N",
+ "type": "province",
+ "latitude": "-27.42692550",
+ "longitude": "-55.94670760"
+ },
+ {
+ "id": 3648,
+ "name": "Neuquรฉn",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "Q",
+ "type": "province",
+ "latitude": "-38.94587000",
+ "longitude": "-68.07309250"
+ },
+ {
+ "id": 3639,
+ "name": "Rรญo Negro",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "R",
+ "type": "province",
+ "latitude": "-40.82614340",
+ "longitude": "-63.02663390"
+ },
+ {
+ "id": 3643,
+ "name": "Salta",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "A",
+ "type": "province",
+ "latitude": "-24.79976880",
+ "longitude": "-65.41503670"
+ },
+ {
+ "id": 3634,
+ "name": "San Juan",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "J",
+ "type": "province",
+ "latitude": "-31.53169760",
+ "longitude": "-68.56769620"
+ },
+ {
+ "id": 3636,
+ "name": "San Luis",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "D",
+ "type": "province",
+ "latitude": "-33.29620420",
+ "longitude": "-66.32949480"
+ },
+ {
+ "id": 3649,
+ "name": "Santa Cruz",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "Z",
+ "type": "province",
+ "latitude": "-51.63528210",
+ "longitude": "-69.24743530"
+ },
+ {
+ "id": 3641,
+ "name": "Santa Fe",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "S",
+ "type": "province",
+ "latitude": "-31.58551090",
+ "longitude": "-60.72380160"
+ },
+ {
+ "id": 3635,
+ "name": "Santiago del Estero",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "G",
+ "type": "province",
+ "latitude": "-27.78335740",
+ "longitude": "-64.26416700"
+ },
+ {
+ "id": 3650,
+ "name": "Tierra del Fuego",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "V",
+ "type": "province",
+ "latitude": "-54.80539980",
+ "longitude": "-68.32420610"
+ },
+ {
+ "id": 3637,
+ "name": "Tucumรกn",
+ "country_id": 11,
+ "country_code": "AR",
+ "country_name": "Argentina",
+ "state_code": "T",
+ "type": "province",
+ "latitude": "-26.82211270",
+ "longitude": "-65.21929030"
+ },
+ {
+ "id": 2023,
+ "name": "Aragatsotn Region",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "AG",
+ "type": null,
+ "latitude": "40.33473010",
+ "longitude": "44.37482960"
+ },
+ {
+ "id": 2024,
+ "name": "Ararat Province",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "AR",
+ "type": null,
+ "latitude": "39.91394150",
+ "longitude": "44.72000040"
+ },
+ {
+ "id": 2026,
+ "name": "Armavir Region",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "AV",
+ "type": null,
+ "latitude": "40.15546310",
+ "longitude": "44.03724460"
+ },
+ {
+ "id": 2028,
+ "name": "Gegharkunik Province",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "GR",
+ "type": null,
+ "latitude": "40.35264260",
+ "longitude": "45.12604140"
+ },
+ {
+ "id": 2033,
+ "name": "Kotayk Region",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "KT",
+ "type": null,
+ "latitude": "40.54102140",
+ "longitude": "44.76901480"
+ },
+ {
+ "id": 2029,
+ "name": "Lori Region",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "LO",
+ "type": null,
+ "latitude": "40.96984520",
+ "longitude": "44.49001380"
+ },
+ {
+ "id": 2031,
+ "name": "Shirak Region",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "SH",
+ "type": null,
+ "latitude": "40.96308140",
+ "longitude": "43.81024610"
+ },
+ {
+ "id": 2027,
+ "name": "Syunik Province",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "SU",
+ "type": null,
+ "latitude": "39.51331120",
+ "longitude": "46.33932340"
+ },
+ {
+ "id": 2032,
+ "name": "Tavush Region",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "TV",
+ "type": null,
+ "latitude": "40.88662960",
+ "longitude": "45.33934900"
+ },
+ {
+ "id": 2025,
+ "name": "Vayots Dzor Region",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "VD",
+ "type": null,
+ "latitude": "39.76419960",
+ "longitude": "45.33375280"
+ },
+ {
+ "id": 2030,
+ "name": "Yerevan",
+ "country_id": 12,
+ "country_code": "AM",
+ "country_name": "Armenia",
+ "state_code": "ER",
+ "type": null,
+ "latitude": "40.18720230",
+ "longitude": "44.51520900"
+ },
+ {
+ "id": 3907,
+ "name": "Australian Capital Territory",
+ "country_id": 14,
+ "country_code": "AU",
+ "country_name": "Australia",
+ "state_code": "ACT",
+ "type": "territory",
+ "latitude": "-35.47346790",
+ "longitude": "149.01236790"
+ },
+ {
+ "id": 3909,
+ "name": "New South Wales",
+ "country_id": 14,
+ "country_code": "AU",
+ "country_name": "Australia",
+ "state_code": "NSW",
+ "type": "state",
+ "latitude": "-31.25321830",
+ "longitude": "146.92109900"
+ },
+ {
+ "id": 3910,
+ "name": "Northern Territory",
+ "country_id": 14,
+ "country_code": "AU",
+ "country_name": "Australia",
+ "state_code": "NT",
+ "type": "territory",
+ "latitude": "-19.49141080",
+ "longitude": "132.55096030"
+ },
+ {
+ "id": 3905,
+ "name": "Queensland",
+ "country_id": 14,
+ "country_code": "AU",
+ "country_name": "Australia",
+ "state_code": "QLD",
+ "type": "state",
+ "latitude": "-20.91757380",
+ "longitude": "142.70279560"
+ },
+ {
+ "id": 3904,
+ "name": "South Australia",
+ "country_id": 14,
+ "country_code": "AU",
+ "country_name": "Australia",
+ "state_code": "SA",
+ "type": "state",
+ "latitude": "-30.00023150",
+ "longitude": "136.20915470"
+ },
+ {
+ "id": 3908,
+ "name": "Tasmania",
+ "country_id": 14,
+ "country_code": "AU",
+ "country_name": "Australia",
+ "state_code": "TAS",
+ "type": "state",
+ "latitude": "-41.45451960",
+ "longitude": "145.97066470"
+ },
+ {
+ "id": 3903,
+ "name": "Victoria",
+ "country_id": 14,
+ "country_code": "AU",
+ "country_name": "Australia",
+ "state_code": "VIC",
+ "type": "state",
+ "latitude": "-36.48564230",
+ "longitude": "140.97794250"
+ },
+ {
+ "id": 3906,
+ "name": "Western Australia",
+ "country_id": 14,
+ "country_code": "AU",
+ "country_name": "Australia",
+ "state_code": "WA",
+ "type": "state",
+ "latitude": "-27.67281680",
+ "longitude": "121.62830980"
+ },
+ {
+ "id": 2062,
+ "name": "Burgenland",
+ "country_id": 15,
+ "country_code": "AT",
+ "country_name": "Austria",
+ "state_code": "1",
+ "type": null,
+ "latitude": "47.15371650",
+ "longitude": "16.26887970"
+ },
+ {
+ "id": 2057,
+ "name": "Carinthia",
+ "country_id": 15,
+ "country_code": "AT",
+ "country_name": "Austria",
+ "state_code": "2",
+ "type": null,
+ "latitude": "46.72220300",
+ "longitude": "14.18058820"
+ },
+ {
+ "id": 2065,
+ "name": "Lower Austria",
+ "country_id": 15,
+ "country_code": "AT",
+ "country_name": "Austria",
+ "state_code": "3",
+ "type": null,
+ "latitude": "48.10807700",
+ "longitude": "15.80495580"
+ },
+ {
+ "id": 2061,
+ "name": "Salzburg",
+ "country_id": 15,
+ "country_code": "AT",
+ "country_name": "Austria",
+ "state_code": "5",
+ "type": null,
+ "latitude": "47.80949000",
+ "longitude": "13.05501000"
+ },
+ {
+ "id": 2059,
+ "name": "Styria",
+ "country_id": 15,
+ "country_code": "AT",
+ "country_name": "Austria",
+ "state_code": "6",
+ "type": null,
+ "latitude": "47.35934420",
+ "longitude": "14.46998270"
+ },
+ {
+ "id": 2064,
+ "name": "Tyrol",
+ "country_id": 15,
+ "country_code": "AT",
+ "country_name": "Austria",
+ "state_code": "7",
+ "type": null,
+ "latitude": "47.25374140",
+ "longitude": "11.60148700"
+ },
+ {
+ "id": 2058,
+ "name": "Upper Austria",
+ "country_id": 15,
+ "country_code": "AT",
+ "country_name": "Austria",
+ "state_code": "4",
+ "type": null,
+ "latitude": "48.02585400",
+ "longitude": "13.97236650"
+ },
+ {
+ "id": 2060,
+ "name": "Vienna",
+ "country_id": 15,
+ "country_code": "AT",
+ "country_name": "Austria",
+ "state_code": "9",
+ "type": null,
+ "latitude": "48.20817430",
+ "longitude": "16.37381890"
+ },
+ {
+ "id": 2063,
+ "name": "Vorarlberg",
+ "country_id": 15,
+ "country_code": "AT",
+ "country_name": "Austria",
+ "state_code": "8",
+ "type": null,
+ "latitude": "47.24974270",
+ "longitude": "9.97973730"
+ },
+ {
+ "id": 540,
+ "name": "Absheron District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "ABS",
+ "type": null,
+ "latitude": "40.36296930",
+ "longitude": "49.27368150"
+ },
+ {
+ "id": 559,
+ "name": "Agdam District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "AGM",
+ "type": null,
+ "latitude": "39.99318530",
+ "longitude": "46.99495620"
+ },
+ {
+ "id": 553,
+ "name": "Agdash District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "AGS",
+ "type": null,
+ "latitude": "40.63354270",
+ "longitude": "47.46743100"
+ },
+ {
+ "id": 577,
+ "name": "Aghjabadi District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "AGC",
+ "type": null,
+ "latitude": "28.78918410",
+ "longitude": "77.51607880"
+ },
+ {
+ "id": 543,
+ "name": "Agstafa District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "AGA",
+ "type": null,
+ "latitude": "41.26559330",
+ "longitude": "45.51342910"
+ },
+ {
+ "id": 547,
+ "name": "Agsu District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "AGU",
+ "type": null,
+ "latitude": "40.52833390",
+ "longitude": "48.36508350"
+ },
+ {
+ "id": 528,
+ "name": "Astara District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "AST",
+ "type": null,
+ "latitude": "38.49378450",
+ "longitude": "48.69443650"
+ },
+ {
+ "id": 575,
+ "name": "Babek District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "BAB",
+ "type": null,
+ "latitude": "39.15076130",
+ "longitude": "45.44853680"
+ },
+ {
+ "id": 552,
+ "name": "Baku",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "40.40926170",
+ "longitude": "49.86709240"
+ },
+ {
+ "id": 560,
+ "name": "Balakan District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "BAL",
+ "type": null,
+ "latitude": "41.70375090",
+ "longitude": "46.40442130"
+ },
+ {
+ "id": 569,
+ "name": "Barda District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "BAR",
+ "type": null,
+ "latitude": "40.37065550",
+ "longitude": "47.13789090"
+ },
+ {
+ "id": 554,
+ "name": "Beylagan District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "BEY",
+ "type": null,
+ "latitude": "39.77230730",
+ "longitude": "47.61541660"
+ },
+ {
+ "id": 532,
+ "name": "Bilasuvar District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "BIL",
+ "type": null,
+ "latitude": "39.45988330",
+ "longitude": "48.55098130"
+ },
+ {
+ "id": 561,
+ "name": "Dashkasan District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "DAS",
+ "type": null,
+ "latitude": "40.52022570",
+ "longitude": "46.07793040"
+ },
+ {
+ "id": 527,
+ "name": "Fizuli District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "FUZ",
+ "type": null,
+ "latitude": "39.53786050",
+ "longitude": "47.30338770"
+ },
+ {
+ "id": 585,
+ "name": "Ganja",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "GA",
+ "type": null,
+ "latitude": "36.36873380",
+ "longitude": "-95.99857670"
+ },
+ {
+ "id": 589,
+ "name": "Gษdษbษy",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "GAD",
+ "type": null,
+ "latitude": "40.56996390",
+ "longitude": "45.81068830"
+ },
+ {
+ "id": 573,
+ "name": "Gobustan District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "QOB",
+ "type": null,
+ "latitude": "40.53261040",
+ "longitude": "48.92737500"
+ },
+ {
+ "id": 551,
+ "name": "Goranboy District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "GOR",
+ "type": null,
+ "latitude": "40.53805060",
+ "longitude": "46.59908910"
+ },
+ {
+ "id": 531,
+ "name": "Goychay",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "GOY",
+ "type": null,
+ "latitude": "40.62361680",
+ "longitude": "47.74030340"
+ },
+ {
+ "id": 574,
+ "name": "Goygol District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "GYG",
+ "type": null,
+ "latitude": "40.55953780",
+ "longitude": "46.33149530"
+ },
+ {
+ "id": 571,
+ "name": "Hajigabul District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "HAC",
+ "type": null,
+ "latitude": "40.03937700",
+ "longitude": "48.92025330"
+ },
+ {
+ "id": 544,
+ "name": "Imishli District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "IMI",
+ "type": null,
+ "latitude": "39.86946860",
+ "longitude": "48.06652180"
+ },
+ {
+ "id": 564,
+ "name": "Ismailli District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "ISM",
+ "type": null,
+ "latitude": "40.74299360",
+ "longitude": "48.21255560"
+ },
+ {
+ "id": 570,
+ "name": "Jabrayil District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "CAB",
+ "type": null,
+ "latitude": "39.26455440",
+ "longitude": "46.96215620"
+ },
+ {
+ "id": 578,
+ "name": "Jalilabad District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "CAL",
+ "type": null,
+ "latitude": "39.20516320",
+ "longitude": "48.51006040"
+ },
+ {
+ "id": 572,
+ "name": "Julfa District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "CUL",
+ "type": null,
+ "latitude": "38.96049830",
+ "longitude": "45.62929390"
+ },
+ {
+ "id": 525,
+ "name": "Kalbajar District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "KAL",
+ "type": null,
+ "latitude": "40.10243290",
+ "longitude": "46.03648720"
+ },
+ {
+ "id": 567,
+ "name": "Kangarli District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "KAN",
+ "type": null,
+ "latitude": "39.38719400",
+ "longitude": "45.16398520"
+ },
+ {
+ "id": 590,
+ "name": "Khachmaz District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "XAC",
+ "type": null,
+ "latitude": "41.45911680",
+ "longitude": "48.80206260"
+ },
+ {
+ "id": 537,
+ "name": "Khizi District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "XIZ",
+ "type": null,
+ "latitude": "40.91094890",
+ "longitude": "49.07292640"
+ },
+ {
+ "id": 524,
+ "name": "Khojali District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "XCI",
+ "type": null,
+ "latitude": "39.91325530",
+ "longitude": "46.79430500"
+ },
+ {
+ "id": 549,
+ "name": "Kurdamir District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "KUR",
+ "type": null,
+ "latitude": "40.36986510",
+ "longitude": "48.16446260"
+ },
+ {
+ "id": 541,
+ "name": "Lachin District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "LAC",
+ "type": null,
+ "latitude": "39.63834140",
+ "longitude": "46.54608530"
+ },
+ {
+ "id": 587,
+ "name": "Lankaran",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "LAN",
+ "type": null,
+ "latitude": "38.75286690",
+ "longitude": "48.84750150"
+ },
+ {
+ "id": 558,
+ "name": "Lankaran District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "LA",
+ "type": null,
+ "latitude": "38.75286690",
+ "longitude": "48.84750150"
+ },
+ {
+ "id": 546,
+ "name": "Lerik District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "LER",
+ "type": null,
+ "latitude": "38.77361920",
+ "longitude": "48.41514830"
+ },
+ {
+ "id": 568,
+ "name": "Martuni",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "XVD",
+ "type": null,
+ "latitude": "39.79146930",
+ "longitude": "47.11008140"
+ },
+ {
+ "id": 555,
+ "name": "Masally District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "MAS",
+ "type": null,
+ "latitude": "39.03407220",
+ "longitude": "48.65893540"
+ },
+ {
+ "id": 580,
+ "name": "Mingachevir",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "MI",
+ "type": null,
+ "latitude": "40.77025630",
+ "longitude": "47.04960150"
+ },
+ {
+ "id": 562,
+ "name": "Nakhchivan Autonomous Republic",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "NX",
+ "type": null,
+ "latitude": "39.32568140",
+ "longitude": "45.49126480"
+ },
+ {
+ "id": 530,
+ "name": "Neftchala District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "NEF",
+ "type": null,
+ "latitude": "39.38810520",
+ "longitude": "49.24137430"
+ },
+ {
+ "id": 556,
+ "name": "Oghuz District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "OGU",
+ "type": null,
+ "latitude": "41.07279240",
+ "longitude": "47.46506720"
+ },
+ {
+ "id": 534,
+ "name": "Ordubad District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "ORD",
+ "type": null,
+ "latitude": "38.90216220",
+ "longitude": "46.02376250"
+ },
+ {
+ "id": 542,
+ "name": "Qabala District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "QAB",
+ "type": null,
+ "latitude": "40.92539250",
+ "longitude": "47.80161060"
+ },
+ {
+ "id": 526,
+ "name": "Qakh District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "QAX",
+ "type": null,
+ "latitude": "41.42068270",
+ "longitude": "46.93201840"
+ },
+ {
+ "id": 521,
+ "name": "Qazakh District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "QAZ",
+ "type": null,
+ "latitude": "41.09710740",
+ "longitude": "45.35163310"
+ },
+ {
+ "id": 563,
+ "name": "Quba District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "QBA",
+ "type": null,
+ "latitude": "41.15642420",
+ "longitude": "48.41350210"
+ },
+ {
+ "id": 548,
+ "name": "Qubadli District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "QBI",
+ "type": null,
+ "latitude": "39.27139960",
+ "longitude": "46.63543120"
+ },
+ {
+ "id": 588,
+ "name": "Qusar District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "QUS",
+ "type": null,
+ "latitude": "41.42668860",
+ "longitude": "48.43455770"
+ },
+ {
+ "id": 557,
+ "name": "Saatly District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SAT",
+ "type": null,
+ "latitude": "39.90955030",
+ "longitude": "48.35951220"
+ },
+ {
+ "id": 565,
+ "name": "Sabirabad District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SAB",
+ "type": null,
+ "latitude": "39.98706630",
+ "longitude": "48.46925450"
+ },
+ {
+ "id": 522,
+ "name": "Sadarak District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SAD",
+ "type": null,
+ "latitude": "39.71051140",
+ "longitude": "44.88642770"
+ },
+ {
+ "id": 545,
+ "name": "Salyan District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SAL",
+ "type": null,
+ "latitude": "28.35248110",
+ "longitude": "82.12784000"
+ },
+ {
+ "id": 536,
+ "name": "Samukh District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SMX",
+ "type": null,
+ "latitude": "40.76046310",
+ "longitude": "46.40631810"
+ },
+ {
+ "id": 591,
+ "name": "Shabran District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SBN",
+ "type": null,
+ "latitude": "41.22283760",
+ "longitude": "48.84573040"
+ },
+ {
+ "id": 579,
+ "name": "Shahbuz District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SAH",
+ "type": null,
+ "latitude": "39.44521030",
+ "longitude": "45.65680090"
+ },
+ {
+ "id": 518,
+ "name": "Shaki",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "41.19747530",
+ "longitude": "47.15712410"
+ },
+ {
+ "id": 586,
+ "name": "Shaki District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SAK",
+ "type": null,
+ "latitude": "41.11346620",
+ "longitude": "47.13169270"
+ },
+ {
+ "id": 529,
+ "name": "Shamakhi District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SMI",
+ "type": null,
+ "latitude": "40.63187310",
+ "longitude": "48.63638010"
+ },
+ {
+ "id": 583,
+ "name": "Shamkir District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SKR",
+ "type": null,
+ "latitude": "40.82881440",
+ "longitude": "46.01668790"
+ },
+ {
+ "id": 535,
+ "name": "Sharur District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SAR",
+ "type": null,
+ "latitude": "39.55363320",
+ "longitude": "44.98456800"
+ },
+ {
+ "id": 520,
+ "name": "Shirvan",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SR",
+ "type": null,
+ "latitude": "39.94697070",
+ "longitude": "48.92239190"
+ },
+ {
+ "id": 592,
+ "name": "Shusha District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SUS",
+ "type": null,
+ "latitude": "39.75374380",
+ "longitude": "46.74647550"
+ },
+ {
+ "id": 584,
+ "name": "Siazan District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SIY",
+ "type": null,
+ "latitude": "41.07838330",
+ "longitude": "49.11184770"
+ },
+ {
+ "id": 582,
+ "name": "Sumqayit",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "SM",
+ "type": null,
+ "latitude": "40.58547650",
+ "longitude": "49.63174110"
+ },
+ {
+ "id": 519,
+ "name": "Tartar District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "TAR",
+ "type": null,
+ "latitude": "40.34438750",
+ "longitude": "46.93765190"
+ },
+ {
+ "id": 533,
+ "name": "Tovuz District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "TOV",
+ "type": null,
+ "latitude": "40.99545230",
+ "longitude": "45.61659070"
+ },
+ {
+ "id": 539,
+ "name": "Ujar District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "UCA",
+ "type": null,
+ "latitude": "40.50675250",
+ "longitude": "47.64896410"
+ },
+ {
+ "id": 550,
+ "name": "Yardymli District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "YAR",
+ "type": null,
+ "latitude": "38.90589170",
+ "longitude": "48.24961270"
+ },
+ {
+ "id": 538,
+ "name": "Yevlakh",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "YE",
+ "type": null,
+ "latitude": "40.61966380",
+ "longitude": "47.15003240"
+ },
+ {
+ "id": 523,
+ "name": "Yevlakh District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "YEV",
+ "type": null,
+ "latitude": "40.61966380",
+ "longitude": "47.15003240"
+ },
+ {
+ "id": 581,
+ "name": "Zangilan District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "ZAN",
+ "type": null,
+ "latitude": "39.08568990",
+ "longitude": "46.65247280"
+ },
+ {
+ "id": 566,
+ "name": "Zaqatala District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "ZAQ",
+ "type": null,
+ "latitude": "41.59068890",
+ "longitude": "46.72403730"
+ },
+ {
+ "id": 576,
+ "name": "Zardab District",
+ "country_id": 16,
+ "country_code": "AZ",
+ "country_name": "Azerbaijan",
+ "state_code": "ZAR",
+ "type": null,
+ "latitude": "40.21481140",
+ "longitude": "47.71494400"
+ },
+ {
+ "id": 1992,
+ "name": "Capital",
+ "country_id": 18,
+ "country_code": "BH",
+ "country_name": "Bahrain",
+ "state_code": "13",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 1996,
+ "name": "Central",
+ "country_id": 18,
+ "country_code": "BH",
+ "country_name": "Bahrain",
+ "state_code": "16",
+ "type": null,
+ "latitude": "26.14260930",
+ "longitude": "50.56532940"
+ },
+ {
+ "id": 1995,
+ "name": "Muharraq",
+ "country_id": 18,
+ "country_code": "BH",
+ "country_name": "Bahrain",
+ "state_code": "15",
+ "type": null,
+ "latitude": "26.26856530",
+ "longitude": "50.64825170"
+ },
+ {
+ "id": 1994,
+ "name": "Northern",
+ "country_id": 18,
+ "country_code": "BH",
+ "country_name": "Bahrain",
+ "state_code": "17",
+ "type": null,
+ "latitude": "26.15519140",
+ "longitude": "50.48251730"
+ },
+ {
+ "id": 1993,
+ "name": "Southern",
+ "country_id": 18,
+ "country_code": "BH",
+ "country_name": "Bahrain",
+ "state_code": "14",
+ "type": null,
+ "latitude": "25.93810180",
+ "longitude": "50.57568870"
+ },
+ {
+ "id": 796,
+ "name": "Bagerhat District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "05",
+ "type": "district",
+ "latitude": "22.66024360",
+ "longitude": "89.78954780"
+ },
+ {
+ "id": 802,
+ "name": "Bahadia",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "33",
+ "type": null,
+ "latitude": "23.78987120",
+ "longitude": "90.16714830"
+ },
+ {
+ "id": 752,
+ "name": "Bandarban District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "01",
+ "type": "district",
+ "latitude": "21.83110020",
+ "longitude": "92.36863210"
+ },
+ {
+ "id": 784,
+ "name": "Barguna District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "02",
+ "type": "district",
+ "latitude": "22.09529150",
+ "longitude": "90.11206960"
+ },
+ {
+ "id": 818,
+ "name": "Barisal District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "06",
+ "type": "district",
+ "latitude": "22.70220980",
+ "longitude": "90.36963160"
+ },
+ {
+ "id": 807,
+ "name": "Barisal Division",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "A",
+ "type": "division",
+ "latitude": "22.38111310",
+ "longitude": "90.33718890"
+ },
+ {
+ "id": 756,
+ "name": "Bhola District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "07",
+ "type": "district",
+ "latitude": "22.17853150",
+ "longitude": "90.71010230"
+ },
+ {
+ "id": 797,
+ "name": "Bogra District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "03",
+ "type": "district",
+ "latitude": "24.85104020",
+ "longitude": "89.36972250"
+ },
+ {
+ "id": 810,
+ "name": "Brahmanbaria District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "04",
+ "type": "district",
+ "latitude": "23.96081810",
+ "longitude": "91.11150140"
+ },
+ {
+ "id": 768,
+ "name": "Chandpur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "09",
+ "type": "district",
+ "latitude": "23.25131480",
+ "longitude": "90.85178460"
+ },
+ {
+ "id": 761,
+ "name": "Chapai Nawabganj District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "45",
+ "type": "district",
+ "latitude": "24.74131110",
+ "longitude": "88.29120690"
+ },
+ {
+ "id": 785,
+ "name": "Chittagong District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "10",
+ "type": "district",
+ "latitude": "22.51501050",
+ "longitude": "91.75388170"
+ },
+ {
+ "id": 803,
+ "name": "Chittagong Division",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "B",
+ "type": "division",
+ "latitude": "23.17931570",
+ "longitude": "91.98815270"
+ },
+ {
+ "id": 788,
+ "name": "Chuadanga District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "12",
+ "type": "district",
+ "latitude": "23.61605120",
+ "longitude": "88.82630060"
+ },
+ {
+ "id": 763,
+ "name": "Comilla District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "08",
+ "type": "district",
+ "latitude": "23.45756670",
+ "longitude": "91.18089960"
+ },
+ {
+ "id": 751,
+ "name": "Cox's Bazar District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "11",
+ "type": "district",
+ "latitude": "21.56406260",
+ "longitude": "92.02821290"
+ },
+ {
+ "id": 771,
+ "name": "Dhaka District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "13",
+ "type": "district",
+ "latitude": "23.81051400",
+ "longitude": "90.33718890"
+ },
+ {
+ "id": 760,
+ "name": "Dhaka Division",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "C",
+ "type": "division",
+ "latitude": "23.95357420",
+ "longitude": "90.14949880"
+ },
+ {
+ "id": 783,
+ "name": "Dinajpur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "14",
+ "type": "district",
+ "latitude": "25.62791230",
+ "longitude": "88.63317580"
+ },
+ {
+ "id": 762,
+ "name": "Faridpur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "15",
+ "type": "district",
+ "latitude": "23.54239190",
+ "longitude": "89.63089210"
+ },
+ {
+ "id": 816,
+ "name": "Feni District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "16",
+ "type": "district",
+ "latitude": "22.94087840",
+ "longitude": "91.40666460"
+ },
+ {
+ "id": 795,
+ "name": "Gaibandha District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "19",
+ "type": "district",
+ "latitude": "25.32969280",
+ "longitude": "89.54296520"
+ },
+ {
+ "id": 798,
+ "name": "Gazipur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "18",
+ "type": "district",
+ "latitude": "24.09581710",
+ "longitude": "90.41251810"
+ },
+ {
+ "id": 792,
+ "name": "Gopalganj District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "17",
+ "type": "district",
+ "latitude": "26.48315840",
+ "longitude": "84.43655000"
+ },
+ {
+ "id": 805,
+ "name": "Habiganj District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "20",
+ "type": "district",
+ "latitude": "24.47712360",
+ "longitude": "91.45065650"
+ },
+ {
+ "id": 808,
+ "name": "Jamalpur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "21",
+ "type": "district",
+ "latitude": "25.08309260",
+ "longitude": "89.78532180"
+ },
+ {
+ "id": 757,
+ "name": "Jessore District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "22",
+ "type": "district",
+ "latitude": "23.16340140",
+ "longitude": "89.21816640"
+ },
+ {
+ "id": 778,
+ "name": "Jhalokati District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "25",
+ "type": "district",
+ "latitude": "22.57208000",
+ "longitude": "90.18696440"
+ },
+ {
+ "id": 789,
+ "name": "Jhenaidah District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "23",
+ "type": "district",
+ "latitude": "23.54498730",
+ "longitude": "89.17260310"
+ },
+ {
+ "id": 806,
+ "name": "Joypurhat District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "24",
+ "type": "district",
+ "latitude": "25.09473490",
+ "longitude": "89.09449370"
+ },
+ {
+ "id": 786,
+ "name": "Khagrachari District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "29",
+ "type": "district",
+ "latitude": "23.13217510",
+ "longitude": "91.94902100"
+ },
+ {
+ "id": 811,
+ "name": "Khulna District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "27",
+ "type": "district",
+ "latitude": "22.67377350",
+ "longitude": "89.39665810"
+ },
+ {
+ "id": 775,
+ "name": "Khulna Division",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "D",
+ "type": "division",
+ "latitude": "22.80878160",
+ "longitude": "89.24671910"
+ },
+ {
+ "id": 779,
+ "name": "Kishoreganj District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "26",
+ "type": "district",
+ "latitude": "24.42604570",
+ "longitude": "90.98206680"
+ },
+ {
+ "id": 793,
+ "name": "Kurigram District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "28",
+ "type": "district",
+ "latitude": "25.80724140",
+ "longitude": "89.62947460"
+ },
+ {
+ "id": 774,
+ "name": "Kushtia District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "30",
+ "type": "district",
+ "latitude": "23.89069950",
+ "longitude": "89.10993680"
+ },
+ {
+ "id": 819,
+ "name": "Lakshmipur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "31",
+ "type": "district",
+ "latitude": "22.94467440",
+ "longitude": "90.82819070"
+ },
+ {
+ "id": 780,
+ "name": "Lalmonirhat District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "32",
+ "type": "district",
+ "latitude": "25.99233980",
+ "longitude": "89.28472510"
+ },
+ {
+ "id": 817,
+ "name": "Madaripur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "36",
+ "type": "district",
+ "latitude": "23.23933460",
+ "longitude": "90.18696440"
+ },
+ {
+ "id": 776,
+ "name": "Meherpur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "39",
+ "type": "district",
+ "latitude": "23.80519910",
+ "longitude": "88.67235780"
+ },
+ {
+ "id": 794,
+ "name": "Moulvibazar District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "38",
+ "type": "district",
+ "latitude": "24.30953440",
+ "longitude": "91.73149030"
+ },
+ {
+ "id": 790,
+ "name": "Munshiganj District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "35",
+ "type": "district",
+ "latitude": "23.49809310",
+ "longitude": "90.41266210"
+ },
+ {
+ "id": 766,
+ "name": "Mymensingh District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "34",
+ "type": "district",
+ "latitude": "24.75385750",
+ "longitude": "90.40729190"
+ },
+ {
+ "id": 758,
+ "name": "Mymensingh Division",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "H",
+ "type": "division",
+ "latitude": "24.71362000",
+ "longitude": "90.45023680"
+ },
+ {
+ "id": 814,
+ "name": "Naogaon District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "48",
+ "type": "district",
+ "latitude": "24.91315970",
+ "longitude": "88.75309520"
+ },
+ {
+ "id": 769,
+ "name": "Narail District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "43",
+ "type": "district",
+ "latitude": "23.11629290",
+ "longitude": "89.58404040"
+ },
+ {
+ "id": 770,
+ "name": "Narayanganj District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "40",
+ "type": "district",
+ "latitude": "23.71466010",
+ "longitude": "90.56360900"
+ },
+ {
+ "id": 787,
+ "name": "Natore District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "44",
+ "type": "district",
+ "latitude": "24.41024300",
+ "longitude": "89.00761770"
+ },
+ {
+ "id": 764,
+ "name": "Netrokona District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "41",
+ "type": "district",
+ "latitude": "24.81032840",
+ "longitude": "90.86564150"
+ },
+ {
+ "id": 772,
+ "name": "Nilphamari District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "46",
+ "type": "district",
+ "latitude": "25.84827980",
+ "longitude": "88.94141340"
+ },
+ {
+ "id": 815,
+ "name": "Noakhali District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "47",
+ "type": "district",
+ "latitude": "22.87237890",
+ "longitude": "91.09731840"
+ },
+ {
+ "id": 754,
+ "name": "Pabna District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "49",
+ "type": "district",
+ "latitude": "24.15850500",
+ "longitude": "89.44807180"
+ },
+ {
+ "id": 800,
+ "name": "Panchagarh District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "52",
+ "type": "district",
+ "latitude": "26.27087050",
+ "longitude": "88.59517510"
+ },
+ {
+ "id": 777,
+ "name": "Patuakhali District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "51",
+ "type": "district",
+ "latitude": "22.22486320",
+ "longitude": "90.45475030"
+ },
+ {
+ "id": 791,
+ "name": "Pirojpur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "50",
+ "type": "district",
+ "latitude": "22.57907440",
+ "longitude": "89.97592640"
+ },
+ {
+ "id": 773,
+ "name": "Rajbari District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "53",
+ "type": "district",
+ "latitude": "23.71513400",
+ "longitude": "89.58748190"
+ },
+ {
+ "id": 813,
+ "name": "Rajshahi District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "54",
+ "type": "district",
+ "latitude": "24.37330870",
+ "longitude": "88.60487160"
+ },
+ {
+ "id": 753,
+ "name": "Rajshahi Division",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "E",
+ "type": "division",
+ "latitude": "24.71057760",
+ "longitude": "88.94138650"
+ },
+ {
+ "id": 809,
+ "name": "Rangamati Hill District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "56",
+ "type": "district",
+ "latitude": "22.73241730",
+ "longitude": "92.29851340"
+ },
+ {
+ "id": 759,
+ "name": "Rangpur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "55",
+ "type": "district",
+ "latitude": "25.74679250",
+ "longitude": "89.25083350"
+ },
+ {
+ "id": 750,
+ "name": "Rangpur Division",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "F",
+ "type": "division",
+ "latitude": "25.84833880",
+ "longitude": "88.94138650"
+ },
+ {
+ "id": 799,
+ "name": "Satkhira District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "58",
+ "type": "district",
+ "latitude": "22.31548120",
+ "longitude": "89.11145250"
+ },
+ {
+ "id": 801,
+ "name": "Shariatpur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "62",
+ "type": "district",
+ "latitude": "23.24232140",
+ "longitude": "90.43477110"
+ },
+ {
+ "id": 755,
+ "name": "Sherpur District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "57",
+ "type": "district",
+ "latitude": "25.07462350",
+ "longitude": "90.14949040"
+ },
+ {
+ "id": 781,
+ "name": "Sirajganj District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "59",
+ "type": "district",
+ "latitude": "24.31411150",
+ "longitude": "89.56996150"
+ },
+ {
+ "id": 812,
+ "name": "Sunamganj District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "61",
+ "type": "district",
+ "latitude": "25.07145350",
+ "longitude": "91.39916270"
+ },
+ {
+ "id": 767,
+ "name": "Sylhet District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "60",
+ "type": "district",
+ "latitude": "24.89933570",
+ "longitude": "91.87004730"
+ },
+ {
+ "id": 765,
+ "name": "Sylhet Division",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "G",
+ "type": "division",
+ "latitude": "24.70498110",
+ "longitude": "91.67606910"
+ },
+ {
+ "id": 782,
+ "name": "Tangail District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "63",
+ "type": "district",
+ "latitude": "24.39174270",
+ "longitude": "89.99482570"
+ },
+ {
+ "id": 804,
+ "name": "Thakurgaon District",
+ "country_id": 19,
+ "country_code": "BD",
+ "country_name": "Bangladesh",
+ "state_code": "64",
+ "type": "district",
+ "latitude": "26.04183920",
+ "longitude": "88.42826160"
+ },
+ {
+ "id": 1228,
+ "name": "Christ Church",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "01",
+ "type": null,
+ "latitude": "36.00604070",
+ "longitude": "-95.92112100"
+ },
+ {
+ "id": 1229,
+ "name": "Saint Andrew",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "02",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 1226,
+ "name": "Saint George",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "03",
+ "type": null,
+ "latitude": "37.09652780",
+ "longitude": "-113.56841640"
+ },
+ {
+ "id": 1224,
+ "name": "Saint James",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "04",
+ "type": null,
+ "latitude": "48.52356600",
+ "longitude": "-1.32378850"
+ },
+ {
+ "id": 1227,
+ "name": "Saint John",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "05",
+ "type": null,
+ "latitude": "45.27331530",
+ "longitude": "-66.06330800"
+ },
+ {
+ "id": 1223,
+ "name": "Saint Joseph",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "06",
+ "type": null,
+ "latitude": "39.76745780",
+ "longitude": "-94.84668100"
+ },
+ {
+ "id": 1221,
+ "name": "Saint Lucy",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "07",
+ "type": null,
+ "latitude": "38.76146250",
+ "longitude": "-77.44914390"
+ },
+ {
+ "id": 1230,
+ "name": "Saint Michael",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "08",
+ "type": null,
+ "latitude": "36.03597700",
+ "longitude": "-95.84905200"
+ },
+ {
+ "id": 1222,
+ "name": "Saint Peter",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "09",
+ "type": null,
+ "latitude": "37.08271190",
+ "longitude": "-94.51712500"
+ },
+ {
+ "id": 1220,
+ "name": "Saint Philip",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "10",
+ "type": null,
+ "latitude": "35.23311400",
+ "longitude": "-89.43640420"
+ },
+ {
+ "id": 1225,
+ "name": "Saint Thomas",
+ "country_id": 20,
+ "country_code": "BB",
+ "country_name": "Barbados",
+ "state_code": "11",
+ "type": null,
+ "latitude": "18.33809650",
+ "longitude": "-64.89409460"
+ },
+ {
+ "id": 2959,
+ "name": "Brest Region",
+ "country_id": 21,
+ "country_code": "BY",
+ "country_name": "Belarus",
+ "state_code": "BR",
+ "type": null,
+ "latitude": "52.52966410",
+ "longitude": "25.46064800"
+ },
+ {
+ "id": 2955,
+ "name": "Gomel Region",
+ "country_id": 21,
+ "country_code": "BY",
+ "country_name": "Belarus",
+ "state_code": "HO",
+ "type": null,
+ "latitude": "52.16487540",
+ "longitude": "29.13332510"
+ },
+ {
+ "id": 2956,
+ "name": "Grodno Region",
+ "country_id": 21,
+ "country_code": "BY",
+ "country_name": "Belarus",
+ "state_code": "HR",
+ "type": null,
+ "latitude": "53.65999450",
+ "longitude": "25.34485710"
+ },
+ {
+ "id": 2958,
+ "name": "Minsk",
+ "country_id": 21,
+ "country_code": "BY",
+ "country_name": "Belarus",
+ "state_code": "HM",
+ "type": null,
+ "latitude": "53.90060110",
+ "longitude": "27.55897200"
+ },
+ {
+ "id": 2957,
+ "name": "Minsk Region",
+ "country_id": 21,
+ "country_code": "BY",
+ "country_name": "Belarus",
+ "state_code": "MI",
+ "type": null,
+ "latitude": "54.10678890",
+ "longitude": "27.41292450"
+ },
+ {
+ "id": 2954,
+ "name": "Mogilev Region",
+ "country_id": 21,
+ "country_code": "BY",
+ "country_name": "Belarus",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "53.51017910",
+ "longitude": "30.40064440"
+ },
+ {
+ "id": 2960,
+ "name": "Vitebsk Region",
+ "country_id": 21,
+ "country_code": "BY",
+ "country_name": "Belarus",
+ "state_code": "VI",
+ "type": null,
+ "latitude": "55.29598330",
+ "longitude": "28.75836270"
+ },
+ {
+ "id": 1381,
+ "name": "Antwerp",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "VAN",
+ "type": null,
+ "latitude": "51.21944750",
+ "longitude": "4.40246430"
+ },
+ {
+ "id": 1376,
+ "name": "Brussels-Capital Region",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "BRU",
+ "type": null,
+ "latitude": "50.85034630",
+ "longitude": "4.35172110"
+ },
+ {
+ "id": 1377,
+ "name": "East Flanders",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "VOV",
+ "type": null,
+ "latitude": "51.03621010",
+ "longitude": "3.73731240"
+ },
+ {
+ "id": 1373,
+ "name": "Flanders",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "VLG",
+ "type": null,
+ "latitude": "51.01087060",
+ "longitude": "3.72646130"
+ },
+ {
+ "id": 1374,
+ "name": "Flemish Brabant",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "VBR",
+ "type": null,
+ "latitude": "50.88154340",
+ "longitude": "4.56459700"
+ },
+ {
+ "id": 1375,
+ "name": "Hainaut",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "WHT",
+ "type": null,
+ "latitude": "50.52570760",
+ "longitude": "4.06210170"
+ },
+ {
+ "id": 1384,
+ "name": "Liรจge",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "WLG",
+ "type": null,
+ "latitude": "50.63255740",
+ "longitude": "5.57966620"
+ },
+ {
+ "id": 1372,
+ "name": "Limburg",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "VLI",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 1379,
+ "name": "Luxembourg",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "WLX",
+ "type": null,
+ "latitude": "49.81527300",
+ "longitude": "6.12958300"
+ },
+ {
+ "id": 1378,
+ "name": "Namur",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "WNA",
+ "type": null,
+ "latitude": "50.46738830",
+ "longitude": "4.87198540"
+ },
+ {
+ "id": 1380,
+ "name": "Wallonia",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "WAL",
+ "type": null,
+ "latitude": "50.41756370",
+ "longitude": "4.45100660"
+ },
+ {
+ "id": 1382,
+ "name": "Walloon Brabant",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "WBR",
+ "type": null,
+ "latitude": "50.63324100",
+ "longitude": "4.52431500"
+ },
+ {
+ "id": 1383,
+ "name": "West Flanders",
+ "country_id": 22,
+ "country_code": "BE",
+ "country_name": "Belgium",
+ "state_code": "VWV",
+ "type": null,
+ "latitude": "51.04047470",
+ "longitude": "2.99942130"
+ },
+ {
+ "id": 264,
+ "name": "Belize District",
+ "country_id": 23,
+ "country_code": "BZ",
+ "country_name": "Belize",
+ "state_code": "BZ",
+ "type": null,
+ "latitude": "17.56776790",
+ "longitude": "-88.40160410"
+ },
+ {
+ "id": 269,
+ "name": "Cayo District",
+ "country_id": 23,
+ "country_code": "BZ",
+ "country_name": "Belize",
+ "state_code": "CY",
+ "type": null,
+ "latitude": "17.09844450",
+ "longitude": "-88.94138650"
+ },
+ {
+ "id": 266,
+ "name": "Corozal District",
+ "country_id": 23,
+ "country_code": "BZ",
+ "country_name": "Belize",
+ "state_code": "CZL",
+ "type": null,
+ "latitude": "18.13492380",
+ "longitude": "-88.24611830"
+ },
+ {
+ "id": 268,
+ "name": "Orange Walk District",
+ "country_id": 23,
+ "country_code": "BZ",
+ "country_name": "Belize",
+ "state_code": "OW",
+ "type": null,
+ "latitude": "17.76035300",
+ "longitude": "-88.86469800"
+ },
+ {
+ "id": 265,
+ "name": "Stann Creek District",
+ "country_id": 23,
+ "country_code": "BZ",
+ "country_name": "Belize",
+ "state_code": "SC",
+ "type": null,
+ "latitude": "16.81166310",
+ "longitude": "-88.40160410"
+ },
+ {
+ "id": 267,
+ "name": "Toledo District",
+ "country_id": 23,
+ "country_code": "BZ",
+ "country_name": "Belize",
+ "state_code": "TOL",
+ "type": null,
+ "latitude": "16.24919230",
+ "longitude": "-88.86469800"
+ },
+ {
+ "id": 3077,
+ "name": "Alibori Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "AL",
+ "type": null,
+ "latitude": "10.96810930",
+ "longitude": "2.77798130"
+ },
+ {
+ "id": 3076,
+ "name": "Atakora Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "AK",
+ "type": null,
+ "latitude": "10.79549310",
+ "longitude": "1.67606910"
+ },
+ {
+ "id": 3079,
+ "name": "Atlantique Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "AQ",
+ "type": null,
+ "latitude": "6.65883910",
+ "longitude": "2.22366670"
+ },
+ {
+ "id": 3078,
+ "name": "Borgou Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "BO",
+ "type": null,
+ "latitude": "9.53408640",
+ "longitude": "2.77798130"
+ },
+ {
+ "id": 3070,
+ "name": "Collines Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "CO",
+ "type": null,
+ "latitude": "8.30222970",
+ "longitude": "2.30244600"
+ },
+ {
+ "id": 3072,
+ "name": "Donga Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "DO",
+ "type": null,
+ "latitude": "9.71918670",
+ "longitude": "1.67606910"
+ },
+ {
+ "id": 3071,
+ "name": "Kouffo Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "KO",
+ "type": null,
+ "latitude": "7.00358940",
+ "longitude": "1.75388170"
+ },
+ {
+ "id": 3081,
+ "name": "Littoral Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "LI",
+ "type": null,
+ "latitude": "6.38069730",
+ "longitude": "2.44063870"
+ },
+ {
+ "id": 3075,
+ "name": "Mono Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "MO",
+ "type": null,
+ "latitude": "37.92186080",
+ "longitude": "-118.95286450"
+ },
+ {
+ "id": 3080,
+ "name": "Ouรฉmรฉ Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "OU",
+ "type": null,
+ "latitude": "6.61481520",
+ "longitude": "2.49999180"
+ },
+ {
+ "id": 3074,
+ "name": "Plateau Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "PL",
+ "type": null,
+ "latitude": "7.34451410",
+ "longitude": "2.53960300"
+ },
+ {
+ "id": 3073,
+ "name": "Zou Department",
+ "country_id": 24,
+ "country_code": "BJ",
+ "country_name": "Benin",
+ "state_code": "ZO",
+ "type": null,
+ "latitude": "7.34692680",
+ "longitude": "2.06651970"
+ },
+ {
+ "id": 4860,
+ "name": "Devonshire",
+ "country_id": 25,
+ "country_code": "BM",
+ "country_name": "Bermuda",
+ "state_code": "DEV",
+ "type": "municipality",
+ "latitude": "32.30380620",
+ "longitude": "-64.76069540"
+ },
+ {
+ "id": 4861,
+ "name": "Hamilton",
+ "country_id": 25,
+ "country_code": "BM",
+ "country_name": "Bermuda",
+ "state_code": "HA",
+ "type": "municipality",
+ "latitude": "32.34494320",
+ "longitude": "-64.72365000"
+ },
+ {
+ "id": 4863,
+ "name": "Paget",
+ "country_id": 25,
+ "country_code": "BM",
+ "country_name": "Bermuda",
+ "state_code": "PAG",
+ "type": "municipality",
+ "latitude": "32.28107400",
+ "longitude": "-64.77847870"
+ },
+ {
+ "id": 4864,
+ "name": "Pembroke",
+ "country_id": 25,
+ "country_code": "BM",
+ "country_name": "Bermuda",
+ "state_code": "PEM",
+ "type": "municipality",
+ "latitude": "32.30076720",
+ "longitude": "-64.79626300"
+ },
+ {
+ "id": 4866,
+ "name": "Saint George's",
+ "country_id": 25,
+ "country_code": "BM",
+ "country_name": "Bermuda",
+ "state_code": "SGE",
+ "type": "municipality",
+ "latitude": "17.12577590",
+ "longitude": "-62.56198110"
+ },
+ {
+ "id": 4867,
+ "name": "Sandys",
+ "country_id": 25,
+ "country_code": "BM",
+ "country_name": "Bermuda",
+ "state_code": "SAN",
+ "type": "municipality",
+ "latitude": "32.29995280",
+ "longitude": "-64.86741030"
+ },
+ {
+ "id": 4868,
+ "name": "Smith's",
+ "country_id": 25,
+ "country_code": "BM",
+ "country_name": "Bermuda",
+ "state_code": "SMI",
+ "type": "municipality",
+ "latitude": "32.31339660",
+ "longitude": "-64.73105880"
+ },
+ {
+ "id": 4869,
+ "name": "Southampton",
+ "country_id": 25,
+ "country_code": "BM",
+ "country_name": "Bermuda",
+ "state_code": "SOU",
+ "type": "municipality",
+ "latitude": "32.25400950",
+ "longitude": "-64.82590580"
+ },
+ {
+ "id": 4870,
+ "name": "Warwick",
+ "country_id": 25,
+ "country_code": "BM",
+ "country_name": "Bermuda",
+ "state_code": "WAR",
+ "type": "municipality",
+ "latitude": "32.26615340",
+ "longitude": "-64.80811980"
+ },
+ {
+ "id": 240,
+ "name": "Bumthang District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "33",
+ "type": null,
+ "latitude": "27.64183900",
+ "longitude": "90.67730460"
+ },
+ {
+ "id": 239,
+ "name": "Chukha District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "12",
+ "type": null,
+ "latitude": "27.07843040",
+ "longitude": "89.47421770"
+ },
+ {
+ "id": 238,
+ "name": "Dagana District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "22",
+ "type": null,
+ "latitude": "27.03228610",
+ "longitude": "89.88793040"
+ },
+ {
+ "id": 229,
+ "name": "Gasa District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "GA",
+ "type": null,
+ "latitude": "28.01858860",
+ "longitude": "89.92532330"
+ },
+ {
+ "id": 232,
+ "name": "Haa District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "13",
+ "type": null,
+ "latitude": "27.26516690",
+ "longitude": "89.17059980"
+ },
+ {
+ "id": 234,
+ "name": "Lhuntse District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "44",
+ "type": null,
+ "latitude": "27.82649890",
+ "longitude": "91.13530200"
+ },
+ {
+ "id": 242,
+ "name": "Mongar District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "42",
+ "type": null,
+ "latitude": "27.26170590",
+ "longitude": "91.28910360"
+ },
+ {
+ "id": 237,
+ "name": "Paro District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "11",
+ "type": null,
+ "latitude": "27.42859490",
+ "longitude": "89.41665160"
+ },
+ {
+ "id": 244,
+ "name": "Pemagatshel District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "43",
+ "type": null,
+ "latitude": "27.00238200",
+ "longitude": "91.34692470"
+ },
+ {
+ "id": 235,
+ "name": "Punakha District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "23",
+ "type": null,
+ "latitude": "27.69037160",
+ "longitude": "89.88793040"
+ },
+ {
+ "id": 243,
+ "name": "Samdrup Jongkhar District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "45",
+ "type": null,
+ "latitude": "26.80356820",
+ "longitude": "91.50392070"
+ },
+ {
+ "id": 246,
+ "name": "Samtse District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "14",
+ "type": null,
+ "latitude": "27.02918320",
+ "longitude": "89.05615320"
+ },
+ {
+ "id": 247,
+ "name": "Sarpang District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "31",
+ "type": null,
+ "latitude": "26.93730410",
+ "longitude": "90.48799160"
+ },
+ {
+ "id": 241,
+ "name": "Thimphu District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "15",
+ "type": null,
+ "latitude": "27.47122160",
+ "longitude": "89.63390410"
+ },
+ {
+ "id": 236,
+ "name": "Trashigang District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "41",
+ "type": null,
+ "latitude": "27.25667950",
+ "longitude": "91.75388170"
+ },
+ {
+ "id": 245,
+ "name": "Trongsa District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "32",
+ "type": null,
+ "latitude": "27.50022690",
+ "longitude": "90.50806340"
+ },
+ {
+ "id": 230,
+ "name": "Tsirang District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "21",
+ "type": null,
+ "latitude": "27.03220700",
+ "longitude": "90.18696440"
+ },
+ {
+ "id": 231,
+ "name": "Wangdue Phodrang District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "24",
+ "type": null,
+ "latitude": "27.45260460",
+ "longitude": "90.06749280"
+ },
+ {
+ "id": 233,
+ "name": "Zhemgang District",
+ "country_id": 26,
+ "country_code": "BT",
+ "country_name": "Bhutan",
+ "state_code": "34",
+ "type": null,
+ "latitude": "27.07697500",
+ "longitude": "90.82940020"
+ },
+ {
+ "id": 3375,
+ "name": "Beni Department",
+ "country_id": 27,
+ "country_code": "BO",
+ "country_name": "Bolivia",
+ "state_code": "B",
+ "type": null,
+ "latitude": "-14.37827470",
+ "longitude": "-65.09577920"
+ },
+ {
+ "id": 3382,
+ "name": "Chuquisaca Department",
+ "country_id": 27,
+ "country_code": "BO",
+ "country_name": "Bolivia",
+ "state_code": "H",
+ "type": null,
+ "latitude": "-20.02491440",
+ "longitude": "-64.14782360"
+ },
+ {
+ "id": 3381,
+ "name": "Cochabamba Department",
+ "country_id": 27,
+ "country_code": "BO",
+ "country_name": "Bolivia",
+ "state_code": "C",
+ "type": null,
+ "latitude": "-17.56816750",
+ "longitude": "-65.47573600"
+ },
+ {
+ "id": 3380,
+ "name": "La Paz Department",
+ "country_id": 27,
+ "country_code": "BO",
+ "country_name": "Bolivia",
+ "state_code": "L",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3376,
+ "name": "Oruro Department",
+ "country_id": 27,
+ "country_code": "BO",
+ "country_name": "Bolivia",
+ "state_code": "O",
+ "type": null,
+ "latitude": "-18.57115790",
+ "longitude": "-67.76159830"
+ },
+ {
+ "id": 3379,
+ "name": "Pando Department",
+ "country_id": 27,
+ "country_code": "BO",
+ "country_name": "Bolivia",
+ "state_code": "N",
+ "type": null,
+ "latitude": "-10.79889010",
+ "longitude": "-66.99880110"
+ },
+ {
+ "id": 3383,
+ "name": "Potosรญ Department",
+ "country_id": 27,
+ "country_code": "BO",
+ "country_name": "Bolivia",
+ "state_code": "P",
+ "type": null,
+ "latitude": "-20.62471300",
+ "longitude": "-66.99880110"
+ },
+ {
+ "id": 3377,
+ "name": "Santa Cruz Department",
+ "country_id": 27,
+ "country_code": "BO",
+ "country_name": "Bolivia",
+ "state_code": "S",
+ "type": null,
+ "latitude": "-16.74760370",
+ "longitude": "-62.07509980"
+ },
+ {
+ "id": 3378,
+ "name": "Tarija Department",
+ "country_id": 27,
+ "country_code": "BO",
+ "country_name": "Bolivia",
+ "state_code": "T",
+ "type": null,
+ "latitude": "-21.58315950",
+ "longitude": "-63.95861110"
+ },
+ {
+ "id": 5086,
+ "name": "Bonaire",
+ "country_id": 155,
+ "country_code": "BQ",
+ "country_name": "Bonaire, Sint Eustatius and Saba",
+ "state_code": "BQ1",
+ "type": "special municipality",
+ "latitude": "12.20189020",
+ "longitude": "-68.26238220"
+ },
+ {
+ "id": 5087,
+ "name": "Saba",
+ "country_id": 155,
+ "country_code": "BQ",
+ "country_name": "Bonaire, Sint Eustatius and Saba",
+ "state_code": "BQ2",
+ "type": "special municipality",
+ "latitude": "17.63546420",
+ "longitude": "-63.23267630"
+ },
+ {
+ "id": 5088,
+ "name": "Sint Eustatius",
+ "country_id": 155,
+ "country_code": "BQ",
+ "country_name": "Bonaire, Sint Eustatius and Saba",
+ "state_code": "BQ3",
+ "type": "special municipality",
+ "latitude": "17.48903060",
+ "longitude": "-62.97355500"
+ },
+ {
+ "id": 472,
+ "name": "Bosnian Podrinje Canton",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "05",
+ "type": null,
+ "latitude": "43.68749000",
+ "longitude": "18.82443940"
+ },
+ {
+ "id": 460,
+ "name": "Brฤko District",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "BRC",
+ "type": null,
+ "latitude": "44.84059440",
+ "longitude": "18.74215300"
+ },
+ {
+ "id": 471,
+ "name": "Canton 10",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "10",
+ "type": null,
+ "latitude": "43.95341550",
+ "longitude": "16.94251870"
+ },
+ {
+ "id": 462,
+ "name": "Central Bosnia Canton",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "06",
+ "type": null,
+ "latitude": "44.13818560",
+ "longitude": "17.68667140"
+ },
+ {
+ "id": 467,
+ "name": "Federation of Bosnia and Herzegovina",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "BIH",
+ "type": null,
+ "latitude": "43.88748970",
+ "longitude": "17.84279300"
+ },
+ {
+ "id": 463,
+ "name": "Herzegovina-Neretva Canton",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "07",
+ "type": null,
+ "latitude": "43.52651590",
+ "longitude": "17.76362100"
+ },
+ {
+ "id": 464,
+ "name": "Posavina Canton",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "02",
+ "type": null,
+ "latitude": "45.07520940",
+ "longitude": "18.37763040"
+ },
+ {
+ "id": 470,
+ "name": "Republika Srpska",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "SRP",
+ "type": null,
+ "latitude": "44.72801860",
+ "longitude": "17.31481360"
+ },
+ {
+ "id": 466,
+ "name": "Sarajevo Canton",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "09",
+ "type": null,
+ "latitude": "43.85125640",
+ "longitude": "18.29534420"
+ },
+ {
+ "id": 461,
+ "name": "Tuzla Canton",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "03",
+ "type": null,
+ "latitude": "44.53434630",
+ "longitude": "18.69727970"
+ },
+ {
+ "id": 465,
+ "name": "Una-Sana Canton",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "01",
+ "type": null,
+ "latitude": "44.65031160",
+ "longitude": "16.31716290"
+ },
+ {
+ "id": 469,
+ "name": "West Herzegovina Canton",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "08",
+ "type": null,
+ "latitude": "43.43692440",
+ "longitude": "17.38488310"
+ },
+ {
+ "id": 468,
+ "name": "Zenica-Doboj Canton",
+ "country_id": 28,
+ "country_code": "BA",
+ "country_name": "Bosnia and Herzegovina",
+ "state_code": "04",
+ "type": null,
+ "latitude": "44.21271090",
+ "longitude": "18.16046250"
+ },
+ {
+ "id": 3067,
+ "name": "Central District",
+ "country_id": 29,
+ "country_code": "BW",
+ "country_name": "Botswana",
+ "state_code": "CE",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3061,
+ "name": "Ghanzi District",
+ "country_id": 29,
+ "country_code": "BW",
+ "country_name": "Botswana",
+ "state_code": "GH",
+ "type": null,
+ "latitude": "-21.86523140",
+ "longitude": "21.85685860"
+ },
+ {
+ "id": 3066,
+ "name": "Kgalagadi District",
+ "country_id": 29,
+ "country_code": "BW",
+ "country_name": "Botswana",
+ "state_code": "KG",
+ "type": null,
+ "latitude": "-24.75502850",
+ "longitude": "21.85685860"
+ },
+ {
+ "id": 3062,
+ "name": "Kgatleng District",
+ "country_id": 29,
+ "country_code": "BW",
+ "country_name": "Botswana",
+ "state_code": "KL",
+ "type": null,
+ "latitude": "-24.19704450",
+ "longitude": "26.23046160"
+ },
+ {
+ "id": 3069,
+ "name": "Kweneng District",
+ "country_id": 29,
+ "country_code": "BW",
+ "country_name": "Botswana",
+ "state_code": "KW",
+ "type": null,
+ "latitude": "-23.83672490",
+ "longitude": "25.28375850"
+ },
+ {
+ "id": 3060,
+ "name": "Ngamiland",
+ "country_id": 29,
+ "country_code": "BW",
+ "country_name": "Botswana",
+ "state_code": "NG",
+ "type": null,
+ "latitude": "-19.19053210",
+ "longitude": "23.00119890"
+ },
+ {
+ "id": 3068,
+ "name": "North-East District",
+ "country_id": 29,
+ "country_code": "BW",
+ "country_name": "Botswana",
+ "state_code": "NE",
+ "type": null,
+ "latitude": "37.58844610",
+ "longitude": "-94.68637820"
+ },
+ {
+ "id": 3065,
+ "name": "North-West District",
+ "country_id": 29,
+ "country_code": "BW",
+ "country_name": "Botswana",
+ "state_code": "NW",
+ "type": null,
+ "latitude": "39.34463070",
+ "longitude": "-76.68542830"
+ },
+ {
+ "id": 3064,
+ "name": "South-East District",
+ "country_id": 29,
+ "country_code": "BW",
+ "country_name": "Botswana",
+ "state_code": "SE",
+ "type": null,
+ "latitude": "31.21637980",
+ "longitude": "-82.35270440"
+ },
+ {
+ "id": 3063,
+ "name": "Southern District",
+ "country_id": 29,
+ "country_code": "BW",
+ "country_name": "Botswana",
+ "state_code": "SO",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2012,
+ "name": "Acre",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "AC",
+ "type": null,
+ "latitude": "-9.02379600",
+ "longitude": "-70.81199500"
+ },
+ {
+ "id": 2007,
+ "name": "Alagoas",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "AL",
+ "type": null,
+ "latitude": "-9.57130580",
+ "longitude": "-36.78195050"
+ },
+ {
+ "id": 1999,
+ "name": "Amapรก",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "AP",
+ "type": null,
+ "latitude": "0.90199250",
+ "longitude": "-52.00295650"
+ },
+ {
+ "id": 2004,
+ "name": "Amazonas",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "AM",
+ "type": null,
+ "latitude": "-3.07000000",
+ "longitude": "-61.66000000"
+ },
+ {
+ "id": 2002,
+ "name": "Bahia",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "-11.40987400",
+ "longitude": "-41.28085700"
+ },
+ {
+ "id": 2016,
+ "name": "Cearรก",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "CE",
+ "type": null,
+ "latitude": "-5.49839770",
+ "longitude": "-39.32062410"
+ },
+ {
+ "id": 2017,
+ "name": "Distrito Federal",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "DF",
+ "type": null,
+ "latitude": "-15.79976540",
+ "longitude": "-47.86447150"
+ },
+ {
+ "id": 2018,
+ "name": "Espรญrito Santo",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "ES",
+ "type": null,
+ "latitude": "-19.18342290",
+ "longitude": "-40.30886260"
+ },
+ {
+ "id": 2000,
+ "name": "Goiรกs",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "GO",
+ "type": null,
+ "latitude": "-15.82703690",
+ "longitude": "-49.83622370"
+ },
+ {
+ "id": 2015,
+ "name": "Maranhรฃo",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "-4.96094980",
+ "longitude": "-45.27441590"
+ },
+ {
+ "id": 2011,
+ "name": "Mato Grosso",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "MT",
+ "type": null,
+ "latitude": "-12.68187120",
+ "longitude": "-56.92109900"
+ },
+ {
+ "id": 2010,
+ "name": "Mato Grosso do Sul",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "MS",
+ "type": null,
+ "latitude": "-20.77222950",
+ "longitude": "-54.78515310"
+ },
+ {
+ "id": 1998,
+ "name": "Minas Gerais",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "MG",
+ "type": null,
+ "latitude": "-18.51217800",
+ "longitude": "-44.55503080"
+ },
+ {
+ "id": 2009,
+ "name": "Parรก",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "PA",
+ "type": null,
+ "latitude": "-1.99812710",
+ "longitude": "-54.93061520"
+ },
+ {
+ "id": 2005,
+ "name": "Paraรญba",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "PB",
+ "type": null,
+ "latitude": "-7.23996090",
+ "longitude": "-36.78195050"
+ },
+ {
+ "id": 2022,
+ "name": "Paranรก",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "PR",
+ "type": null,
+ "latitude": "-25.25208880",
+ "longitude": "-52.02154150"
+ },
+ {
+ "id": 2006,
+ "name": "Pernambuco",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "PE",
+ "type": null,
+ "latitude": "-8.81371730",
+ "longitude": "-36.95410700"
+ },
+ {
+ "id": 2008,
+ "name": "Piauรญ",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "PI",
+ "type": null,
+ "latitude": "-7.71834010",
+ "longitude": "-42.72892360"
+ },
+ {
+ "id": 1997,
+ "name": "Rio de Janeiro",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "RJ",
+ "type": null,
+ "latitude": "-22.90684670",
+ "longitude": "-43.17289650"
+ },
+ {
+ "id": 2019,
+ "name": "Rio Grande do Norte",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "RN",
+ "type": null,
+ "latitude": "-5.40258030",
+ "longitude": "-36.95410700"
+ },
+ {
+ "id": 2001,
+ "name": "Rio Grande do Sul",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "RS",
+ "type": null,
+ "latitude": "-30.03463160",
+ "longitude": "-51.21769860"
+ },
+ {
+ "id": 2013,
+ "name": "Rondรดnia",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "RO",
+ "type": null,
+ "latitude": "-11.50573410",
+ "longitude": "-63.58061100"
+ },
+ {
+ "id": 4858,
+ "name": "Roraima",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "RR",
+ "type": null,
+ "latitude": "2.73759710",
+ "longitude": "-62.07509980"
+ },
+ {
+ "id": 2014,
+ "name": "Santa Catarina",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "SC",
+ "type": null,
+ "latitude": "-27.33000000",
+ "longitude": "-49.44000000"
+ },
+ {
+ "id": 2021,
+ "name": "Sรฃo Paulo",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "SP",
+ "type": null,
+ "latitude": "-23.55051990",
+ "longitude": "-46.63330940"
+ },
+ {
+ "id": 2003,
+ "name": "Sergipe",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "SE",
+ "type": null,
+ "latitude": "-10.57409340",
+ "longitude": "-37.38565810"
+ },
+ {
+ "id": 2020,
+ "name": "Tocantins",
+ "country_id": 31,
+ "country_code": "BR",
+ "country_name": "Brazil",
+ "state_code": "TO",
+ "type": null,
+ "latitude": "-10.17528000",
+ "longitude": "-48.29824740"
+ },
+ {
+ "id": 1217,
+ "name": "Belait District",
+ "country_id": 33,
+ "country_code": "BN",
+ "country_name": "Brunei",
+ "state_code": "BE",
+ "type": null,
+ "latitude": "4.37507490",
+ "longitude": "114.61928990"
+ },
+ {
+ "id": 1216,
+ "name": "Brunei-Muara District",
+ "country_id": 33,
+ "country_code": "BN",
+ "country_name": "Brunei",
+ "state_code": "BM",
+ "type": null,
+ "latitude": "4.93112060",
+ "longitude": "114.95168690"
+ },
+ {
+ "id": 1218,
+ "name": "Temburong District",
+ "country_id": 33,
+ "country_code": "BN",
+ "country_name": "Brunei",
+ "state_code": "TE",
+ "type": null,
+ "latitude": "4.62041280",
+ "longitude": "115.14148400"
+ },
+ {
+ "id": 1219,
+ "name": "Tutong District",
+ "country_id": 33,
+ "country_code": "BN",
+ "country_name": "Brunei",
+ "state_code": "TU",
+ "type": null,
+ "latitude": "4.71403730",
+ "longitude": "114.66679390"
+ },
+ {
+ "id": 4699,
+ "name": "Blagoevgrad Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "01",
+ "type": null,
+ "latitude": "42.02086140",
+ "longitude": "23.09433560"
+ },
+ {
+ "id": 4715,
+ "name": "Burgas Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "02",
+ "type": null,
+ "latitude": "42.50480000",
+ "longitude": "27.46260790"
+ },
+ {
+ "id": 4718,
+ "name": "Dobrich Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "08",
+ "type": null,
+ "latitude": "43.57278600",
+ "longitude": "27.82728020"
+ },
+ {
+ "id": 4693,
+ "name": "Gabrovo Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "07",
+ "type": null,
+ "latitude": "42.86847000",
+ "longitude": "25.31688900"
+ },
+ {
+ "id": 4704,
+ "name": "Haskovo Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "26",
+ "type": null,
+ "latitude": "41.93441780",
+ "longitude": "25.55546720"
+ },
+ {
+ "id": 4702,
+ "name": "Kardzhali Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "09",
+ "type": null,
+ "latitude": "41.63384160",
+ "longitude": "25.37766870"
+ },
+ {
+ "id": 4703,
+ "name": "Kyustendil Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "10",
+ "type": null,
+ "latitude": "42.28687990",
+ "longitude": "22.69396350"
+ },
+ {
+ "id": 4710,
+ "name": "Lovech Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "11",
+ "type": null,
+ "latitude": "43.13677980",
+ "longitude": "24.71393350"
+ },
+ {
+ "id": 4696,
+ "name": "Montana Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "12",
+ "type": null,
+ "latitude": "43.40851480",
+ "longitude": "23.22575890"
+ },
+ {
+ "id": 4712,
+ "name": "Pazardzhik Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "13",
+ "type": null,
+ "latitude": "42.19275670",
+ "longitude": "24.33362260"
+ },
+ {
+ "id": 4695,
+ "name": "Pernik Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "14",
+ "type": null,
+ "latitude": "42.60519900",
+ "longitude": "23.03779160"
+ },
+ {
+ "id": 4706,
+ "name": "Pleven Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "15",
+ "type": null,
+ "latitude": "43.41701690",
+ "longitude": "24.60667080"
+ },
+ {
+ "id": 4701,
+ "name": "Plovdiv Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "16",
+ "type": null,
+ "latitude": "42.13540790",
+ "longitude": "24.74529040"
+ },
+ {
+ "id": 4698,
+ "name": "Razgrad Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "17",
+ "type": null,
+ "latitude": "43.52717050",
+ "longitude": "26.52412280"
+ },
+ {
+ "id": 4713,
+ "name": "Ruse Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "18",
+ "type": null,
+ "latitude": "43.83559640",
+ "longitude": "25.96561440"
+ },
+ {
+ "id": 4882,
+ "name": "Shumen",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "27",
+ "type": null,
+ "latitude": "43.27123980",
+ "longitude": "26.93612860"
+ },
+ {
+ "id": 4708,
+ "name": "Silistra Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "19",
+ "type": null,
+ "latitude": "44.11471010",
+ "longitude": "27.26714540"
+ },
+ {
+ "id": 4700,
+ "name": "Sliven Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "20",
+ "type": null,
+ "latitude": "42.68167020",
+ "longitude": "26.32285690"
+ },
+ {
+ "id": 4694,
+ "name": "Smolyan Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "21",
+ "type": null,
+ "latitude": "41.57741480",
+ "longitude": "24.70108710"
+ },
+ {
+ "id": 4705,
+ "name": "Sofia City Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "22",
+ "type": null,
+ "latitude": "42.75701090",
+ "longitude": "23.45046830"
+ },
+ {
+ "id": 4719,
+ "name": "Sofia Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "23",
+ "type": null,
+ "latitude": "42.67344000",
+ "longitude": "23.83349370"
+ },
+ {
+ "id": 4707,
+ "name": "Stara Zagora Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "24",
+ "type": null,
+ "latitude": "42.42577090",
+ "longitude": "25.63448550"
+ },
+ {
+ "id": 4714,
+ "name": "Targovishte Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "25",
+ "type": null,
+ "latitude": "43.24623490",
+ "longitude": "26.56912510"
+ },
+ {
+ "id": 4717,
+ "name": "Varna Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "03",
+ "type": null,
+ "latitude": "43.20464770",
+ "longitude": "27.91054880"
+ },
+ {
+ "id": 4709,
+ "name": "Veliko Tarnovo Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "04",
+ "type": null,
+ "latitude": "43.07565390",
+ "longitude": "25.61715000"
+ },
+ {
+ "id": 4697,
+ "name": "Vidin Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "05",
+ "type": null,
+ "latitude": "43.99617390",
+ "longitude": "22.86795150"
+ },
+ {
+ "id": 4711,
+ "name": "Vratsa Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "06",
+ "type": null,
+ "latitude": "43.21018060",
+ "longitude": "23.55292100"
+ },
+ {
+ "id": 4716,
+ "name": "Yambol Province",
+ "country_id": 34,
+ "country_code": "BG",
+ "country_name": "Bulgaria",
+ "state_code": "28",
+ "type": null,
+ "latitude": "42.48414940",
+ "longitude": "26.50352960"
+ },
+ {
+ "id": 3160,
+ "name": "Balรฉ Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "BAL",
+ "type": null,
+ "latitude": "11.78206020",
+ "longitude": "-3.01757120"
+ },
+ {
+ "id": 3155,
+ "name": "Bam Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "BAM",
+ "type": null,
+ "latitude": "13.44613300",
+ "longitude": "-1.59839590"
+ },
+ {
+ "id": 3120,
+ "name": "Banwa Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "BAN",
+ "type": null,
+ "latitude": "12.13230530",
+ "longitude": "-4.15137640"
+ },
+ {
+ "id": 3152,
+ "name": "Bazรจga Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "BAZ",
+ "type": null,
+ "latitude": "11.97676920",
+ "longitude": "-1.44346900"
+ },
+ {
+ "id": 3138,
+ "name": "Boucle du Mouhoun Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "01",
+ "type": null,
+ "latitude": "12.41660000",
+ "longitude": "-3.41955270"
+ },
+ {
+ "id": 3121,
+ "name": "Bougouriba Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "BGR",
+ "type": null,
+ "latitude": "10.87226460",
+ "longitude": "-3.33889170"
+ },
+ {
+ "id": 3131,
+ "name": "Boulgou",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "BLG",
+ "type": null,
+ "latitude": "11.43367660",
+ "longitude": "-0.37483540"
+ },
+ {
+ "id": 3153,
+ "name": "Cascades Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "02",
+ "type": null,
+ "latitude": "10.40729920",
+ "longitude": "-4.56244260"
+ },
+ {
+ "id": 3136,
+ "name": "Centre",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "03",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3162,
+ "name": "Centre-Est Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "04",
+ "type": null,
+ "latitude": "11.52476740",
+ "longitude": "-0.14949880"
+ },
+ {
+ "id": 3127,
+ "name": "Centre-Nord Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "05",
+ "type": null,
+ "latitude": "13.17244640",
+ "longitude": "-0.90566230"
+ },
+ {
+ "id": 3115,
+ "name": "Centre-Ouest Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "06",
+ "type": null,
+ "latitude": "11.87984660",
+ "longitude": "-2.30244600"
+ },
+ {
+ "id": 3149,
+ "name": "Centre-Sud Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "07",
+ "type": null,
+ "latitude": "11.52289110",
+ "longitude": "-1.05861350"
+ },
+ {
+ "id": 3167,
+ "name": "Comoรฉ Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "COM",
+ "type": null,
+ "latitude": "10.40729920",
+ "longitude": "-4.56244260"
+ },
+ {
+ "id": 3158,
+ "name": "Est Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "08",
+ "type": null,
+ "latitude": "12.43655260",
+ "longitude": "0.90566230"
+ },
+ {
+ "id": 3148,
+ "name": "Ganzourgou Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "GAN",
+ "type": null,
+ "latitude": "12.25376480",
+ "longitude": "-0.75328090"
+ },
+ {
+ "id": 3122,
+ "name": "Gnagna Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "GNA",
+ "type": null,
+ "latitude": "12.89749920",
+ "longitude": "0.07467670"
+ },
+ {
+ "id": 3143,
+ "name": "Gourma Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "GOU",
+ "type": null,
+ "latitude": "12.16244730",
+ "longitude": "0.67730460"
+ },
+ {
+ "id": 3165,
+ "name": "Hauts-Bassins Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "09",
+ "type": null,
+ "latitude": "11.49420030",
+ "longitude": "-4.23333550"
+ },
+ {
+ "id": 3129,
+ "name": "Houet Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "HOU",
+ "type": null,
+ "latitude": "11.13204470",
+ "longitude": "-4.23333550"
+ },
+ {
+ "id": 3135,
+ "name": "Ioba Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "IOB",
+ "type": null,
+ "latitude": "11.05620340",
+ "longitude": "-3.01757120"
+ },
+ {
+ "id": 3168,
+ "name": "Kadiogo Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "KAD",
+ "type": null,
+ "latitude": "12.34258970",
+ "longitude": "-1.44346900"
+ },
+ {
+ "id": 3112,
+ "name": "Kรฉnรฉdougou Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "KEN",
+ "type": null,
+ "latitude": "11.39193950",
+ "longitude": "-4.97665400"
+ },
+ {
+ "id": 3132,
+ "name": "Komondjari Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "KMD",
+ "type": null,
+ "latitude": "12.71265270",
+ "longitude": "0.67730460"
+ },
+ {
+ "id": 3157,
+ "name": "Kompienga Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "KMP",
+ "type": null,
+ "latitude": "11.52383620",
+ "longitude": "0.75328090"
+ },
+ {
+ "id": 3146,
+ "name": "Kossi Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "KOS",
+ "type": null,
+ "latitude": "12.96045800",
+ "longitude": "-3.90626880"
+ },
+ {
+ "id": 3133,
+ "name": "Koulpรฉlogo Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "KOP",
+ "type": null,
+ "latitude": "11.52476740",
+ "longitude": "0.14949880"
+ },
+ {
+ "id": 3161,
+ "name": "Kouritenga Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "KOT",
+ "type": null,
+ "latitude": "12.16318130",
+ "longitude": "-0.22446620"
+ },
+ {
+ "id": 3147,
+ "name": "Kourwรฉogo Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "KOW",
+ "type": null,
+ "latitude": "12.70774950",
+ "longitude": "-1.75388170"
+ },
+ {
+ "id": 3159,
+ "name": "Lรฉraba Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "LER",
+ "type": null,
+ "latitude": "10.66487850",
+ "longitude": "-5.31025050"
+ },
+ {
+ "id": 3151,
+ "name": "Loroum Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "LOR",
+ "type": null,
+ "latitude": "13.81298140",
+ "longitude": "-2.06651970"
+ },
+ {
+ "id": 3123,
+ "name": "Mouhoun",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "MOU",
+ "type": null,
+ "latitude": "12.14323810",
+ "longitude": "-3.33889170"
+ },
+ {
+ "id": 3116,
+ "name": "Nahouri Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "NAO",
+ "type": null,
+ "latitude": "11.25022670",
+ "longitude": "-1.13530200"
+ },
+ {
+ "id": 3113,
+ "name": "Namentenga Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "NAM",
+ "type": null,
+ "latitude": "13.08125840",
+ "longitude": "-0.52578230"
+ },
+ {
+ "id": 3142,
+ "name": "Nayala Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "NAY",
+ "type": null,
+ "latitude": "12.69645580",
+ "longitude": "-3.01757120"
+ },
+ {
+ "id": 3164,
+ "name": "Nord Region, Burkina Faso",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "10",
+ "type": null,
+ "latitude": "13.71825200",
+ "longitude": "-2.30244600"
+ },
+ {
+ "id": 3156,
+ "name": "Noumbiel Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "NOU",
+ "type": null,
+ "latitude": "9.84409460",
+ "longitude": "-2.97755580"
+ },
+ {
+ "id": 3141,
+ "name": "Oubritenga Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "OUB",
+ "type": null,
+ "latitude": "12.70960870",
+ "longitude": "-1.44346900"
+ },
+ {
+ "id": 3144,
+ "name": "Oudalan Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "OUD",
+ "type": null,
+ "latitude": "14.47190200",
+ "longitude": "-0.45023680"
+ },
+ {
+ "id": 3117,
+ "name": "Passorรฉ Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "PAS",
+ "type": null,
+ "latitude": "12.88812210",
+ "longitude": "-2.22366670"
+ },
+ {
+ "id": 3125,
+ "name": "Plateau-Central Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "11",
+ "type": null,
+ "latitude": "12.25376480",
+ "longitude": "-0.75328090"
+ },
+ {
+ "id": 3163,
+ "name": "Poni Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "PON",
+ "type": null,
+ "latitude": "10.33259960",
+ "longitude": "-3.33889170"
+ },
+ {
+ "id": 3114,
+ "name": "Sahel Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "12",
+ "type": null,
+ "latitude": "14.10008650",
+ "longitude": "-0.14949880"
+ },
+ {
+ "id": 3154,
+ "name": "Sanguiรฉ Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "SNG",
+ "type": null,
+ "latitude": "12.15018610",
+ "longitude": "-2.69838680"
+ },
+ {
+ "id": 3126,
+ "name": "Sanmatenga Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "SMT",
+ "type": null,
+ "latitude": "13.35653040",
+ "longitude": "-1.05861350"
+ },
+ {
+ "id": 3139,
+ "name": "Sรฉno Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "SEN",
+ "type": null,
+ "latitude": "14.00722340",
+ "longitude": "-0.07467670"
+ },
+ {
+ "id": 3119,
+ "name": "Sissili Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "SIS",
+ "type": null,
+ "latitude": "11.24412190",
+ "longitude": "-2.22366670"
+ },
+ {
+ "id": 3166,
+ "name": "Soum Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "SOM",
+ "type": null,
+ "latitude": "14.09628410",
+ "longitude": "-1.36621600"
+ },
+ {
+ "id": 3137,
+ "name": "Sourou Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "SOR",
+ "type": null,
+ "latitude": "13.34180300",
+ "longitude": "-2.93757390"
+ },
+ {
+ "id": 3140,
+ "name": "Sud-Ouest Region",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "13",
+ "type": null,
+ "latitude": "10.42314930",
+ "longitude": "-3.25836260"
+ },
+ {
+ "id": 3128,
+ "name": "Tapoa Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "TAP",
+ "type": null,
+ "latitude": "12.24970720",
+ "longitude": "1.67606910"
+ },
+ {
+ "id": 3134,
+ "name": "Tuy Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "TUI",
+ "type": null,
+ "latitude": "38.88868400",
+ "longitude": "-77.00471900"
+ },
+ {
+ "id": 3124,
+ "name": "Yagha Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "YAG",
+ "type": null,
+ "latitude": "13.35761570",
+ "longitude": "0.75328090"
+ },
+ {
+ "id": 3150,
+ "name": "Yatenga Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "YAT",
+ "type": null,
+ "latitude": "13.62493440",
+ "longitude": "-2.38136210"
+ },
+ {
+ "id": 3145,
+ "name": "Ziro Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "ZIR",
+ "type": null,
+ "latitude": "11.60949950",
+ "longitude": "-1.90992380"
+ },
+ {
+ "id": 3130,
+ "name": "Zondoma Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "ZON",
+ "type": null,
+ "latitude": "13.11659260",
+ "longitude": "-2.42087130"
+ },
+ {
+ "id": 3118,
+ "name": "Zoundwรฉogo Province",
+ "country_id": 35,
+ "country_code": "BF",
+ "country_name": "Burkina Faso",
+ "state_code": "ZOU",
+ "type": null,
+ "latitude": "11.61411740",
+ "longitude": "-0.98206680"
+ },
+ {
+ "id": 3196,
+ "name": "Bubanza Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "BB",
+ "type": null,
+ "latitude": "-3.15724030",
+ "longitude": "29.37149090"
+ },
+ {
+ "id": 3198,
+ "name": "Bujumbura Mairie Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "BM",
+ "type": null,
+ "latitude": "-3.38841410",
+ "longitude": "29.34826460"
+ },
+ {
+ "id": 3200,
+ "name": "Bujumbura Rural Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "BL",
+ "type": null,
+ "latitude": "-3.50901440",
+ "longitude": "29.46435900"
+ },
+ {
+ "id": 3202,
+ "name": "Bururi Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "BR",
+ "type": null,
+ "latitude": "-3.90068510",
+ "longitude": "29.51077080"
+ },
+ {
+ "id": 3201,
+ "name": "Cankuzo Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "CA",
+ "type": null,
+ "latitude": "-3.15277880",
+ "longitude": "30.61998950"
+ },
+ {
+ "id": 3190,
+ "name": "Cibitoke Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "CI",
+ "type": null,
+ "latitude": "-2.81028970",
+ "longitude": "29.18557850"
+ },
+ {
+ "id": 3197,
+ "name": "Gitega Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "GI",
+ "type": null,
+ "latitude": "-3.49290510",
+ "longitude": "29.92779470"
+ },
+ {
+ "id": 3194,
+ "name": "Karuzi Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "KR",
+ "type": null,
+ "latitude": "-3.13403470",
+ "longitude": "30.11273500"
+ },
+ {
+ "id": 3192,
+ "name": "Kayanza Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "KY",
+ "type": null,
+ "latitude": "-3.00779810",
+ "longitude": "29.64991620"
+ },
+ {
+ "id": 3195,
+ "name": "Kirundo Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "KI",
+ "type": null,
+ "latitude": "-2.57628820",
+ "longitude": "30.11273500"
+ },
+ {
+ "id": 3188,
+ "name": "Makamba Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "-4.32570620",
+ "longitude": "29.69626770"
+ },
+ {
+ "id": 3193,
+ "name": "Muramvya Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "MU",
+ "type": null,
+ "latitude": "-3.28983980",
+ "longitude": "29.64991620"
+ },
+ {
+ "id": 3186,
+ "name": "Muyinga Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "MY",
+ "type": null,
+ "latitude": "-2.77935110",
+ "longitude": "30.29741990"
+ },
+ {
+ "id": 3187,
+ "name": "Mwaro Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "MW",
+ "type": null,
+ "latitude": "-3.50259180",
+ "longitude": "29.64991620"
+ },
+ {
+ "id": 3199,
+ "name": "Ngozi Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "NG",
+ "type": null,
+ "latitude": "-2.89582430",
+ "longitude": "29.88152030"
+ },
+ {
+ "id": 3185,
+ "name": "Rumonge Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "RM",
+ "type": null,
+ "latitude": "-3.97540490",
+ "longitude": "29.43880140"
+ },
+ {
+ "id": 3189,
+ "name": "Rutana Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "RT",
+ "type": null,
+ "latitude": "-3.87915230",
+ "longitude": "30.06652360"
+ },
+ {
+ "id": 3191,
+ "name": "Ruyigi Province",
+ "country_id": 36,
+ "country_code": "BI",
+ "country_name": "Burundi",
+ "state_code": "RY",
+ "type": null,
+ "latitude": "-3.44620700",
+ "longitude": "30.25127280"
+ },
+ {
+ "id": 3984,
+ "name": "Banteay Meanchey",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "1",
+ "type": "province",
+ "latitude": "13.75319140",
+ "longitude": "102.98961500"
+ },
+ {
+ "id": 3976,
+ "name": "Battambang",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "2",
+ "type": "province",
+ "latitude": "13.02869710",
+ "longitude": "102.98961500"
+ },
+ {
+ "id": 3991,
+ "name": "Kampong Cham",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "3",
+ "type": "province",
+ "latitude": "12.09829180",
+ "longitude": "105.31311850"
+ },
+ {
+ "id": 3979,
+ "name": "Kampong Chhnang",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "4",
+ "type": "province",
+ "latitude": "12.13923520",
+ "longitude": "104.56552730"
+ },
+ {
+ "id": 3988,
+ "name": "Kampong Speu",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "5",
+ "type": "province",
+ "latitude": "11.61551090",
+ "longitude": "104.37919120"
+ },
+ {
+ "id": 5070,
+ "name": "Kampong Thom",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "6",
+ "type": "province",
+ "latitude": "12.81674850",
+ "longitude": "103.84131040"
+ },
+ {
+ "id": 3981,
+ "name": "Kampot",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "7",
+ "type": "province",
+ "latitude": "10.73253510",
+ "longitude": "104.37919120"
+ },
+ {
+ "id": 3983,
+ "name": "Kandal",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "8",
+ "type": "province",
+ "latitude": "11.22373830",
+ "longitude": "105.12589550"
+ },
+ {
+ "id": 3978,
+ "name": "Kep",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "23",
+ "type": "province",
+ "latitude": "10.53608900",
+ "longitude": "104.35591580"
+ },
+ {
+ "id": 3982,
+ "name": "Koh Kong",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "9",
+ "type": "province",
+ "latitude": "11.57628040",
+ "longitude": "103.35872880"
+ },
+ {
+ "id": 3986,
+ "name": "Kratie",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "10",
+ "type": "province",
+ "latitude": "12.50436080",
+ "longitude": "105.96998780"
+ },
+ {
+ "id": 3985,
+ "name": "Mondulkiri",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "11",
+ "type": "province",
+ "latitude": "12.78794270",
+ "longitude": "107.10119310"
+ },
+ {
+ "id": 3987,
+ "name": "Oddar Meanchey",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "22",
+ "type": "province",
+ "latitude": "14.16097380",
+ "longitude": "103.82162610"
+ },
+ {
+ "id": 3980,
+ "name": "Pailin",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "24",
+ "type": "province",
+ "latitude": "12.90929620",
+ "longitude": "102.66755750"
+ },
+ {
+ "id": 3994,
+ "name": "Phnom Penh",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "12",
+ "type": "autonomous municipality",
+ "latitude": "11.55637380",
+ "longitude": "104.92820990"
+ },
+ {
+ "id": 3973,
+ "name": "Preah Vihear",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "13",
+ "type": "province",
+ "latitude": "14.00857970",
+ "longitude": "104.84546190"
+ },
+ {
+ "id": 3974,
+ "name": "Prey Veng",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "14",
+ "type": "province",
+ "latitude": "11.38024420",
+ "longitude": "105.50054830"
+ },
+ {
+ "id": 3977,
+ "name": "Pursat",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "15",
+ "type": "province",
+ "latitude": "12.27209560",
+ "longitude": "103.72891670"
+ },
+ {
+ "id": 3990,
+ "name": "Ratanakiri",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "16",
+ "type": "province",
+ "latitude": "13.85766070",
+ "longitude": "107.10119310"
+ },
+ {
+ "id": 3992,
+ "name": "Siem Reap",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "17",
+ "type": "province",
+ "latitude": "13.33026600",
+ "longitude": "104.10013260"
+ },
+ {
+ "id": 3989,
+ "name": "Sihanoukville",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "18",
+ "type": "province",
+ "latitude": "10.75818990",
+ "longitude": "103.82162610"
+ },
+ {
+ "id": 3993,
+ "name": "Stung Treng",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "19",
+ "type": "province",
+ "latitude": "13.57647300",
+ "longitude": "105.96998780"
+ },
+ {
+ "id": 3972,
+ "name": "Svay Rieng",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "20",
+ "type": "province",
+ "latitude": "11.14272200",
+ "longitude": "105.82902980"
+ },
+ {
+ "id": 3975,
+ "name": "Takeo",
+ "country_id": 37,
+ "country_code": "KH",
+ "country_name": "Cambodia",
+ "state_code": "21",
+ "type": "province",
+ "latitude": "10.93215190",
+ "longitude": "104.79877100"
+ },
+ {
+ "id": 2663,
+ "name": "Adamawa",
+ "country_id": 38,
+ "country_code": "CM",
+ "country_name": "Cameroon",
+ "state_code": "AD",
+ "type": null,
+ "latitude": "9.32647510",
+ "longitude": "12.39838530"
+ },
+ {
+ "id": 2660,
+ "name": "Centre",
+ "country_id": 38,
+ "country_code": "CM",
+ "country_name": "Cameroon",
+ "state_code": "CE",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2661,
+ "name": "East",
+ "country_id": 38,
+ "country_code": "CM",
+ "country_name": "Cameroon",
+ "state_code": "ES",
+ "type": null,
+ "latitude": "39.01853360",
+ "longitude": "-94.27924110"
+ },
+ {
+ "id": 2656,
+ "name": "Far North",
+ "country_id": 38,
+ "country_code": "CM",
+ "country_name": "Cameroon",
+ "state_code": "EN",
+ "type": null,
+ "latitude": "66.76134510",
+ "longitude": "124.12375300"
+ },
+ {
+ "id": 2662,
+ "name": "Littoral",
+ "country_id": 38,
+ "country_code": "CM",
+ "country_name": "Cameroon",
+ "state_code": "LT",
+ "type": null,
+ "latitude": "48.46227570",
+ "longitude": "-68.51780710"
+ },
+ {
+ "id": 2665,
+ "name": "North",
+ "country_id": 38,
+ "country_code": "CM",
+ "country_name": "Cameroon",
+ "state_code": "NO",
+ "type": null,
+ "latitude": "37.09024000",
+ "longitude": "-95.71289100"
+ },
+ {
+ "id": 2657,
+ "name": "Northwest",
+ "country_id": 38,
+ "country_code": "CM",
+ "country_name": "Cameroon",
+ "state_code": "NW",
+ "type": null,
+ "latitude": "36.37118570",
+ "longitude": "-94.19346060"
+ },
+ {
+ "id": 2659,
+ "name": "South",
+ "country_id": 38,
+ "country_code": "CM",
+ "country_name": "Cameroon",
+ "state_code": "SU",
+ "type": null,
+ "latitude": "37.63159500",
+ "longitude": "-97.34584090"
+ },
+ {
+ "id": 2658,
+ "name": "Southwest",
+ "country_id": 38,
+ "country_code": "CM",
+ "country_name": "Cameroon",
+ "state_code": "SW",
+ "type": null,
+ "latitude": "36.19088130",
+ "longitude": "-95.88974480"
+ },
+ {
+ "id": 2664,
+ "name": "West",
+ "country_id": 38,
+ "country_code": "CM",
+ "country_name": "Cameroon",
+ "state_code": "OU",
+ "type": null,
+ "latitude": "37.03649890",
+ "longitude": "-95.67059870"
+ },
+ {
+ "id": 872,
+ "name": "Alberta",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "AB",
+ "type": "province",
+ "latitude": "53.93327060",
+ "longitude": "-116.57650350"
+ },
+ {
+ "id": 875,
+ "name": "British Columbia",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "BC",
+ "type": "province",
+ "latitude": "53.72666830",
+ "longitude": "-127.64762050"
+ },
+ {
+ "id": 867,
+ "name": "Manitoba",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "MB",
+ "type": "province",
+ "latitude": "53.76086080",
+ "longitude": "-98.81387620"
+ },
+ {
+ "id": 868,
+ "name": "New Brunswick",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "NB",
+ "type": "province",
+ "latitude": "46.56531630",
+ "longitude": "-66.46191640"
+ },
+ {
+ "id": 877,
+ "name": "Newfoundland and Labrador",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "NL",
+ "type": "province",
+ "latitude": "53.13550910",
+ "longitude": "-57.66043640"
+ },
+ {
+ "id": 878,
+ "name": "Northwest Territories",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "NT",
+ "type": "territory",
+ "latitude": "64.82554410",
+ "longitude": "-124.84573340"
+ },
+ {
+ "id": 874,
+ "name": "Nova Scotia",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "NS",
+ "type": "province",
+ "latitude": "44.68198660",
+ "longitude": "-63.74431100"
+ },
+ {
+ "id": 876,
+ "name": "Nunavut",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "NU",
+ "type": "territory",
+ "latitude": "70.29977110",
+ "longitude": "-83.10757700"
+ },
+ {
+ "id": 866,
+ "name": "Ontario",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "ON",
+ "type": "province",
+ "latitude": "51.25377500",
+ "longitude": "-85.32321400"
+ },
+ {
+ "id": 871,
+ "name": "Prince Edward Island",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "PE",
+ "type": "province",
+ "latitude": "46.51071200",
+ "longitude": "-63.41681360"
+ },
+ {
+ "id": 873,
+ "name": "Quebec",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "QC",
+ "type": "province",
+ "latitude": "52.93991590",
+ "longitude": "-73.54913610"
+ },
+ {
+ "id": 870,
+ "name": "Saskatchewan",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "SK",
+ "type": "province",
+ "latitude": "52.93991590",
+ "longitude": "-106.45086390"
+ },
+ {
+ "id": 869,
+ "name": "Yukon",
+ "country_id": 39,
+ "country_code": "CA",
+ "country_name": "Canada",
+ "state_code": "YT",
+ "type": "territory",
+ "latitude": "35.50672150",
+ "longitude": "-97.76254410"
+ },
+ {
+ "id": 2994,
+ "name": "Barlavento Islands",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "B",
+ "type": null,
+ "latitude": "16.82368450",
+ "longitude": "-23.99348810"
+ },
+ {
+ "id": 2999,
+ "name": "Boa Vista",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "BV",
+ "type": null,
+ "latitude": "38.74346600",
+ "longitude": "-120.73042970"
+ },
+ {
+ "id": 2996,
+ "name": "Brava",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "BR",
+ "type": null,
+ "latitude": "40.98977780",
+ "longitude": "-73.68357150"
+ },
+ {
+ "id": 2991,
+ "name": "Maio Municipality",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "15.20030980",
+ "longitude": "-23.16797930"
+ },
+ {
+ "id": 2987,
+ "name": "Mosteiros",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "MO",
+ "type": null,
+ "latitude": "37.89043480",
+ "longitude": "-25.82075560"
+ },
+ {
+ "id": 2997,
+ "name": "Paul",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "PA",
+ "type": null,
+ "latitude": "37.06250000",
+ "longitude": "-95.67706800"
+ },
+ {
+ "id": 2989,
+ "name": "Porto Novo",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "PN",
+ "type": null,
+ "latitude": "6.49685740",
+ "longitude": "2.62885230"
+ },
+ {
+ "id": 2988,
+ "name": "Praia",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "PR",
+ "type": null,
+ "latitude": "14.93305000",
+ "longitude": "-23.51332670"
+ },
+ {
+ "id": 2982,
+ "name": "Ribeira Brava Municipality",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "RB",
+ "type": null,
+ "latitude": "16.60707390",
+ "longitude": "-24.20338430"
+ },
+ {
+ "id": 3002,
+ "name": "Ribeira Grande",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "RG",
+ "type": null,
+ "latitude": "37.82103690",
+ "longitude": "-25.51481370"
+ },
+ {
+ "id": 2984,
+ "name": "Ribeira Grande de Santiago",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "RS",
+ "type": null,
+ "latitude": "14.98302980",
+ "longitude": "-23.65617250"
+ },
+ {
+ "id": 2998,
+ "name": "Sal",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "SL",
+ "type": null,
+ "latitude": "26.59581220",
+ "longitude": "-80.20450830"
+ },
+ {
+ "id": 2985,
+ "name": "Santa Catarina",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "CA",
+ "type": null,
+ "latitude": "-27.24233920",
+ "longitude": "-50.21885560"
+ },
+ {
+ "id": 2995,
+ "name": "Santa Catarina do Fogo",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "CF",
+ "type": null,
+ "latitude": "14.93091040",
+ "longitude": "-24.32225770"
+ },
+ {
+ "id": 3004,
+ "name": "Santa Cruz",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "CR",
+ "type": null,
+ "latitude": "36.97411710",
+ "longitude": "-122.03079630"
+ },
+ {
+ "id": 2986,
+ "name": "Sรฃo Domingos",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "SD",
+ "type": null,
+ "latitude": "15.02861650",
+ "longitude": "-23.56392200"
+ },
+ {
+ "id": 3000,
+ "name": "Sรฃo Filipe",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "SF",
+ "type": null,
+ "latitude": "14.89516790",
+ "longitude": "-24.49456360"
+ },
+ {
+ "id": 2993,
+ "name": "Sรฃo Lourenรงo dos รrgรฃos",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "SO",
+ "type": null,
+ "latitude": "15.05378410",
+ "longitude": "-23.60856120"
+ },
+ {
+ "id": 2990,
+ "name": "Sรฃo Miguel",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "SM",
+ "type": null,
+ "latitude": "37.78041100",
+ "longitude": "-25.49704660"
+ },
+ {
+ "id": 3001,
+ "name": "Sรฃo Vicente",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "SV",
+ "type": null,
+ "latitude": "-23.96071570",
+ "longitude": "-46.39620220"
+ },
+ {
+ "id": 2992,
+ "name": "Sotavento Islands",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "S",
+ "type": null,
+ "latitude": "15.00000000",
+ "longitude": "-24.00000000"
+ },
+ {
+ "id": 2983,
+ "name": "Tarrafal",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "15.27605780",
+ "longitude": "-23.74840770"
+ },
+ {
+ "id": 3003,
+ "name": "Tarrafal de Sรฃo Nicolau",
+ "country_id": 40,
+ "country_code": "CV",
+ "country_name": "Cape Verde",
+ "state_code": "TS",
+ "type": null,
+ "latitude": "16.56364980",
+ "longitude": "-24.35494200"
+ },
+ {
+ "id": 1259,
+ "name": "Bamingui-Bangoran Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "BB",
+ "type": null,
+ "latitude": "8.27334550",
+ "longitude": "20.71224650"
+ },
+ {
+ "id": 1262,
+ "name": "Bangui",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "BGF",
+ "type": null,
+ "latitude": "4.39467350",
+ "longitude": "18.55818990"
+ },
+ {
+ "id": 1264,
+ "name": "Basse-Kotto Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "BK",
+ "type": null,
+ "latitude": "4.87193190",
+ "longitude": "21.28450250"
+ },
+ {
+ "id": 1258,
+ "name": "Haut-Mbomou Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "HM",
+ "type": null,
+ "latitude": "6.25371340",
+ "longitude": "25.47335540"
+ },
+ {
+ "id": 1268,
+ "name": "Haute-Kotto Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "HK",
+ "type": null,
+ "latitude": "7.79643790",
+ "longitude": "23.38235450"
+ },
+ {
+ "id": 1263,
+ "name": "Kรฉmo Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "KG",
+ "type": null,
+ "latitude": "5.88677940",
+ "longitude": "19.37832060"
+ },
+ {
+ "id": 1256,
+ "name": "Lobaye Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "LB",
+ "type": null,
+ "latitude": "4.35259810",
+ "longitude": "17.47951730"
+ },
+ {
+ "id": 1257,
+ "name": "Mambรฉrรฉ-Kadรฉรฏ",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "HS",
+ "type": null,
+ "latitude": "4.70556530",
+ "longitude": "15.96998780"
+ },
+ {
+ "id": 1266,
+ "name": "Mbomou Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "MB",
+ "type": null,
+ "latitude": "5.55683700",
+ "longitude": "23.76328280"
+ },
+ {
+ "id": 1253,
+ "name": "Nana-Grรฉbizi Economic Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "KB",
+ "type": null,
+ "latitude": "7.18486070",
+ "longitude": "19.37832060"
+ },
+ {
+ "id": 1260,
+ "name": "Nana-Mambรฉrรฉ Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "NM",
+ "type": null,
+ "latitude": "5.69321350",
+ "longitude": "15.21948080"
+ },
+ {
+ "id": 1255,
+ "name": "Ombella-M'Poko Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "MP",
+ "type": null,
+ "latitude": "5.11888250",
+ "longitude": "18.42760470"
+ },
+ {
+ "id": 1265,
+ "name": "Ouaka Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "UK",
+ "type": null,
+ "latitude": "6.31682160",
+ "longitude": "20.71224650"
+ },
+ {
+ "id": 1254,
+ "name": "Ouham Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "AC",
+ "type": null,
+ "latitude": "7.09091100",
+ "longitude": "17.66888700"
+ },
+ {
+ "id": 1267,
+ "name": "Ouham-Pendรฉ Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "OP",
+ "type": null,
+ "latitude": "6.48509840",
+ "longitude": "16.15809370"
+ },
+ {
+ "id": 1252,
+ "name": "Sangha-Mbaรฉrรฉ",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "SE",
+ "type": null,
+ "latitude": "3.43686070",
+ "longitude": "16.34637910"
+ },
+ {
+ "id": 1261,
+ "name": "Vakaga Prefecture",
+ "country_id": 42,
+ "country_code": "CF",
+ "country_name": "Central African Republic",
+ "state_code": "VK",
+ "type": null,
+ "latitude": "9.51132960",
+ "longitude": "22.23840170"
+ },
+ {
+ "id": 3583,
+ "name": "Bahr el Gazel",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "BG",
+ "type": "province",
+ "latitude": "14.77022660",
+ "longitude": "16.91225100"
+ },
+ {
+ "id": 3590,
+ "name": "Batha",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "BA",
+ "type": "province",
+ "latitude": "13.93717750",
+ "longitude": "18.42760470"
+ },
+ {
+ "id": 3574,
+ "name": "Borkou",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "BO",
+ "type": "province",
+ "latitude": "17.86888450",
+ "longitude": "18.80761950"
+ },
+ {
+ "id": 5114,
+ "name": "Chari-Baguirmi",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "CB",
+ "type": "province",
+ "latitude": "11.46186260",
+ "longitude": "15.24463940"
+ },
+ {
+ "id": 3575,
+ "name": "Ennedi-Est",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "EE",
+ "type": "province",
+ "latitude": "16.34204960",
+ "longitude": "23.00119890"
+ },
+ {
+ "id": 3584,
+ "name": "Ennedi-Ouest",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "EO",
+ "type": "province",
+ "latitude": "18.97756300",
+ "longitude": "21.85685860"
+ },
+ {
+ "id": 3576,
+ "name": "Guรฉra",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "GR",
+ "type": "province",
+ "latitude": "11.12190150",
+ "longitude": "18.42760470"
+ },
+ {
+ "id": 3573,
+ "name": "Hadjer-Lamis",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "HL",
+ "type": "province",
+ "latitude": "12.45772730",
+ "longitude": "16.72346390"
+ },
+ {
+ "id": 3588,
+ "name": "Kanem",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "KA",
+ "type": "province",
+ "latitude": "14.87812620",
+ "longitude": "15.40680790"
+ },
+ {
+ "id": 3577,
+ "name": "Lac",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "LC",
+ "type": "province",
+ "latitude": "13.69153770",
+ "longitude": "14.10013260"
+ },
+ {
+ "id": 3585,
+ "name": "Logone Occidental",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "LO",
+ "type": "province",
+ "latitude": "8.75967600",
+ "longitude": "15.87600400"
+ },
+ {
+ "id": 3591,
+ "name": "Logone Oriental",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "LR",
+ "type": "province",
+ "latitude": "8.31499490",
+ "longitude": "16.34637910"
+ },
+ {
+ "id": 3589,
+ "name": "Mandoul",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "MA",
+ "type": "province",
+ "latitude": "8.60309100",
+ "longitude": "17.47951730"
+ },
+ {
+ "id": 3580,
+ "name": "Mayo-Kebbi Est",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "ME",
+ "type": "province",
+ "latitude": "9.40460390",
+ "longitude": "14.84546190"
+ },
+ {
+ "id": 3571,
+ "name": "Mayo-Kebbi Ouest",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "MO",
+ "type": "province",
+ "latitude": "10.41130140",
+ "longitude": "15.59433880"
+ },
+ {
+ "id": 3570,
+ "name": "Moyen-Chari",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "MC",
+ "type": "province",
+ "latitude": "9.06399980",
+ "longitude": "18.42760470"
+ },
+ {
+ "id": 3586,
+ "name": "N'Djamena",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "ND",
+ "type": "province",
+ "latitude": "12.13484570",
+ "longitude": "15.05574150"
+ },
+ {
+ "id": 3582,
+ "name": "Ouaddaรฏ",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "OD",
+ "type": "province",
+ "latitude": "13.74847600",
+ "longitude": "20.71224650"
+ },
+ {
+ "id": 3592,
+ "name": "Salamat",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "SA",
+ "type": "province",
+ "latitude": "10.96916010",
+ "longitude": "20.71224650"
+ },
+ {
+ "id": 3572,
+ "name": "Sila",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "SI",
+ "type": "province",
+ "latitude": "12.13074000",
+ "longitude": "21.28450250"
+ },
+ {
+ "id": 3579,
+ "name": "Tandjilรฉ",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "TA",
+ "type": "province",
+ "latitude": "9.66257290",
+ "longitude": "16.72346390"
+ },
+ {
+ "id": 3587,
+ "name": "Tibesti",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "TI",
+ "type": "province",
+ "latitude": "21.36500310",
+ "longitude": "16.91225100"
+ },
+ {
+ "id": 3581,
+ "name": "Wadi Fira",
+ "country_id": 43,
+ "country_code": "TD",
+ "country_name": "Chad",
+ "state_code": "WF",
+ "type": "province",
+ "latitude": "15.08924160",
+ "longitude": "21.47528510"
+ },
+ {
+ "id": 2828,
+ "name": "Aisรฉn del General Carlos Ibaรฑez del Campo",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "AI",
+ "type": null,
+ "latitude": "-46.37834500",
+ "longitude": "-72.30076230"
+ },
+ {
+ "id": 2832,
+ "name": "Antofagasta",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "AN",
+ "type": null,
+ "latitude": "-23.83691040",
+ "longitude": "-69.28775350"
+ },
+ {
+ "id": 2829,
+ "name": "Arica y Parinacota",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "AP",
+ "type": null,
+ "latitude": "-18.59404850",
+ "longitude": "-69.47845410"
+ },
+ {
+ "id": 2823,
+ "name": "Atacama",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "AT",
+ "type": null,
+ "latitude": "-27.56605580",
+ "longitude": "-70.05031400"
+ },
+ {
+ "id": 2827,
+ "name": "Biobรญo",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "BI",
+ "type": null,
+ "latitude": "-37.44644280",
+ "longitude": "-72.14161320"
+ },
+ {
+ "id": 2825,
+ "name": "Coquimbo",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "CO",
+ "type": null,
+ "latitude": "-30.54018100",
+ "longitude": "-70.81199530"
+ },
+ {
+ "id": 2826,
+ "name": "La Araucanรญa",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "AR",
+ "type": null,
+ "latitude": "-38.94892100",
+ "longitude": "-72.33111300"
+ },
+ {
+ "id": 2838,
+ "name": "Libertador General Bernardo O'Higgins",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "LI",
+ "type": null,
+ "latitude": "-34.57553740",
+ "longitude": "-71.00223110"
+ },
+ {
+ "id": 2835,
+ "name": "Los Lagos",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "LL",
+ "type": null,
+ "latitude": "-41.91977790",
+ "longitude": "-72.14161320"
+ },
+ {
+ "id": 2834,
+ "name": "Los Rรญos",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "LR",
+ "type": null,
+ "latitude": "-40.23102170",
+ "longitude": "-72.33111300"
+ },
+ {
+ "id": 2836,
+ "name": "Magallanes y de la Antรกrtica Chilena",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "-52.20643160",
+ "longitude": "-72.16850010"
+ },
+ {
+ "id": 2833,
+ "name": "Maule",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "ML",
+ "type": null,
+ "latitude": "-35.51636030",
+ "longitude": "-71.57239530"
+ },
+ {
+ "id": 2831,
+ "name": "รuble",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "NB",
+ "type": null,
+ "latitude": "-36.72257430",
+ "longitude": "-71.76224810"
+ },
+ {
+ "id": 2824,
+ "name": "Regiรณn Metropolitana de Santiago",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "RM",
+ "type": null,
+ "latitude": "-33.43755450",
+ "longitude": "-70.65048960"
+ },
+ {
+ "id": 2837,
+ "name": "Tarapacรก",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "-20.20287990",
+ "longitude": "-69.28775350"
+ },
+ {
+ "id": 2830,
+ "name": "Valparaรญso",
+ "country_id": 44,
+ "country_code": "CL",
+ "country_name": "Chile",
+ "state_code": "VS",
+ "type": null,
+ "latitude": "-33.04723800",
+ "longitude": "-71.61268850"
+ },
+ {
+ "id": 2251,
+ "name": "Anhui",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "AH",
+ "type": "province",
+ "latitude": "30.60067730",
+ "longitude": "117.92490020"
+ },
+ {
+ "id": 2257,
+ "name": "Beijing",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "BJ",
+ "type": "municipality",
+ "latitude": "39.90419990",
+ "longitude": "116.40739630"
+ },
+ {
+ "id": 2271,
+ "name": "Chongqing",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "CQ",
+ "type": "municipality",
+ "latitude": "29.43158610",
+ "longitude": "106.91225100"
+ },
+ {
+ "id": 2248,
+ "name": "Fujian",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "FJ",
+ "type": "province",
+ "latitude": "26.48368420",
+ "longitude": "117.92490020"
+ },
+ {
+ "id": 2275,
+ "name": "Gansu",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "GS",
+ "type": "province",
+ "latitude": "35.75183260",
+ "longitude": "104.28611160"
+ },
+ {
+ "id": 2279,
+ "name": "Guangdong",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "GD",
+ "type": "province",
+ "latitude": "23.37903330",
+ "longitude": "113.76328280"
+ },
+ {
+ "id": 2278,
+ "name": "Guangxi Zhuang",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "GX",
+ "type": "autonomous region",
+ "latitude": "23.72475990",
+ "longitude": "108.80761950"
+ },
+ {
+ "id": 2261,
+ "name": "Guizhou",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "GZ",
+ "type": "province",
+ "latitude": "26.84296450",
+ "longitude": "107.29028390"
+ },
+ {
+ "id": 2273,
+ "name": "Hainan",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "HI",
+ "type": "province",
+ "latitude": "19.56639470",
+ "longitude": "109.94968600"
+ },
+ {
+ "id": 2280,
+ "name": "Hebei",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "HE",
+ "type": "province",
+ "latitude": "37.89565940",
+ "longitude": "114.90422080"
+ },
+ {
+ "id": 2265,
+ "name": "Heilongjiang",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "HL",
+ "type": "province",
+ "latitude": "47.12164720",
+ "longitude": "128.73823100"
+ },
+ {
+ "id": 2259,
+ "name": "Henan",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "HA",
+ "type": "province",
+ "latitude": "34.29043020",
+ "longitude": "113.38235450"
+ },
+ {
+ "id": 2267,
+ "name": "Hong Kong SAR",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "HK",
+ "type": "special administrative region",
+ "latitude": "22.31930390",
+ "longitude": "114.16936110"
+ },
+ {
+ "id": 2274,
+ "name": "Hubei",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "HB",
+ "type": "province",
+ "latitude": "30.73781180",
+ "longitude": "112.23840170"
+ },
+ {
+ "id": 2258,
+ "name": "Hunan",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "HN",
+ "type": "province",
+ "latitude": "27.36830090",
+ "longitude": "109.28193470"
+ },
+ {
+ "id": 2269,
+ "name": "Inner Mongolia",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "NM",
+ "type": "autonomous region",
+ "latitude": "43.37822000",
+ "longitude": "115.05948150"
+ },
+ {
+ "id": 2250,
+ "name": "Jiangsu",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "JS",
+ "type": "province",
+ "latitude": "33.14017150",
+ "longitude": "119.78892480"
+ },
+ {
+ "id": 2256,
+ "name": "Jiangxi",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "JX",
+ "type": "province",
+ "latitude": "27.08745640",
+ "longitude": "114.90422080"
+ },
+ {
+ "id": 2253,
+ "name": "Jilin",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "JL",
+ "type": "province",
+ "latitude": "43.83788300",
+ "longitude": "126.54957200"
+ },
+ {
+ "id": 2268,
+ "name": "Liaoning",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "LN",
+ "type": "province",
+ "latitude": "41.94365430",
+ "longitude": "122.52903760"
+ },
+ {
+ "id": 2266,
+ "name": "Macau SAR",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "MO",
+ "type": "special administrative region",
+ "latitude": "22.19874500",
+ "longitude": "113.54387300"
+ },
+ {
+ "id": 2262,
+ "name": "Ningxia Huizu",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "NX",
+ "type": "autonomous region",
+ "latitude": "37.19873100",
+ "longitude": "106.15809370"
+ },
+ {
+ "id": 2270,
+ "name": "Qinghai",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "QH",
+ "type": "province",
+ "latitude": "35.74479800",
+ "longitude": "96.40773580"
+ },
+ {
+ "id": 2272,
+ "name": "Shaanxi",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "SN",
+ "type": "province",
+ "latitude": "35.39399080",
+ "longitude": "109.18800470"
+ },
+ {
+ "id": 2252,
+ "name": "Shandong",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "SD",
+ "type": "province",
+ "latitude": "37.80060640",
+ "longitude": "-122.26999180"
+ },
+ {
+ "id": 2249,
+ "name": "Shanghai",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "SH",
+ "type": "municipality",
+ "latitude": "31.23041600",
+ "longitude": "121.47370100"
+ },
+ {
+ "id": 2254,
+ "name": "Shanxi",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "SX",
+ "type": "province",
+ "latitude": "37.24256490",
+ "longitude": "111.85685860"
+ },
+ {
+ "id": 2277,
+ "name": "Sichuan",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "SC",
+ "type": "province",
+ "latitude": "30.26380320",
+ "longitude": "102.80547530"
+ },
+ {
+ "id": 2255,
+ "name": "Taiwan",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "TW",
+ "type": "province",
+ "latitude": "23.69781000",
+ "longitude": "120.96051500"
+ },
+ {
+ "id": 2276,
+ "name": "Tianjin",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "TJ",
+ "type": "municipality",
+ "latitude": "39.12522910",
+ "longitude": "117.01534350"
+ },
+ {
+ "id": 2263,
+ "name": "Xinjiang",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "XJ",
+ "type": "autonomous region",
+ "latitude": "42.52463570",
+ "longitude": "87.53958550"
+ },
+ {
+ "id": 2264,
+ "name": "Xizang",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "XZ",
+ "type": "autonomous region",
+ "latitude": "30.15336050",
+ "longitude": "88.78786780"
+ },
+ {
+ "id": 2260,
+ "name": "Yunnan",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "YN",
+ "type": "province",
+ "latitude": "24.47528470",
+ "longitude": "101.34310580"
+ },
+ {
+ "id": 2247,
+ "name": "Zhejiang",
+ "country_id": 45,
+ "country_code": "CN",
+ "country_name": "China",
+ "state_code": "ZJ",
+ "type": "province",
+ "latitude": "29.14164320",
+ "longitude": "119.78892480"
+ },
+ {
+ "id": 2895,
+ "name": "Amazonas",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "AMA",
+ "type": null,
+ "latitude": "-1.44291230",
+ "longitude": "-71.57239530"
+ },
+ {
+ "id": 2890,
+ "name": "Antioquia",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "ANT",
+ "type": null,
+ "latitude": "7.19860640",
+ "longitude": "-75.34121790"
+ },
+ {
+ "id": 2881,
+ "name": "Arauca",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "ARA",
+ "type": null,
+ "latitude": "6.54730600",
+ "longitude": "-71.00223110"
+ },
+ {
+ "id": 2900,
+ "name": "Archipiรฉlago de San Andrรฉs, Providencia y Santa Catalina",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "SAP",
+ "type": null,
+ "latitude": "12.55673240",
+ "longitude": "-81.71852530"
+ },
+ {
+ "id": 2880,
+ "name": "Atlรกntico",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "ATL",
+ "type": null,
+ "latitude": "10.69661590",
+ "longitude": "-74.87410450"
+ },
+ {
+ "id": 4921,
+ "name": "Bogotรก D.C.",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "DC",
+ "type": "capital district",
+ "latitude": "4.28204150",
+ "longitude": "-74.50270420"
+ },
+ {
+ "id": 2893,
+ "name": "Bolรญvar",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "BOL",
+ "type": null,
+ "latitude": "8.67043820",
+ "longitude": "-74.03001220"
+ },
+ {
+ "id": 2903,
+ "name": "Boyacรก",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "BOY",
+ "type": null,
+ "latitude": "5.45451100",
+ "longitude": "-73.36200300"
+ },
+ {
+ "id": 2887,
+ "name": "Caldas",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "CAL",
+ "type": null,
+ "latitude": "5.29826000",
+ "longitude": "-75.24790610"
+ },
+ {
+ "id": 2891,
+ "name": "Caquetรก",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "CAQ",
+ "type": null,
+ "latitude": "0.86989200",
+ "longitude": "-73.84190630"
+ },
+ {
+ "id": 2892,
+ "name": "Casanare",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "CAS",
+ "type": null,
+ "latitude": "5.75892690",
+ "longitude": "-71.57239530"
+ },
+ {
+ "id": 2884,
+ "name": "Cauca",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "CAU",
+ "type": null,
+ "latitude": "2.70498130",
+ "longitude": "-76.82596520"
+ },
+ {
+ "id": 2899,
+ "name": "Cesar",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "CES",
+ "type": null,
+ "latitude": "9.33729480",
+ "longitude": "-73.65362090"
+ },
+ {
+ "id": 2876,
+ "name": "Chocรณ",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "CHO",
+ "type": null,
+ "latitude": "5.25280330",
+ "longitude": "-76.82596520"
+ },
+ {
+ "id": 2898,
+ "name": "Cรณrdoba",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "COR",
+ "type": null,
+ "latitude": "8.04929300",
+ "longitude": "-75.57405000"
+ },
+ {
+ "id": 2875,
+ "name": "Cundinamarca",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "CUN",
+ "type": null,
+ "latitude": "5.02600300",
+ "longitude": "-74.03001220"
+ },
+ {
+ "id": 2882,
+ "name": "Guainรญa",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "GUA",
+ "type": null,
+ "latitude": "2.58539300",
+ "longitude": "-68.52471490"
+ },
+ {
+ "id": 2888,
+ "name": "Guaviare",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "GUV",
+ "type": null,
+ "latitude": "2.04392400",
+ "longitude": "-72.33111300"
+ },
+ {
+ "id": 4871,
+ "name": "Huila",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "HUI",
+ "type": "department",
+ "latitude": "2.53593490",
+ "longitude": "-75.52766990"
+ },
+ {
+ "id": 2889,
+ "name": "La Guajira",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "LAG",
+ "type": null,
+ "latitude": "11.35477430",
+ "longitude": "-72.52048270"
+ },
+ {
+ "id": 2886,
+ "name": "Magdalena",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "MAG",
+ "type": null,
+ "latitude": "10.41130140",
+ "longitude": "-74.40566120"
+ },
+ {
+ "id": 2878,
+ "name": "Meta",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "MET",
+ "type": null,
+ "latitude": "39.76732580",
+ "longitude": "-104.97535950"
+ },
+ {
+ "id": 2897,
+ "name": "Nariรฑo",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "NAR",
+ "type": null,
+ "latitude": "1.28915100",
+ "longitude": "-77.35794000"
+ },
+ {
+ "id": 2877,
+ "name": "Norte de Santander",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "NSA",
+ "type": null,
+ "latitude": "7.94628310",
+ "longitude": "-72.89880690"
+ },
+ {
+ "id": 2896,
+ "name": "Putumayo",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "PUT",
+ "type": null,
+ "latitude": "0.43595060",
+ "longitude": "-75.52766990"
+ },
+ {
+ "id": 2874,
+ "name": "Quindรญo",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "QUI",
+ "type": null,
+ "latitude": "4.46101910",
+ "longitude": "-75.66735600"
+ },
+ {
+ "id": 2879,
+ "name": "Risaralda",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "RIS",
+ "type": null,
+ "latitude": "5.31584750",
+ "longitude": "-75.99276520"
+ },
+ {
+ "id": 2901,
+ "name": "Santander",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "SAN",
+ "type": null,
+ "latitude": "6.64370760",
+ "longitude": "-73.65362090"
+ },
+ {
+ "id": 2902,
+ "name": "Sucre",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "SUC",
+ "type": null,
+ "latitude": "8.81397700",
+ "longitude": "-74.72328300"
+ },
+ {
+ "id": 2883,
+ "name": "Tolima",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "TOL",
+ "type": null,
+ "latitude": "4.09251680",
+ "longitude": "-75.15453810"
+ },
+ {
+ "id": 2904,
+ "name": "Valle del Cauca",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "VAC",
+ "type": null,
+ "latitude": "3.80088930",
+ "longitude": "-76.64127120"
+ },
+ {
+ "id": 2885,
+ "name": "Vaupรฉs",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "VAU",
+ "type": null,
+ "latitude": "0.85535610",
+ "longitude": "-70.81199530"
+ },
+ {
+ "id": 2894,
+ "name": "Vichada",
+ "country_id": 48,
+ "country_code": "CO",
+ "country_name": "Colombia",
+ "state_code": "VID",
+ "type": null,
+ "latitude": "4.42344520",
+ "longitude": "-69.28775350"
+ },
+ {
+ "id": 2821,
+ "name": "Anjouan",
+ "country_id": 49,
+ "country_code": "KM",
+ "country_name": "Comoros",
+ "state_code": "A",
+ "type": null,
+ "latitude": "-12.21381450",
+ "longitude": "44.43706060"
+ },
+ {
+ "id": 2822,
+ "name": "Grande Comore",
+ "country_id": 49,
+ "country_code": "KM",
+ "country_name": "Comoros",
+ "state_code": "G",
+ "type": null,
+ "latitude": "-11.71673380",
+ "longitude": "43.36807880"
+ },
+ {
+ "id": 2820,
+ "name": "Mohรฉli",
+ "country_id": 49,
+ "country_code": "KM",
+ "country_name": "Comoros",
+ "state_code": "M",
+ "type": null,
+ "latitude": "-12.33773760",
+ "longitude": "43.73340890"
+ },
+ {
+ "id": 2866,
+ "name": "Bouenza Department",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "11",
+ "type": null,
+ "latitude": "-4.11280790",
+ "longitude": "13.72891670"
+ },
+ {
+ "id": 2870,
+ "name": "Brazzaville",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "BZV",
+ "type": null,
+ "latitude": "-4.26335970",
+ "longitude": "15.24288530"
+ },
+ {
+ "id": 2864,
+ "name": "Cuvette Department",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "8",
+ "type": null,
+ "latitude": "-0.28774460",
+ "longitude": "16.15809370"
+ },
+ {
+ "id": 2869,
+ "name": "Cuvette-Ouest Department",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "15",
+ "type": null,
+ "latitude": "0.14475500",
+ "longitude": "14.47233010"
+ },
+ {
+ "id": 2867,
+ "name": "Kouilou Department",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "5",
+ "type": null,
+ "latitude": "-4.14284130",
+ "longitude": "11.88917210"
+ },
+ {
+ "id": 2868,
+ "name": "Lรฉkoumou Department",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "2",
+ "type": null,
+ "latitude": "-3.17038200",
+ "longitude": "13.35872880"
+ },
+ {
+ "id": 2865,
+ "name": "Likouala Department",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "7",
+ "type": null,
+ "latitude": "2.04392400",
+ "longitude": "17.66888700"
+ },
+ {
+ "id": 2872,
+ "name": "Niari Department",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "9",
+ "type": null,
+ "latitude": "-3.18427000",
+ "longitude": "12.25479190"
+ },
+ {
+ "id": 2862,
+ "name": "Plateaux Department",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "14",
+ "type": null,
+ "latitude": "-2.06800880",
+ "longitude": "15.40680790"
+ },
+ {
+ "id": 2863,
+ "name": "Pointe-Noire",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "16",
+ "type": null,
+ "latitude": "-4.76916230",
+ "longitude": "11.86636200"
+ },
+ {
+ "id": 2873,
+ "name": "Pool Department",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "12",
+ "type": null,
+ "latitude": "-3.77626280",
+ "longitude": "14.84546190"
+ },
+ {
+ "id": 2871,
+ "name": "Sangha Department",
+ "country_id": 50,
+ "country_code": "CG",
+ "country_name": "Congo",
+ "state_code": "13",
+ "type": null,
+ "latitude": "1.46623280",
+ "longitude": "15.40680790"
+ },
+ {
+ "id": 1215,
+ "name": "Alajuela Province",
+ "country_id": 53,
+ "country_code": "CR",
+ "country_name": "Costa Rica",
+ "state_code": "A",
+ "type": null,
+ "latitude": "10.39158300",
+ "longitude": "-84.43827210"
+ },
+ {
+ "id": 1209,
+ "name": "Guanacaste Province",
+ "country_id": 53,
+ "country_code": "CR",
+ "country_name": "Costa Rica",
+ "state_code": "G",
+ "type": null,
+ "latitude": "10.62673990",
+ "longitude": "-85.44367060"
+ },
+ {
+ "id": 1212,
+ "name": "Heredia Province",
+ "country_id": 53,
+ "country_code": "CR",
+ "country_name": "Costa Rica",
+ "state_code": "H",
+ "type": null,
+ "latitude": "10.47352300",
+ "longitude": "-84.01674230"
+ },
+ {
+ "id": 1213,
+ "name": "Limรณn Province",
+ "country_id": 53,
+ "country_code": "CR",
+ "country_name": "Costa Rica",
+ "state_code": "L",
+ "type": null,
+ "latitude": "9.98963980",
+ "longitude": "-83.03324170"
+ },
+ {
+ "id": 1211,
+ "name": "Provincia de Cartago",
+ "country_id": 53,
+ "country_code": "CR",
+ "country_name": "Costa Rica",
+ "state_code": "C",
+ "type": null,
+ "latitude": "9.86223110",
+ "longitude": "-83.92141870"
+ },
+ {
+ "id": 1210,
+ "name": "Puntarenas Province",
+ "country_id": 53,
+ "country_code": "CR",
+ "country_name": "Costa Rica",
+ "state_code": "P",
+ "type": null,
+ "latitude": "9.21695310",
+ "longitude": "-83.33618800"
+ },
+ {
+ "id": 1214,
+ "name": "San Josรฉ Province",
+ "country_id": 53,
+ "country_code": "CR",
+ "country_name": "Costa Rica",
+ "state_code": "SJ",
+ "type": null,
+ "latitude": "9.91297270",
+ "longitude": "-84.07682940"
+ },
+ {
+ "id": 2634,
+ "name": "Abidjan",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "AB",
+ "type": null,
+ "latitude": "5.35995170",
+ "longitude": "-4.00825630"
+ },
+ {
+ "id": 2626,
+ "name": "Agnรฉby",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "16",
+ "type": null,
+ "latitude": "5.32245030",
+ "longitude": "-4.34495290"
+ },
+ {
+ "id": 2636,
+ "name": "Bafing Region",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "17",
+ "type": null,
+ "latitude": "8.32520470",
+ "longitude": "-7.52472430"
+ },
+ {
+ "id": 2643,
+ "name": "Bas-Sassandra District",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "BS",
+ "type": null,
+ "latitude": "5.27983560",
+ "longitude": "-6.15269850"
+ },
+ {
+ "id": 2635,
+ "name": "Bas-Sassandra Region",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "09",
+ "type": null,
+ "latitude": "5.35679160",
+ "longitude": "-6.74939930"
+ },
+ {
+ "id": 2654,
+ "name": "Comoรฉ District",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "CM",
+ "type": null,
+ "latitude": "5.55279300",
+ "longitude": "-3.25836260"
+ },
+ {
+ "id": 2644,
+ "name": "Denguรฉlรฉ District",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "DN",
+ "type": null,
+ "latitude": "48.07077630",
+ "longitude": "-68.56093410"
+ },
+ {
+ "id": 2642,
+ "name": "Denguรฉlรฉ Region",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "10",
+ "type": null,
+ "latitude": "9.46623720",
+ "longitude": "-7.43813550"
+ },
+ {
+ "id": 2645,
+ "name": "Dix-Huit Montagnes",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "06",
+ "type": null,
+ "latitude": "7.37623730",
+ "longitude": "-7.43813550"
+ },
+ {
+ "id": 2633,
+ "name": "Fromager",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "18",
+ "type": null,
+ "latitude": "45.54502130",
+ "longitude": "-73.60462230"
+ },
+ {
+ "id": 2651,
+ "name": "Gรดh-Djiboua District",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "GD",
+ "type": null,
+ "latitude": "5.87113930",
+ "longitude": "-5.56172790"
+ },
+ {
+ "id": 2638,
+ "name": "Haut-Sassandra",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "02",
+ "type": null,
+ "latitude": "6.87578480",
+ "longitude": "-6.57833870"
+ },
+ {
+ "id": 2632,
+ "name": "Lacs District",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "LC",
+ "type": null,
+ "latitude": "48.19801690",
+ "longitude": "-80.45644120"
+ },
+ {
+ "id": 2640,
+ "name": "Lacs Region",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "07",
+ "type": null,
+ "latitude": "47.73958660",
+ "longitude": "-70.41866520"
+ },
+ {
+ "id": 2627,
+ "name": "Lagunes District",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "LG",
+ "type": null,
+ "latitude": "5.88273340",
+ "longitude": "-4.23333550"
+ },
+ {
+ "id": 2639,
+ "name": "Lagunes region",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "01",
+ "type": null,
+ "latitude": "5.88273340",
+ "longitude": "-4.23333550"
+ },
+ {
+ "id": 2631,
+ "name": "Marahouรฉ Region",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "12",
+ "type": null,
+ "latitude": "6.88462070",
+ "longitude": "-5.89871390"
+ },
+ {
+ "id": 2629,
+ "name": "Montagnes District",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "MG",
+ "type": null,
+ "latitude": "7.37623730",
+ "longitude": "-7.43813550"
+ },
+ {
+ "id": 2646,
+ "name": "Moyen-Cavally",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "19",
+ "type": null,
+ "latitude": "6.52087930",
+ "longitude": "-7.61142170"
+ },
+ {
+ "id": 2630,
+ "name": "Moyen-Comoรฉ",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "05",
+ "type": null,
+ "latitude": "6.65149170",
+ "longitude": "-3.50034540"
+ },
+ {
+ "id": 2655,
+ "name": "N'zi-Comoรฉ",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "11",
+ "type": null,
+ "latitude": "7.24567490",
+ "longitude": "-4.23333550"
+ },
+ {
+ "id": 2648,
+ "name": "Sassandra-Marahouรฉ District",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "SM",
+ "type": null,
+ "latitude": "6.88033480",
+ "longitude": "-6.23759470"
+ },
+ {
+ "id": 2625,
+ "name": "Savanes Region",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "03",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2628,
+ "name": "Sud-Bandama",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "15",
+ "type": null,
+ "latitude": "5.53570830",
+ "longitude": "-5.56172790"
+ },
+ {
+ "id": 2652,
+ "name": "Sud-Comoรฉ",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "13",
+ "type": null,
+ "latitude": "5.55279300",
+ "longitude": "-3.25836260"
+ },
+ {
+ "id": 2637,
+ "name": "Vallรฉe du Bandama District",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "VB",
+ "type": null,
+ "latitude": "8.27897800",
+ "longitude": "-4.89356270"
+ },
+ {
+ "id": 2647,
+ "name": "Vallรฉe du Bandama Region",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "04",
+ "type": null,
+ "latitude": "8.27897800",
+ "longitude": "-4.89356270"
+ },
+ {
+ "id": 2650,
+ "name": "Woroba District",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "WR",
+ "type": null,
+ "latitude": "8.24913720",
+ "longitude": "-6.92091350"
+ },
+ {
+ "id": 2649,
+ "name": "Worodougou",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "14",
+ "type": null,
+ "latitude": "8.25489620",
+ "longitude": "-6.57833870"
+ },
+ {
+ "id": 2653,
+ "name": "Yamoussoukro",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "YM",
+ "type": null,
+ "latitude": "6.82762280",
+ "longitude": "-5.28934330"
+ },
+ {
+ "id": 2641,
+ "name": "Zanzan Region",
+ "country_id": 54,
+ "country_code": "CI",
+ "country_name": "Cote D'Ivoire (Ivory Coast)",
+ "state_code": "ZZ",
+ "type": null,
+ "latitude": "8.82079040",
+ "longitude": "-3.41955270"
+ },
+ {
+ "id": 734,
+ "name": "Bjelovar-Bilogora",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "07",
+ "type": "county",
+ "latitude": "45.89879720",
+ "longitude": "16.84230930"
+ },
+ {
+ "id": 737,
+ "name": "Brod-Posavina",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "12",
+ "type": "county",
+ "latitude": "45.26379510",
+ "longitude": "17.32645620"
+ },
+ {
+ "id": 728,
+ "name": "Dubrovnik-Neretva",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "19",
+ "type": "county",
+ "latitude": "43.07665880",
+ "longitude": "17.52684710"
+ },
+ {
+ "id": 743,
+ "name": "Istria",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "18",
+ "type": "county",
+ "latitude": "45.12864550",
+ "longitude": "13.90154200"
+ },
+ {
+ "id": 5069,
+ "name": "Karlovac",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "04",
+ "type": "county",
+ "latitude": "45.26133520",
+ "longitude": "15.52542016"
+ },
+ {
+ "id": 742,
+ "name": "Koprivnica-Kriลพevci",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "06",
+ "type": "county",
+ "latitude": "46.15689190",
+ "longitude": "16.83908260"
+ },
+ {
+ "id": 729,
+ "name": "Krapina-Zagorje",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "02",
+ "type": "county",
+ "latitude": "46.10133930",
+ "longitude": "15.88096930"
+ },
+ {
+ "id": 731,
+ "name": "Lika-Senj",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "09",
+ "type": "county",
+ "latitude": "44.61922180",
+ "longitude": "15.47016080"
+ },
+ {
+ "id": 726,
+ "name": "Meฤimurje",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "20",
+ "type": "county",
+ "latitude": "46.37666440",
+ "longitude": "16.42132980"
+ },
+ {
+ "id": 740,
+ "name": "Osijek-Baranja",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "14",
+ "type": "county",
+ "latitude": "45.55764280",
+ "longitude": "18.39421410"
+ },
+ {
+ "id": 724,
+ "name": "Poลพega-Slavonia",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "11",
+ "type": "county",
+ "latitude": "45.34178680",
+ "longitude": "17.81143590"
+ },
+ {
+ "id": 735,
+ "name": "Primorje-Gorski Kotar",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "08",
+ "type": "county",
+ "latitude": "45.31739960",
+ "longitude": "14.81674660"
+ },
+ {
+ "id": 730,
+ "name": "ล ibenik-Knin",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "15",
+ "type": "county",
+ "latitude": "43.92814850",
+ "longitude": "16.10376940"
+ },
+ {
+ "id": 733,
+ "name": "Sisak-Moslavina",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "03",
+ "type": "county",
+ "latitude": "45.38379260",
+ "longitude": "16.53809940"
+ },
+ {
+ "id": 725,
+ "name": "Split-Dalmatia",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "17",
+ "type": "county",
+ "latitude": "43.52403280",
+ "longitude": "16.81783770"
+ },
+ {
+ "id": 739,
+ "name": "Varaลพdin",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "05",
+ "type": "county",
+ "latitude": "46.23174730",
+ "longitude": "16.33605590"
+ },
+ {
+ "id": 732,
+ "name": "Virovitica-Podravina",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "10",
+ "type": "county",
+ "latitude": "45.65579850",
+ "longitude": "17.79324720"
+ },
+ {
+ "id": 741,
+ "name": "Vukovar-Syrmia",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "16",
+ "type": "county",
+ "latitude": "45.17735520",
+ "longitude": "18.80535270"
+ },
+ {
+ "id": 727,
+ "name": "Zadar",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "13",
+ "type": "county",
+ "latitude": "44.14693900",
+ "longitude": "15.61649430"
+ },
+ {
+ "id": 736,
+ "name": "Zagreb",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "01",
+ "type": "county",
+ "latitude": "45.87066120",
+ "longitude": "16.39549100"
+ },
+ {
+ "id": 738,
+ "name": "Zagreb",
+ "country_id": 55,
+ "country_code": "HR",
+ "country_name": "Croatia",
+ "state_code": "21",
+ "type": "city",
+ "latitude": "45.81501080",
+ "longitude": "15.98191890"
+ },
+ {
+ "id": 283,
+ "name": "Artemisa Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "15",
+ "type": null,
+ "latitude": "22.75229030",
+ "longitude": "-82.99316070"
+ },
+ {
+ "id": 286,
+ "name": "Camagรผey Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "09",
+ "type": null,
+ "latitude": "21.21672470",
+ "longitude": "-77.74520810"
+ },
+ {
+ "id": 282,
+ "name": "Ciego de รvila Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "08",
+ "type": null,
+ "latitude": "21.93295150",
+ "longitude": "-78.56608520"
+ },
+ {
+ "id": 287,
+ "name": "Cienfuegos Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "06",
+ "type": null,
+ "latitude": "22.23797830",
+ "longitude": "-80.36586500"
+ },
+ {
+ "id": 275,
+ "name": "Granma Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "12",
+ "type": null,
+ "latitude": "20.38449020",
+ "longitude": "-76.64127120"
+ },
+ {
+ "id": 285,
+ "name": "Guantรกnamo Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "14",
+ "type": null,
+ "latitude": "20.14559170",
+ "longitude": "-74.87410450"
+ },
+ {
+ "id": 272,
+ "name": "Havana Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "03",
+ "type": null,
+ "latitude": "23.05406980",
+ "longitude": "-82.34518900"
+ },
+ {
+ "id": 279,
+ "name": "Holguรญn Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "11",
+ "type": null,
+ "latitude": "20.78378930",
+ "longitude": "-75.80690820"
+ },
+ {
+ "id": 278,
+ "name": "Isla de la Juventud",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "99",
+ "type": null,
+ "latitude": "21.70847370",
+ "longitude": "-82.82202320"
+ },
+ {
+ "id": 281,
+ "name": "Las Tunas Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "10",
+ "type": null,
+ "latitude": "21.06051620",
+ "longitude": "-76.91820970"
+ },
+ {
+ "id": 284,
+ "name": "Matanzas Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "04",
+ "type": null,
+ "latitude": "22.57671230",
+ "longitude": "-81.33994140"
+ },
+ {
+ "id": 276,
+ "name": "Mayabeque Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "16",
+ "type": null,
+ "latitude": "22.89265290",
+ "longitude": "-81.95348150"
+ },
+ {
+ "id": 277,
+ "name": "Pinar del Rรญo Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "01",
+ "type": null,
+ "latitude": "22.40762560",
+ "longitude": "-83.84730150"
+ },
+ {
+ "id": 274,
+ "name": "Sancti Spรญritus Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "07",
+ "type": null,
+ "latitude": "21.99382140",
+ "longitude": "-79.47038850"
+ },
+ {
+ "id": 273,
+ "name": "Santiago de Cuba Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "13",
+ "type": null,
+ "latitude": "20.23976820",
+ "longitude": "-75.99276520"
+ },
+ {
+ "id": 280,
+ "name": "Villa Clara Province",
+ "country_id": 56,
+ "country_code": "CU",
+ "country_name": "Cuba",
+ "state_code": "05",
+ "type": null,
+ "latitude": "22.49372040",
+ "longitude": "-79.91927020"
+ },
+ {
+ "id": 749,
+ "name": "Famagusta District (Maฤusa)",
+ "country_id": 57,
+ "country_code": "CY",
+ "country_name": "Cyprus",
+ "state_code": "04",
+ "type": "district",
+ "latitude": "35.28570230",
+ "longitude": "33.84112880"
+ },
+ {
+ "id": 744,
+ "name": "Kyrenia District (Keryneia)",
+ "country_id": 57,
+ "country_code": "CY",
+ "country_name": "Cyprus",
+ "state_code": "06",
+ "type": "district",
+ "latitude": "35.29919400",
+ "longitude": "33.23632460"
+ },
+ {
+ "id": 747,
+ "name": "Larnaca District (Larnaka)",
+ "country_id": 57,
+ "country_code": "CY",
+ "country_name": "Cyprus",
+ "state_code": "03",
+ "type": "district",
+ "latitude": "34.85072060",
+ "longitude": "33.48319060"
+ },
+ {
+ "id": 748,
+ "name": "Limassol District (Leymasun)",
+ "country_id": 57,
+ "country_code": "CY",
+ "country_name": "Cyprus",
+ "state_code": "02",
+ "type": "district",
+ "latitude": "34.70713010",
+ "longitude": "33.02261740"
+ },
+ {
+ "id": 745,
+ "name": "Nicosia District (Lefkoลa)",
+ "country_id": 57,
+ "country_code": "CY",
+ "country_name": "Cyprus",
+ "state_code": "01",
+ "type": "district",
+ "latitude": "35.18556590",
+ "longitude": "33.38227640"
+ },
+ {
+ "id": 746,
+ "name": "Paphos District (Pafos)",
+ "country_id": 57,
+ "country_code": "CY",
+ "country_name": "Cyprus",
+ "state_code": "05",
+ "type": "district",
+ "latitude": "34.91645940",
+ "longitude": "32.49200880"
+ },
+ {
+ "id": 4627,
+ "name": "Beneลกov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "201",
+ "type": null,
+ "latitude": "49.69008280",
+ "longitude": "14.77643990"
+ },
+ {
+ "id": 4620,
+ "name": "Beroun",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "202",
+ "type": null,
+ "latitude": "49.95734280",
+ "longitude": "13.98407150"
+ },
+ {
+ "id": 4615,
+ "name": "Blansko",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "641",
+ "type": null,
+ "latitude": "49.36485020",
+ "longitude": "16.64775520"
+ },
+ {
+ "id": 4542,
+ "name": "Bลeclav",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "644",
+ "type": null,
+ "latitude": "48.75314000",
+ "longitude": "16.88251690"
+ },
+ {
+ "id": 4568,
+ "name": "Brno-mฤsto",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "642",
+ "type": null,
+ "latitude": "49.19506020",
+ "longitude": "16.60683710"
+ },
+ {
+ "id": 4545,
+ "name": "Brno-venkov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "643",
+ "type": null,
+ "latitude": "49.12501380",
+ "longitude": "16.45588240"
+ },
+ {
+ "id": 4644,
+ "name": "Bruntรกl",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "801",
+ "type": null,
+ "latitude": "49.98817670",
+ "longitude": "17.46369410"
+ },
+ {
+ "id": 4633,
+ "name": "ฤeskรก Lรญpa",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "511",
+ "type": null,
+ "latitude": "50.67852010",
+ "longitude": "14.53969910"
+ },
+ {
+ "id": 4556,
+ "name": "ฤeskรฉ Budฤjovice",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "311",
+ "type": null,
+ "latitude": "48.97755530",
+ "longitude": "14.51507470"
+ },
+ {
+ "id": 4543,
+ "name": "ฤeskรฝ Krumlov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "312",
+ "type": null,
+ "latitude": "48.81273540",
+ "longitude": "14.31746570"
+ },
+ {
+ "id": 4573,
+ "name": "Cheb",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "411",
+ "type": null,
+ "latitude": "50.07953340",
+ "longitude": "12.36986360"
+ },
+ {
+ "id": 4553,
+ "name": "Chomutov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "422",
+ "type": null,
+ "latitude": "50.45838720",
+ "longitude": "13.30179100"
+ },
+ {
+ "id": 4634,
+ "name": "Chrudim",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "531",
+ "type": null,
+ "latitude": "49.88302160",
+ "longitude": "15.82908660"
+ },
+ {
+ "id": 4609,
+ "name": "Dฤฤรญn",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "421",
+ "type": null,
+ "latitude": "50.77255630",
+ "longitude": "14.21276120"
+ },
+ {
+ "id": 4641,
+ "name": "Domaลพlice",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "321",
+ "type": null,
+ "latitude": "49.43970270",
+ "longitude": "12.93114350"
+ },
+ {
+ "id": 4559,
+ "name": "Frรฝdek-Mรญstek",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "802",
+ "type": null,
+ "latitude": "49.68193050",
+ "longitude": "18.36732160"
+ },
+ {
+ "id": 4611,
+ "name": "Havlรญฤkลฏv Brod",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "631",
+ "type": null,
+ "latitude": "49.60433640",
+ "longitude": "15.57965520"
+ },
+ {
+ "id": 4561,
+ "name": "Hodonรญn",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "645",
+ "type": null,
+ "latitude": "48.85293910",
+ "longitude": "17.12600250"
+ },
+ {
+ "id": 4580,
+ "name": "Hradec Krรกlovรฉ",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "521",
+ "type": null,
+ "latitude": "50.24148050",
+ "longitude": "15.67430000"
+ },
+ {
+ "id": 4612,
+ "name": "Jablonec nad Nisou",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "512",
+ "type": null,
+ "latitude": "50.72205280",
+ "longitude": "15.17031350"
+ },
+ {
+ "id": 4625,
+ "name": "Jesenรญk",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "711",
+ "type": null,
+ "latitude": "50.22462490",
+ "longitude": "17.19804710"
+ },
+ {
+ "id": 4640,
+ "name": "Jiฤรญn",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "522",
+ "type": null,
+ "latitude": "50.43533250",
+ "longitude": "15.36104400"
+ },
+ {
+ "id": 4613,
+ "name": "Jihlava",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "632",
+ "type": null,
+ "latitude": "49.39837820",
+ "longitude": "15.58704150"
+ },
+ {
+ "id": 4639,
+ "name": "Jihoฤeskรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "31",
+ "type": null,
+ "latitude": "48.94577890",
+ "longitude": "14.44160550"
+ },
+ {
+ "id": 4602,
+ "name": "Jihomoravskรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "64",
+ "type": null,
+ "latitude": "48.95445280",
+ "longitude": "16.76768990"
+ },
+ {
+ "id": 4624,
+ "name": "Jindลichลฏv Hradec",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "313",
+ "type": null,
+ "latitude": "49.14448230",
+ "longitude": "15.00613890"
+ },
+ {
+ "id": 4581,
+ "name": "Karlovarskรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "41",
+ "type": null,
+ "latitude": "50.14350000",
+ "longitude": "12.75018990"
+ },
+ {
+ "id": 4604,
+ "name": "Karlovy Vary",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "412",
+ "type": null,
+ "latitude": "50.14350000",
+ "longitude": "12.75018990"
+ },
+ {
+ "id": 4586,
+ "name": "Karvinรก",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "803",
+ "type": null,
+ "latitude": "49.85665240",
+ "longitude": "18.54321860"
+ },
+ {
+ "id": 4631,
+ "name": "Kladno",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "203",
+ "type": null,
+ "latitude": "50.19402580",
+ "longitude": "14.10436570"
+ },
+ {
+ "id": 4591,
+ "name": "Klatovy",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "322",
+ "type": null,
+ "latitude": "49.39555490",
+ "longitude": "13.29509370"
+ },
+ {
+ "id": 4618,
+ "name": "Kolรญn",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "204",
+ "type": null,
+ "latitude": "49.98832930",
+ "longitude": "15.05519770"
+ },
+ {
+ "id": 4575,
+ "name": "Kraj Vysoฤina",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "63",
+ "type": null,
+ "latitude": "49.44900520",
+ "longitude": "15.64059340"
+ },
+ {
+ "id": 4614,
+ "name": "Krรกlovรฉhradeckรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "52",
+ "type": null,
+ "latitude": "50.35124840",
+ "longitude": "15.79764590"
+ },
+ {
+ "id": 4593,
+ "name": "Kromฤลรญลพ",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "721",
+ "type": null,
+ "latitude": "49.29165820",
+ "longitude": "17.39938000"
+ },
+ {
+ "id": 4923,
+ "name": "Kutnรก Hora",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "205",
+ "type": null,
+ "latitude": "49.94920890",
+ "longitude": "15.24704400"
+ },
+ {
+ "id": 4590,
+ "name": "Liberec",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "513",
+ "type": null,
+ "latitude": "50.75641010",
+ "longitude": "14.99650410"
+ },
+ {
+ "id": 4601,
+ "name": "Libereckรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "51",
+ "type": null,
+ "latitude": "50.65942400",
+ "longitude": "14.76324240"
+ },
+ {
+ "id": 4605,
+ "name": "Litomฤลice",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "423",
+ "type": null,
+ "latitude": "50.53841970",
+ "longitude": "14.13054580"
+ },
+ {
+ "id": 4617,
+ "name": "Louny",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "424",
+ "type": null,
+ "latitude": "50.35398120",
+ "longitude": "13.80335510"
+ },
+ {
+ "id": 4638,
+ "name": "Mฤlnรญk",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "206",
+ "type": null,
+ "latitude": "50.31044150",
+ "longitude": "14.51792230"
+ },
+ {
+ "id": 4643,
+ "name": "Mladรก Boleslav",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "207",
+ "type": null,
+ "latitude": "50.42523170",
+ "longitude": "14.93624770"
+ },
+ {
+ "id": 4600,
+ "name": "Moravskoslezskรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "80",
+ "type": null,
+ "latitude": "49.73053270",
+ "longitude": "18.23326370"
+ },
+ {
+ "id": 4629,
+ "name": "Most",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "425",
+ "type": null,
+ "latitude": "37.15540830",
+ "longitude": "-94.29488840"
+ },
+ {
+ "id": 4550,
+ "name": "Nรกchod",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "523",
+ "type": null,
+ "latitude": "50.41457220",
+ "longitude": "16.16563470"
+ },
+ {
+ "id": 4548,
+ "name": "Novรฝ Jiฤรญn",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "804",
+ "type": null,
+ "latitude": "49.59432510",
+ "longitude": "18.01353560"
+ },
+ {
+ "id": 4582,
+ "name": "Nymburk",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "208",
+ "type": null,
+ "latitude": "50.18558160",
+ "longitude": "15.04366040"
+ },
+ {
+ "id": 4574,
+ "name": "Olomouc",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "712",
+ "type": null,
+ "latitude": "49.59377800",
+ "longitude": "17.25087870"
+ },
+ {
+ "id": 4589,
+ "name": "Olomouckรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "71",
+ "type": null,
+ "latitude": "49.65865490",
+ "longitude": "17.08114060"
+ },
+ {
+ "id": 4623,
+ "name": "Opava",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "805",
+ "type": null,
+ "latitude": "49.90837570",
+ "longitude": "17.91633800"
+ },
+ {
+ "id": 4584,
+ "name": "Ostrava-mฤsto",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "806",
+ "type": null,
+ "latitude": "49.82092260",
+ "longitude": "18.26252430"
+ },
+ {
+ "id": 4547,
+ "name": "Pardubice",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "532",
+ "type": null,
+ "latitude": "49.94444790",
+ "longitude": "16.28569160"
+ },
+ {
+ "id": 4588,
+ "name": "Pardubickรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "53",
+ "type": null,
+ "latitude": "49.94444790",
+ "longitude": "16.28569160"
+ },
+ {
+ "id": 4645,
+ "name": "Pelhลimov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "633",
+ "type": null,
+ "latitude": "49.43062070",
+ "longitude": "15.22298300"
+ },
+ {
+ "id": 4560,
+ "name": "Pรญsek",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "314",
+ "type": null,
+ "latitude": "49.34199380",
+ "longitude": "14.24697600"
+ },
+ {
+ "id": 4608,
+ "name": "Plzeล-jih",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "324",
+ "type": null,
+ "latitude": "49.59048850",
+ "longitude": "13.57158610"
+ },
+ {
+ "id": 4544,
+ "name": "Plzeล-mฤsto",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "323",
+ "type": null,
+ "latitude": "49.73843140",
+ "longitude": "13.37363710"
+ },
+ {
+ "id": 4564,
+ "name": "Plzeล-sever",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "325",
+ "type": null,
+ "latitude": "49.87748930",
+ "longitude": "13.25374280"
+ },
+ {
+ "id": 4607,
+ "name": "Plzeลskรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "32",
+ "type": null,
+ "latitude": "49.41348120",
+ "longitude": "13.31572460"
+ },
+ {
+ "id": 4578,
+ "name": "Prachatice",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "315",
+ "type": null,
+ "latitude": "49.01091000",
+ "longitude": "14.00000050"
+ },
+ {
+ "id": 4606,
+ "name": "Praha-vรฝchod",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "209",
+ "type": null,
+ "latitude": "49.93893070",
+ "longitude": "14.79244720"
+ },
+ {
+ "id": 4619,
+ "name": "Praha-zรกpad",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "20A",
+ "type": null,
+ "latitude": "49.89352350",
+ "longitude": "14.32937790"
+ },
+ {
+ "id": 4598,
+ "name": "Praha, Hlavnรญ mฤsto",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "10",
+ "type": null,
+ "latitude": "50.07553810",
+ "longitude": "14.43780050"
+ },
+ {
+ "id": 4626,
+ "name": "Pลerov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "714",
+ "type": null,
+ "latitude": "49.46713560",
+ "longitude": "17.50773320"
+ },
+ {
+ "id": 4546,
+ "name": "Pลรญbram",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "20B",
+ "type": null,
+ "latitude": "49.69479590",
+ "longitude": "14.08238100"
+ },
+ {
+ "id": 4551,
+ "name": "Prostฤjov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "713",
+ "type": null,
+ "latitude": "49.44184010",
+ "longitude": "17.12779040"
+ },
+ {
+ "id": 4558,
+ "name": "Rakovnรญk",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "20C",
+ "type": null,
+ "latitude": "50.10612300",
+ "longitude": "13.73966230"
+ },
+ {
+ "id": 4583,
+ "name": "Rokycany",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "326",
+ "type": null,
+ "latitude": "49.82628270",
+ "longitude": "13.68749430"
+ },
+ {
+ "id": 4636,
+ "name": "Rychnov nad Knฤลพnou",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "524",
+ "type": null,
+ "latitude": "50.16596510",
+ "longitude": "16.27768420"
+ },
+ {
+ "id": 4596,
+ "name": "Semily",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "514",
+ "type": null,
+ "latitude": "50.60515760",
+ "longitude": "15.32814090"
+ },
+ {
+ "id": 4595,
+ "name": "Sokolov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "413",
+ "type": null,
+ "latitude": "50.20134340",
+ "longitude": "12.60546360"
+ },
+ {
+ "id": 4628,
+ "name": "Strakonice",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "316",
+ "type": null,
+ "latitude": "49.26040430",
+ "longitude": "13.91030850"
+ },
+ {
+ "id": 4554,
+ "name": "Stลedoฤeskรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "20",
+ "type": null,
+ "latitude": "49.87822230",
+ "longitude": "14.93629550"
+ },
+ {
+ "id": 4642,
+ "name": "ล umperk",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "715",
+ "type": null,
+ "latitude": "49.97784070",
+ "longitude": "16.97177540"
+ },
+ {
+ "id": 4571,
+ "name": "Svitavy",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "533",
+ "type": null,
+ "latitude": "49.75516290",
+ "longitude": "16.46918610"
+ },
+ {
+ "id": 4565,
+ "name": "Tรกbor",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "317",
+ "type": null,
+ "latitude": "49.36462930",
+ "longitude": "14.71912930"
+ },
+ {
+ "id": 4646,
+ "name": "Tachov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "327",
+ "type": null,
+ "latitude": "49.79878030",
+ "longitude": "12.63619210"
+ },
+ {
+ "id": 4621,
+ "name": "Teplice",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "426",
+ "type": null,
+ "latitude": "50.65846050",
+ "longitude": "13.75132270"
+ },
+ {
+ "id": 4597,
+ "name": "Tลebรญฤ",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "634",
+ "type": null,
+ "latitude": "49.21478690",
+ "longitude": "15.87955160"
+ },
+ {
+ "id": 4579,
+ "name": "Trutnov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "525",
+ "type": null,
+ "latitude": "50.56538380",
+ "longitude": "15.90909230"
+ },
+ {
+ "id": 4592,
+ "name": "Uherskรฉ Hradiลกtฤ",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "722",
+ "type": null,
+ "latitude": "49.05979690",
+ "longitude": "17.49585010"
+ },
+ {
+ "id": 4576,
+ "name": "รsteckรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "42",
+ "type": null,
+ "latitude": "50.61190370",
+ "longitude": "13.78700860"
+ },
+ {
+ "id": 4599,
+ "name": "รstรญ nad Labem",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "427",
+ "type": null,
+ "latitude": "50.61190370",
+ "longitude": "13.78700860"
+ },
+ {
+ "id": 4647,
+ "name": "รstรญ nad Orlicรญ",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "534",
+ "type": null,
+ "latitude": "49.97218010",
+ "longitude": "16.39966170"
+ },
+ {
+ "id": 4572,
+ "name": "Vsetรญn",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "723",
+ "type": null,
+ "latitude": "49.37932500",
+ "longitude": "18.06181620"
+ },
+ {
+ "id": 4622,
+ "name": "Vyลกkov",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "646",
+ "type": null,
+ "latitude": "49.21274450",
+ "longitude": "16.98559270"
+ },
+ {
+ "id": 4648,
+ "name": "ลฝฤรกr nad Sรกzavou",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "635",
+ "type": null,
+ "latitude": "49.56430120",
+ "longitude": "15.93910300"
+ },
+ {
+ "id": 4563,
+ "name": "Zlรญn",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "724",
+ "type": null,
+ "latitude": "49.16960520",
+ "longitude": "17.80252200"
+ },
+ {
+ "id": 4552,
+ "name": "Zlรญnskรฝ kraj",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "72",
+ "type": null,
+ "latitude": "49.21622960",
+ "longitude": "17.77203530"
+ },
+ {
+ "id": 4630,
+ "name": "Znojmo",
+ "country_id": 58,
+ "country_code": "CZ",
+ "country_name": "Czech Republic",
+ "state_code": "647",
+ "type": null,
+ "latitude": "48.92723270",
+ "longitude": "16.10378080"
+ },
+ {
+ "id": 2753,
+ "name": "Bas-Uรฉlรฉ",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "BU",
+ "type": null,
+ "latitude": "3.99010090",
+ "longitude": "24.90422080"
+ },
+ {
+ "id": 2744,
+ "name": "รquateur",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "EQ",
+ "type": null,
+ "latitude": "-1.83123900",
+ "longitude": "-78.18340600"
+ },
+ {
+ "id": 2750,
+ "name": "Haut-Katanga",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "HK",
+ "type": null,
+ "latitude": "-10.41020750",
+ "longitude": "27.54958460"
+ },
+ {
+ "id": 2758,
+ "name": "Haut-Lomami",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "HL",
+ "type": null,
+ "latitude": "-7.70527520",
+ "longitude": "24.90422080"
+ },
+ {
+ "id": 2734,
+ "name": "Haut-Uรฉlรฉ",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "HU",
+ "type": null,
+ "latitude": "3.58451540",
+ "longitude": "28.29943500"
+ },
+ {
+ "id": 2751,
+ "name": "Ituri",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "IT",
+ "type": null,
+ "latitude": "1.59576820",
+ "longitude": "29.41793240"
+ },
+ {
+ "id": 2757,
+ "name": "Kasaรฏ",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "KS",
+ "type": null,
+ "latitude": "-5.04719790",
+ "longitude": "20.71224650"
+ },
+ {
+ "id": 2742,
+ "name": "Kasaรฏ Central",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "KC",
+ "type": null,
+ "latitude": "-8.44045910",
+ "longitude": "20.41659340"
+ },
+ {
+ "id": 2735,
+ "name": "Kasaรฏ Oriental",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "KE",
+ "type": null,
+ "latitude": "-6.03362300",
+ "longitude": "23.57285010"
+ },
+ {
+ "id": 2741,
+ "name": "Kinshasa",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "KN",
+ "type": null,
+ "latitude": "-4.44193110",
+ "longitude": "15.26629310"
+ },
+ {
+ "id": 2746,
+ "name": "Kongo Central",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "BC",
+ "type": null,
+ "latitude": "-5.23656850",
+ "longitude": "13.91439900"
+ },
+ {
+ "id": 2740,
+ "name": "Kwango",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "KG",
+ "type": null,
+ "latitude": "-6.43374090",
+ "longitude": "17.66888700"
+ },
+ {
+ "id": 2759,
+ "name": "Kwilu",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "KL",
+ "type": null,
+ "latitude": "-5.11888250",
+ "longitude": "18.42760470"
+ },
+ {
+ "id": 2747,
+ "name": "Lomami",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "LO",
+ "type": null,
+ "latitude": "-6.14539310",
+ "longitude": "24.52426400"
+ },
+ {
+ "id": 4953,
+ "name": "Lualaba",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "LU",
+ "type": null,
+ "latitude": "-10.48086980",
+ "longitude": "25.62978160"
+ },
+ {
+ "id": 2755,
+ "name": "Mai-Ndombe",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "MN",
+ "type": null,
+ "latitude": "-2.63574340",
+ "longitude": "18.42760470"
+ },
+ {
+ "id": 2745,
+ "name": "Maniema",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "-3.07309290",
+ "longitude": "26.04138890"
+ },
+ {
+ "id": 2752,
+ "name": "Mongala",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "MO",
+ "type": null,
+ "latitude": "1.99623240",
+ "longitude": "21.47528510"
+ },
+ {
+ "id": 2749,
+ "name": "Nord-Kivu",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "NK",
+ "type": null,
+ "latitude": "-0.79177290",
+ "longitude": "29.04599270"
+ },
+ {
+ "id": 2739,
+ "name": "Nord-Ubangi",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "NU",
+ "type": null,
+ "latitude": "3.78787260",
+ "longitude": "21.47528510"
+ },
+ {
+ "id": 2743,
+ "name": "Sankuru",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "-2.84374530",
+ "longitude": "23.38235450"
+ },
+ {
+ "id": 2738,
+ "name": "Sud-Kivu",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "SK",
+ "type": null,
+ "latitude": "-3.01165800",
+ "longitude": "28.29943500"
+ },
+ {
+ "id": 2748,
+ "name": "Sud-Ubangi",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "SU",
+ "type": null,
+ "latitude": "3.22999420",
+ "longitude": "19.18800470"
+ },
+ {
+ "id": 2733,
+ "name": "Tanganyika",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "-6.27401180",
+ "longitude": "27.92490020"
+ },
+ {
+ "id": 2756,
+ "name": "Tshopo",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "TO",
+ "type": null,
+ "latitude": "0.54554620",
+ "longitude": "24.90422080"
+ },
+ {
+ "id": 2732,
+ "name": "Tshuapa",
+ "country_id": 51,
+ "country_code": "CD",
+ "country_name": "Democratic Republic of the Congo",
+ "state_code": "TU",
+ "type": null,
+ "latitude": "-0.99030230",
+ "longitude": "23.02888440"
+ },
+ {
+ "id": 1530,
+ "name": "Capital Region of Denmark",
+ "country_id": 59,
+ "country_code": "DK",
+ "country_name": "Denmark",
+ "state_code": "84",
+ "type": null,
+ "latitude": "55.67518120",
+ "longitude": "12.54932610"
+ },
+ {
+ "id": 1531,
+ "name": "Central Denmark Region",
+ "country_id": 59,
+ "country_code": "DK",
+ "country_name": "Denmark",
+ "state_code": "82",
+ "type": null,
+ "latitude": "56.30213900",
+ "longitude": "9.30277700"
+ },
+ {
+ "id": 1532,
+ "name": "North Denmark Region",
+ "country_id": 59,
+ "country_code": "DK",
+ "country_name": "Denmark",
+ "state_code": "81",
+ "type": null,
+ "latitude": "56.83074160",
+ "longitude": "9.49305270"
+ },
+ {
+ "id": 1529,
+ "name": "Region of Southern Denmark",
+ "country_id": 59,
+ "country_code": "DK",
+ "country_name": "Denmark",
+ "state_code": "83",
+ "type": null,
+ "latitude": "55.33077140",
+ "longitude": "9.09249030"
+ },
+ {
+ "id": 1528,
+ "name": "Region Zealand",
+ "country_id": 59,
+ "country_code": "DK",
+ "country_name": "Denmark",
+ "state_code": "85",
+ "type": null,
+ "latitude": "55.46325180",
+ "longitude": "11.72149790"
+ },
+ {
+ "id": 2933,
+ "name": "Ali Sabieh Region",
+ "country_id": 60,
+ "country_code": "DJ",
+ "country_name": "Djibouti",
+ "state_code": "AS",
+ "type": null,
+ "latitude": "11.19289730",
+ "longitude": "42.94169800"
+ },
+ {
+ "id": 2932,
+ "name": "Arta Region",
+ "country_id": 60,
+ "country_code": "DJ",
+ "country_name": "Djibouti",
+ "state_code": "AR",
+ "type": null,
+ "latitude": "11.52555280",
+ "longitude": "42.84794740"
+ },
+ {
+ "id": 2930,
+ "name": "Dikhil Region",
+ "country_id": 60,
+ "country_code": "DJ",
+ "country_name": "Djibouti",
+ "state_code": "DI",
+ "type": null,
+ "latitude": "11.10543360",
+ "longitude": "42.37047440"
+ },
+ {
+ "id": 2929,
+ "name": "Djibouti",
+ "country_id": 60,
+ "country_code": "DJ",
+ "country_name": "Djibouti",
+ "state_code": "DJ",
+ "type": null,
+ "latitude": "11.82513800",
+ "longitude": "42.59027500"
+ },
+ {
+ "id": 2928,
+ "name": "Obock Region",
+ "country_id": 60,
+ "country_code": "DJ",
+ "country_name": "Djibouti",
+ "state_code": "OB",
+ "type": null,
+ "latitude": "12.38956910",
+ "longitude": "43.01948970"
+ },
+ {
+ "id": 2931,
+ "name": "Tadjourah Region",
+ "country_id": 60,
+ "country_code": "DJ",
+ "country_name": "Djibouti",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "11.93388850",
+ "longitude": "42.39383750"
+ },
+ {
+ "id": 4082,
+ "name": "Saint Andrew Parish",
+ "country_id": 61,
+ "country_code": "DM",
+ "country_name": "Dominica",
+ "state_code": "02",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 4078,
+ "name": "Saint David Parish",
+ "country_id": 61,
+ "country_code": "DM",
+ "country_name": "Dominica",
+ "state_code": "03",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 4079,
+ "name": "Saint George Parish",
+ "country_id": 61,
+ "country_code": "DM",
+ "country_name": "Dominica",
+ "state_code": "04",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 4076,
+ "name": "Saint John Parish",
+ "country_id": 61,
+ "country_code": "DM",
+ "country_name": "Dominica",
+ "state_code": "05",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 4085,
+ "name": "Saint Joseph Parish",
+ "country_id": 61,
+ "country_code": "DM",
+ "country_name": "Dominica",
+ "state_code": "06",
+ "type": null,
+ "latitude": "39.02227120",
+ "longitude": "-94.71765040"
+ },
+ {
+ "id": 4083,
+ "name": "Saint Luke Parish",
+ "country_id": 61,
+ "country_code": "DM",
+ "country_name": "Dominica",
+ "state_code": "07",
+ "type": null,
+ "latitude": "42.10513630",
+ "longitude": "-80.05707220"
+ },
+ {
+ "id": 4077,
+ "name": "Saint Mark Parish",
+ "country_id": 61,
+ "country_code": "DM",
+ "country_name": "Dominica",
+ "state_code": "08",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 4080,
+ "name": "Saint Patrick Parish",
+ "country_id": 61,
+ "country_code": "DM",
+ "country_name": "Dominica",
+ "state_code": "09",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 4084,
+ "name": "Saint Paul Parish",
+ "country_id": 61,
+ "country_code": "DM",
+ "country_name": "Dominica",
+ "state_code": "10",
+ "type": null,
+ "latitude": "38.86146000",
+ "longitude": "-90.74356190"
+ },
+ {
+ "id": 4081,
+ "name": "Saint Peter Parish",
+ "country_id": 61,
+ "country_code": "DM",
+ "country_name": "Dominica",
+ "state_code": "11",
+ "type": null,
+ "latitude": "40.45241940",
+ "longitude": "-80.00850560"
+ },
+ {
+ "id": 4114,
+ "name": "Azua Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "02",
+ "type": null,
+ "latitude": "18.45527090",
+ "longitude": "-70.73809280"
+ },
+ {
+ "id": 4105,
+ "name": "Baoruco Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "03",
+ "type": null,
+ "latitude": "18.48798980",
+ "longitude": "-71.41822490"
+ },
+ {
+ "id": 4090,
+ "name": "Barahona Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "04",
+ "type": null,
+ "latitude": "18.21390660",
+ "longitude": "-71.10437590"
+ },
+ {
+ "id": 4107,
+ "name": "Dajabรณn Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "05",
+ "type": null,
+ "latitude": "19.54992410",
+ "longitude": "-71.70865140"
+ },
+ {
+ "id": 4095,
+ "name": "Distrito Nacional",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "01",
+ "type": null,
+ "latitude": "18.48605750",
+ "longitude": "-69.93121170"
+ },
+ {
+ "id": 4113,
+ "name": "Duarte Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "06",
+ "type": null,
+ "latitude": "19.20908230",
+ "longitude": "-70.02700040"
+ },
+ {
+ "id": 4086,
+ "name": "El Seibo Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "08",
+ "type": null,
+ "latitude": "18.76584960",
+ "longitude": "-69.04066800"
+ },
+ {
+ "id": 4102,
+ "name": "Espaillat Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "09",
+ "type": null,
+ "latitude": "19.62776580",
+ "longitude": "-70.27867750"
+ },
+ {
+ "id": 4106,
+ "name": "Hato Mayor Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "30",
+ "type": null,
+ "latitude": "18.76357990",
+ "longitude": "-69.25576370"
+ },
+ {
+ "id": 4089,
+ "name": "Hermanas Mirabal Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "19",
+ "type": null,
+ "latitude": "19.37475590",
+ "longitude": "-70.35132350"
+ },
+ {
+ "id": 4097,
+ "name": "Independencia",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "10",
+ "type": null,
+ "latitude": "32.63357480",
+ "longitude": "-115.42892940"
+ },
+ {
+ "id": 4109,
+ "name": "La Altagracia Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "11",
+ "type": null,
+ "latitude": "18.58502360",
+ "longitude": "-68.62010720"
+ },
+ {
+ "id": 4087,
+ "name": "La Romana Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "12",
+ "type": null,
+ "latitude": "18.43102710",
+ "longitude": "-68.98373730"
+ },
+ {
+ "id": 4116,
+ "name": "La Vega Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "13",
+ "type": null,
+ "latitude": "19.22115540",
+ "longitude": "-70.52887530"
+ },
+ {
+ "id": 4094,
+ "name": "Marรญa Trinidad Sรกnchez Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "14",
+ "type": null,
+ "latitude": "19.37345970",
+ "longitude": "-69.85144390"
+ },
+ {
+ "id": 4099,
+ "name": "Monseรฑor Nouel Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "28",
+ "type": null,
+ "latitude": "18.92152340",
+ "longitude": "-70.38368150"
+ },
+ {
+ "id": 4115,
+ "name": "Monte Cristi Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "15",
+ "type": null,
+ "latitude": "19.73968990",
+ "longitude": "-71.44339840"
+ },
+ {
+ "id": 4111,
+ "name": "Monte Plata Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "29",
+ "type": null,
+ "latitude": "18.80808780",
+ "longitude": "-69.78691460"
+ },
+ {
+ "id": 4101,
+ "name": "Pedernales Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "16",
+ "type": null,
+ "latitude": "17.85376260",
+ "longitude": "-71.33032090"
+ },
+ {
+ "id": 4096,
+ "name": "Peravia Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "17",
+ "type": null,
+ "latitude": "18.27865940",
+ "longitude": "-70.33358870"
+ },
+ {
+ "id": 4092,
+ "name": "Puerto Plata Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "18",
+ "type": null,
+ "latitude": "19.75432250",
+ "longitude": "-70.83328470"
+ },
+ {
+ "id": 4103,
+ "name": "Samanรก Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "20",
+ "type": null,
+ "latitude": "19.20583710",
+ "longitude": "-69.33629490"
+ },
+ {
+ "id": 4091,
+ "name": "San Cristรณbal Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "21",
+ "type": null,
+ "latitude": "18.41804140",
+ "longitude": "-70.10658490"
+ },
+ {
+ "id": 4112,
+ "name": "San Josรฉ de Ocoa Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "31",
+ "type": null,
+ "latitude": "18.54385800",
+ "longitude": "-70.50418160"
+ },
+ {
+ "id": 4098,
+ "name": "San Juan Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "22",
+ "type": null,
+ "latitude": "-31.52871270",
+ "longitude": "-68.53604030"
+ },
+ {
+ "id": 4110,
+ "name": "San Pedro de Macorรญs",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "23",
+ "type": null,
+ "latitude": "18.46266000",
+ "longitude": "-69.30512340"
+ },
+ {
+ "id": 4088,
+ "name": "Sรกnchez Ramรญrez Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "24",
+ "type": null,
+ "latitude": "19.05270600",
+ "longitude": "-70.14922640"
+ },
+ {
+ "id": 4108,
+ "name": "Santiago Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "25",
+ "type": null,
+ "latitude": "-33.45000000",
+ "longitude": "-70.66670000"
+ },
+ {
+ "id": 4100,
+ "name": "Santiago Rodrรญguez Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "26",
+ "type": null,
+ "latitude": "19.47131810",
+ "longitude": "-71.33958010"
+ },
+ {
+ "id": 4093,
+ "name": "Santo Domingo Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "32",
+ "type": null,
+ "latitude": "18.51042530",
+ "longitude": "-69.84040540"
+ },
+ {
+ "id": 4104,
+ "name": "Valverde Province",
+ "country_id": 62,
+ "country_code": "DO",
+ "country_name": "Dominican Republic",
+ "state_code": "27",
+ "type": null,
+ "latitude": "19.58812210",
+ "longitude": "-70.98033100"
+ },
+ {
+ "id": 4520,
+ "name": "Aileu municipality",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "AL",
+ "type": null,
+ "latitude": "-8.70439940",
+ "longitude": "125.60954740"
+ },
+ {
+ "id": 4518,
+ "name": "Ainaro Municipality",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "AN",
+ "type": null,
+ "latitude": "-9.01131710",
+ "longitude": "125.52200120"
+ },
+ {
+ "id": 4521,
+ "name": "Baucau Municipality",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "-8.47143080",
+ "longitude": "126.45759910"
+ },
+ {
+ "id": 4525,
+ "name": "Bobonaro Municipality",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "BO",
+ "type": null,
+ "latitude": "-8.96554060",
+ "longitude": "125.25879640"
+ },
+ {
+ "id": 4522,
+ "name": "Cova Lima Municipality",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "CO",
+ "type": null,
+ "latitude": "-9.26503750",
+ "longitude": "125.25879640"
+ },
+ {
+ "id": 4524,
+ "name": "Dili municipality",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "DI",
+ "type": null,
+ "latitude": "-8.24496130",
+ "longitude": "125.58766970"
+ },
+ {
+ "id": 4516,
+ "name": "Ermera District",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "ER",
+ "type": null,
+ "latitude": "-8.75248020",
+ "longitude": "125.39872940"
+ },
+ {
+ "id": 4523,
+ "name": "Lautรฉm Municipality",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "LA",
+ "type": null,
+ "latitude": "-8.36423070",
+ "longitude": "126.90438450"
+ },
+ {
+ "id": 4515,
+ "name": "Liquiรงรก Municipality",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "LI",
+ "type": null,
+ "latitude": "-8.66740950",
+ "longitude": "125.25879640"
+ },
+ {
+ "id": 4517,
+ "name": "Manatuto District",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "MT",
+ "type": null,
+ "latitude": "-8.51556080",
+ "longitude": "126.01592550"
+ },
+ {
+ "id": 4519,
+ "name": "Manufahi Municipality",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "MF",
+ "type": null,
+ "latitude": "-9.01454950",
+ "longitude": "125.82799590"
+ },
+ {
+ "id": 4514,
+ "name": "Viqueque Municipality",
+ "country_id": 63,
+ "country_code": "TL",
+ "country_name": "East Timor",
+ "state_code": "VI",
+ "type": null,
+ "latitude": "-8.85979180",
+ "longitude": "126.36335160"
+ },
+ {
+ "id": 2923,
+ "name": "Azuay",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "A",
+ "type": "province",
+ "latitude": "-2.89430680",
+ "longitude": "-78.99683440"
+ },
+ {
+ "id": 2920,
+ "name": "Bolรญvar",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "B",
+ "type": "province",
+ "latitude": "-1.70958280",
+ "longitude": "-79.04504290"
+ },
+ {
+ "id": 2917,
+ "name": "Caรฑar",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "F",
+ "type": "province",
+ "latitude": "-2.55893150",
+ "longitude": "-78.93881910"
+ },
+ {
+ "id": 2915,
+ "name": "Carchi",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "C",
+ "type": "province",
+ "latitude": "0.50269120",
+ "longitude": "-77.90425210"
+ },
+ {
+ "id": 2925,
+ "name": "Chimborazo",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "H",
+ "type": "province",
+ "latitude": "-1.66479950",
+ "longitude": "-78.65432550"
+ },
+ {
+ "id": 2921,
+ "name": "Cotopaxi",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "X",
+ "type": "province",
+ "latitude": "-0.83842060",
+ "longitude": "-78.66626780"
+ },
+ {
+ "id": 2924,
+ "name": "El Oro",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "O",
+ "type": "province",
+ "latitude": "-3.25924130",
+ "longitude": "-79.95835410"
+ },
+ {
+ "id": 2922,
+ "name": "Esmeraldas",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "E",
+ "type": "province",
+ "latitude": "0.96817890",
+ "longitude": "-79.65172020"
+ },
+ {
+ "id": 2905,
+ "name": "Galรกpagos",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "W",
+ "type": "province",
+ "latitude": "-0.95376910",
+ "longitude": "-90.96560190"
+ },
+ {
+ "id": 2914,
+ "name": "Guayas",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "G",
+ "type": "province",
+ "latitude": "-1.95748390",
+ "longitude": "-79.91927020"
+ },
+ {
+ "id": 2911,
+ "name": "Imbabura",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "I",
+ "type": "province",
+ "latitude": "0.34997680",
+ "longitude": "-78.12601290"
+ },
+ {
+ "id": 5068,
+ "name": "Loja",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "L",
+ "type": "province",
+ "latitude": "-3.99313000",
+ "longitude": "-79.20422000"
+ },
+ {
+ "id": 2910,
+ "name": "Los Rรญos",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "R",
+ "type": "province",
+ "latitude": "-1.02306070",
+ "longitude": "-79.46088970"
+ },
+ {
+ "id": 2913,
+ "name": "Manabรญ",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "M",
+ "type": "province",
+ "latitude": "-1.05434340",
+ "longitude": "-80.45264400"
+ },
+ {
+ "id": 2918,
+ "name": "Morona-Santiago",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "S",
+ "type": "province",
+ "latitude": "-2.30510620",
+ "longitude": "-78.11468660"
+ },
+ {
+ "id": 2916,
+ "name": "Napo",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "N",
+ "type": "province",
+ "latitude": "-0.99559640",
+ "longitude": "-77.81296840"
+ },
+ {
+ "id": 2926,
+ "name": "Orellana",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "D",
+ "type": "province",
+ "latitude": "-0.45451630",
+ "longitude": "-76.99502860"
+ },
+ {
+ "id": 2907,
+ "name": "Pastaza",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "Y",
+ "type": "province",
+ "latitude": "-1.48822650",
+ "longitude": "-78.00310570"
+ },
+ {
+ "id": 2927,
+ "name": "Pichincha",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "P",
+ "type": "province",
+ "latitude": "-0.14648470",
+ "longitude": "-78.47519450"
+ },
+ {
+ "id": 2912,
+ "name": "Santa Elena",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "SE",
+ "type": "province",
+ "latitude": "-2.22671050",
+ "longitude": "-80.85949900"
+ },
+ {
+ "id": 2919,
+ "name": "Santo Domingo de los Tsรกchilas",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "SD",
+ "type": "province",
+ "latitude": "-0.25218820",
+ "longitude": "-79.18793830"
+ },
+ {
+ "id": 2906,
+ "name": "Sucumbรญos",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "U",
+ "type": "province",
+ "latitude": "0.08892310",
+ "longitude": "-76.88975570"
+ },
+ {
+ "id": 2908,
+ "name": "Tungurahua",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "T",
+ "type": "province",
+ "latitude": "-1.26352840",
+ "longitude": "-78.56608520"
+ },
+ {
+ "id": 2909,
+ "name": "Zamora Chinchipe",
+ "country_id": 64,
+ "country_code": "EC",
+ "country_name": "Ecuador",
+ "state_code": "Z",
+ "type": "province",
+ "latitude": "-4.06558920",
+ "longitude": "-78.95035250"
+ },
+ {
+ "id": 3235,
+ "name": "Alexandria",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "ALX",
+ "type": null,
+ "latitude": "30.87605680",
+ "longitude": "29.74260400"
+ },
+ {
+ "id": 3225,
+ "name": "Aswan",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "ASN",
+ "type": null,
+ "latitude": "23.69664980",
+ "longitude": "32.71813750"
+ },
+ {
+ "id": 3236,
+ "name": "Asyut",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "AST",
+ "type": null,
+ "latitude": "27.21338310",
+ "longitude": "31.44561790"
+ },
+ {
+ "id": 3241,
+ "name": "Beheira",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "BH",
+ "type": null,
+ "latitude": "30.84809860",
+ "longitude": "30.34355060"
+ },
+ {
+ "id": 3230,
+ "name": "Beni Suef",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "BNS",
+ "type": null,
+ "latitude": "28.89388370",
+ "longitude": "31.44561790"
+ },
+ {
+ "id": 3223,
+ "name": "Cairo",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "C",
+ "type": null,
+ "latitude": "29.95375640",
+ "longitude": "31.53700030"
+ },
+ {
+ "id": 3245,
+ "name": "Dakahlia",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "DK",
+ "type": null,
+ "latitude": "31.16560440",
+ "longitude": "31.49131820"
+ },
+ {
+ "id": 3224,
+ "name": "Damietta",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "DT",
+ "type": null,
+ "latitude": "31.36257990",
+ "longitude": "31.67393710"
+ },
+ {
+ "id": 3238,
+ "name": "Faiyum",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "FYM",
+ "type": null,
+ "latitude": "29.30840210",
+ "longitude": "30.84284970"
+ },
+ {
+ "id": 3234,
+ "name": "Gharbia",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "GH",
+ "type": null,
+ "latitude": "30.87535560",
+ "longitude": "31.03351000"
+ },
+ {
+ "id": 3239,
+ "name": "Giza",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "GZ",
+ "type": null,
+ "latitude": "28.76662160",
+ "longitude": "29.23207840"
+ },
+ {
+ "id": 3244,
+ "name": "Ismailia",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "IS",
+ "type": null,
+ "latitude": "30.58309340",
+ "longitude": "32.26538870"
+ },
+ {
+ "id": 3222,
+ "name": "Kafr el-Sheikh",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "KFS",
+ "type": null,
+ "latitude": "31.30854440",
+ "longitude": "30.80394740"
+ },
+ {
+ "id": 3242,
+ "name": "Luxor",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "LX",
+ "type": null,
+ "latitude": "25.39444440",
+ "longitude": "32.49200880"
+ },
+ {
+ "id": 3231,
+ "name": "Matrouh",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "MT",
+ "type": null,
+ "latitude": "29.56963500",
+ "longitude": "26.41938900"
+ },
+ {
+ "id": 3243,
+ "name": "Minya",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "MN",
+ "type": null,
+ "latitude": "28.28472900",
+ "longitude": "30.52790960"
+ },
+ {
+ "id": 3228,
+ "name": "Monufia",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "MNF",
+ "type": null,
+ "latitude": "30.59724550",
+ "longitude": "30.98763210"
+ },
+ {
+ "id": 3246,
+ "name": "New Valley",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "WAD",
+ "type": null,
+ "latitude": "24.54556380",
+ "longitude": "27.17353160"
+ },
+ {
+ "id": 3227,
+ "name": "North Sinai",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "SIN",
+ "type": null,
+ "latitude": "30.28236500",
+ "longitude": "33.61757700"
+ },
+ {
+ "id": 3229,
+ "name": "Port Said",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "PTS",
+ "type": null,
+ "latitude": "31.07586060",
+ "longitude": "32.26538870"
+ },
+ {
+ "id": 3232,
+ "name": "Qalyubia",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "KB",
+ "type": null,
+ "latitude": "30.32923680",
+ "longitude": "31.21684660"
+ },
+ {
+ "id": 3247,
+ "name": "Qena",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "KN",
+ "type": null,
+ "latitude": "26.23460330",
+ "longitude": "32.98883190"
+ },
+ {
+ "id": 3240,
+ "name": "Red Sea",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "24.68263160",
+ "longitude": "34.15319470"
+ },
+ {
+ "id": 5067,
+ "name": "Sharqia",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "SHR",
+ "type": null,
+ "latitude": "30.67305450",
+ "longitude": "31.15932470"
+ },
+ {
+ "id": 3226,
+ "name": "Sohag",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "SHG",
+ "type": null,
+ "latitude": "26.69383400",
+ "longitude": "32.17460500"
+ },
+ {
+ "id": 3237,
+ "name": "South Sinai",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "JS",
+ "type": null,
+ "latitude": "29.31018280",
+ "longitude": "34.15319470"
+ },
+ {
+ "id": 3233,
+ "name": "Suez",
+ "country_id": 65,
+ "country_code": "EG",
+ "country_name": "Egypt",
+ "state_code": "SUZ",
+ "type": null,
+ "latitude": "29.36822550",
+ "longitude": "32.17460500"
+ },
+ {
+ "id": 4139,
+ "name": "Ahuachapรกn Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "AH",
+ "type": null,
+ "latitude": "13.82161480",
+ "longitude": "-89.92532330"
+ },
+ {
+ "id": 4132,
+ "name": "Cabaรฑas Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "CA",
+ "type": null,
+ "latitude": "13.86482880",
+ "longitude": "-88.74939980"
+ },
+ {
+ "id": 4131,
+ "name": "Chalatenango Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "CH",
+ "type": null,
+ "latitude": "14.19166480",
+ "longitude": "-89.17059980"
+ },
+ {
+ "id": 4137,
+ "name": "Cuscatlรกn Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "CU",
+ "type": null,
+ "latitude": "13.86619570",
+ "longitude": "-89.05615320"
+ },
+ {
+ "id": 4134,
+ "name": "La Libertad Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "LI",
+ "type": null,
+ "latitude": "13.68176610",
+ "longitude": "-89.36062980"
+ },
+ {
+ "id": 4136,
+ "name": "La Paz Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "PA",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 4138,
+ "name": "La Uniรณn Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "UN",
+ "type": null,
+ "latitude": "13.48864430",
+ "longitude": "-87.89424510"
+ },
+ {
+ "id": 4130,
+ "name": "Morazรกn Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "MO",
+ "type": null,
+ "latitude": "13.76820000",
+ "longitude": "-88.12913870"
+ },
+ {
+ "id": 4135,
+ "name": "San Miguel Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "SM",
+ "type": null,
+ "latitude": "13.44510410",
+ "longitude": "-88.24611830"
+ },
+ {
+ "id": 4133,
+ "name": "San Salvador Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "SS",
+ "type": null,
+ "latitude": "13.77399970",
+ "longitude": "-89.20867730"
+ },
+ {
+ "id": 4127,
+ "name": "San Vicente Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "SV",
+ "type": null,
+ "latitude": "13.58685610",
+ "longitude": "-88.74939980"
+ },
+ {
+ "id": 4128,
+ "name": "Santa Ana Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "14.14611210",
+ "longitude": "-89.51200840"
+ },
+ {
+ "id": 4140,
+ "name": "Sonsonate Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "SO",
+ "type": null,
+ "latitude": "13.68235800",
+ "longitude": "-89.66281110"
+ },
+ {
+ "id": 4129,
+ "name": "Usulutรกn Department",
+ "country_id": 66,
+ "country_code": "SV",
+ "country_name": "El Salvador",
+ "state_code": "US",
+ "type": null,
+ "latitude": "13.44706340",
+ "longitude": "-88.55653100"
+ },
+ {
+ "id": 3444,
+ "name": "Annobรณn Province",
+ "country_id": 67,
+ "country_code": "GQ",
+ "country_name": "Equatorial Guinea",
+ "state_code": "AN",
+ "type": null,
+ "latitude": "-1.42687820",
+ "longitude": "5.63528010"
+ },
+ {
+ "id": 3446,
+ "name": "Bioko Norte Province",
+ "country_id": 67,
+ "country_code": "GQ",
+ "country_name": "Equatorial Guinea",
+ "state_code": "BN",
+ "type": null,
+ "latitude": "3.65950720",
+ "longitude": "8.79218360"
+ },
+ {
+ "id": 3443,
+ "name": "Bioko Sur Province",
+ "country_id": 67,
+ "country_code": "GQ",
+ "country_name": "Equatorial Guinea",
+ "state_code": "BS",
+ "type": null,
+ "latitude": "3.42097850",
+ "longitude": "8.61606740"
+ },
+ {
+ "id": 3445,
+ "name": "Centro Sur Province",
+ "country_id": 67,
+ "country_code": "GQ",
+ "country_name": "Equatorial Guinea",
+ "state_code": "CS",
+ "type": null,
+ "latitude": "1.34360840",
+ "longitude": "10.43965600"
+ },
+ {
+ "id": 3442,
+ "name": "Insular Region",
+ "country_id": 67,
+ "country_code": "GQ",
+ "country_name": "Equatorial Guinea",
+ "state_code": "I",
+ "type": null,
+ "latitude": "37.09024000",
+ "longitude": "-95.71289100"
+ },
+ {
+ "id": 3439,
+ "name": "Kiรฉ-Ntem Province",
+ "country_id": 67,
+ "country_code": "GQ",
+ "country_name": "Equatorial Guinea",
+ "state_code": "KN",
+ "type": null,
+ "latitude": "2.02809300",
+ "longitude": "11.07117580"
+ },
+ {
+ "id": 3441,
+ "name": "Litoral Province",
+ "country_id": 67,
+ "country_code": "GQ",
+ "country_name": "Equatorial Guinea",
+ "state_code": "LI",
+ "type": null,
+ "latitude": "1.57502440",
+ "longitude": "9.81249350"
+ },
+ {
+ "id": 3438,
+ "name": "Rรญo Muni",
+ "country_id": 67,
+ "country_code": "GQ",
+ "country_name": "Equatorial Guinea",
+ "state_code": "C",
+ "type": null,
+ "latitude": "1.46106060",
+ "longitude": "9.67868940"
+ },
+ {
+ "id": 3440,
+ "name": "Wele-Nzas Province",
+ "country_id": 67,
+ "country_code": "GQ",
+ "country_name": "Equatorial Guinea",
+ "state_code": "WN",
+ "type": null,
+ "latitude": "1.41661620",
+ "longitude": "11.07117580"
+ },
+ {
+ "id": 3425,
+ "name": "Anseba Region",
+ "country_id": 68,
+ "country_code": "ER",
+ "country_name": "Eritrea",
+ "state_code": "AN",
+ "type": null,
+ "latitude": "16.47455310",
+ "longitude": "37.80876930"
+ },
+ {
+ "id": 3427,
+ "name": "Debub Region",
+ "country_id": 68,
+ "country_code": "ER",
+ "country_name": "Eritrea",
+ "state_code": "DU",
+ "type": null,
+ "latitude": "14.94786920",
+ "longitude": "39.15436770"
+ },
+ {
+ "id": 3428,
+ "name": "Gash-Barka Region",
+ "country_id": 68,
+ "country_code": "ER",
+ "country_name": "Eritrea",
+ "state_code": "GB",
+ "type": null,
+ "latitude": "15.40688250",
+ "longitude": "37.63866220"
+ },
+ {
+ "id": 3426,
+ "name": "Maekel Region",
+ "country_id": 68,
+ "country_code": "ER",
+ "country_name": "Eritrea",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "15.35514090",
+ "longitude": "38.86236830"
+ },
+ {
+ "id": 3424,
+ "name": "Northern Red Sea Region",
+ "country_id": 68,
+ "country_code": "ER",
+ "country_name": "Eritrea",
+ "state_code": "SK",
+ "type": null,
+ "latitude": "16.25839970",
+ "longitude": "38.82054540"
+ },
+ {
+ "id": 3429,
+ "name": "Southern Red Sea Region",
+ "country_id": 68,
+ "country_code": "ER",
+ "country_name": "Eritrea",
+ "state_code": "DK",
+ "type": null,
+ "latitude": "13.51371030",
+ "longitude": "41.76064720"
+ },
+ {
+ "id": 3567,
+ "name": "Harju County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "37",
+ "type": null,
+ "latitude": "59.33342390",
+ "longitude": "25.24669740"
+ },
+ {
+ "id": 3555,
+ "name": "Hiiu County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "39",
+ "type": null,
+ "latitude": "58.92395530",
+ "longitude": "22.59194680"
+ },
+ {
+ "id": 3569,
+ "name": "Ida-Viru County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "44",
+ "type": null,
+ "latitude": "59.25926630",
+ "longitude": "27.41365350"
+ },
+ {
+ "id": 3566,
+ "name": "Jรคrva County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "51",
+ "type": null,
+ "latitude": "58.88667130",
+ "longitude": "25.50006240"
+ },
+ {
+ "id": 3565,
+ "name": "Jรตgeva County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "49",
+ "type": null,
+ "latitude": "58.75061430",
+ "longitude": "26.36048780"
+ },
+ {
+ "id": 3568,
+ "name": "Lรครคne County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "57",
+ "type": null,
+ "latitude": "58.97227420",
+ "longitude": "23.87408340"
+ },
+ {
+ "id": 3564,
+ "name": "Lรครคne-Viru County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "59",
+ "type": null,
+ "latitude": "59.30188160",
+ "longitude": "26.32803120"
+ },
+ {
+ "id": 3562,
+ "name": "Pรคrnu County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "67",
+ "type": null,
+ "latitude": "58.52619520",
+ "longitude": "24.40201590"
+ },
+ {
+ "id": 3563,
+ "name": "Pรตlva County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "65",
+ "type": null,
+ "latitude": "58.11606220",
+ "longitude": "27.20663940"
+ },
+ {
+ "id": 3559,
+ "name": "Rapla County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "70",
+ "type": null,
+ "latitude": "58.84926250",
+ "longitude": "24.73465690"
+ },
+ {
+ "id": 3561,
+ "name": "Saare County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "74",
+ "type": null,
+ "latitude": "58.48497210",
+ "longitude": "22.61364080"
+ },
+ {
+ "id": 3557,
+ "name": "Tartu County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "78",
+ "type": null,
+ "latitude": "58.40571280",
+ "longitude": "26.80157600"
+ },
+ {
+ "id": 3558,
+ "name": "Valga County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "82",
+ "type": null,
+ "latitude": "57.91034410",
+ "longitude": "26.16018190"
+ },
+ {
+ "id": 3556,
+ "name": "Viljandi County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "84",
+ "type": null,
+ "latitude": "58.28217460",
+ "longitude": "25.57522330"
+ },
+ {
+ "id": 3560,
+ "name": "Vรตru County",
+ "country_id": 69,
+ "country_code": "EE",
+ "country_name": "Estonia",
+ "state_code": "86",
+ "type": null,
+ "latitude": "57.73773720",
+ "longitude": "27.13989380"
+ },
+ {
+ "id": 11,
+ "name": "Addis Ababa",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "AA",
+ "type": null,
+ "latitude": "8.98060340",
+ "longitude": "38.75776050"
+ },
+ {
+ "id": 6,
+ "name": "Afar Region",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "AF",
+ "type": null,
+ "latitude": "11.75593880",
+ "longitude": "40.95868800"
+ },
+ {
+ "id": 3,
+ "name": "Amhara Region",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "AM",
+ "type": null,
+ "latitude": "11.34942470",
+ "longitude": "37.97845850"
+ },
+ {
+ "id": 9,
+ "name": "Benishangul-Gumuz Region",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "BE",
+ "type": null,
+ "latitude": "10.78028890",
+ "longitude": "35.56578620"
+ },
+ {
+ "id": 8,
+ "name": "Dire Dawa",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "DD",
+ "type": null,
+ "latitude": "9.60087470",
+ "longitude": "41.85014200"
+ },
+ {
+ "id": 10,
+ "name": "Gambela Region",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "GA",
+ "type": null,
+ "latitude": "7.92196870",
+ "longitude": "34.15319470"
+ },
+ {
+ "id": 7,
+ "name": "Harari Region",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "HA",
+ "type": null,
+ "latitude": "9.31486600",
+ "longitude": "42.19677160"
+ },
+ {
+ "id": 5,
+ "name": "Oromia Region",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "OR",
+ "type": null,
+ "latitude": "7.54603770",
+ "longitude": "40.63468510"
+ },
+ {
+ "id": 2,
+ "name": "Somali Region",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "SO",
+ "type": null,
+ "latitude": "6.66122930",
+ "longitude": "43.79084530"
+ },
+ {
+ "id": 1,
+ "name": "Southern Nations, Nationalities, and Peoples' Region",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "SN",
+ "type": null,
+ "latitude": "6.51569110",
+ "longitude": "36.95410700"
+ },
+ {
+ "id": 4,
+ "name": "Tigray Region",
+ "country_id": 70,
+ "country_code": "ET",
+ "country_name": "Ethiopia",
+ "state_code": "TI",
+ "type": null,
+ "latitude": "14.03233360",
+ "longitude": "38.31657250"
+ },
+ {
+ "id": 1917,
+ "name": "Ba",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "01",
+ "type": null,
+ "latitude": "36.06138930",
+ "longitude": "-95.80058720"
+ },
+ {
+ "id": 1930,
+ "name": "Bua",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "02",
+ "type": null,
+ "latitude": "43.09645840",
+ "longitude": "-89.50088000"
+ },
+ {
+ "id": 1924,
+ "name": "Cakaudrove",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "03",
+ "type": null,
+ "latitude": "-16.58141050",
+ "longitude": "179.51200840"
+ },
+ {
+ "id": 1929,
+ "name": "Central Division",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "C",
+ "type": null,
+ "latitude": "34.04400660",
+ "longitude": "-118.24727380"
+ },
+ {
+ "id": 1932,
+ "name": "Eastern Division",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "E",
+ "type": null,
+ "latitude": "32.80943050",
+ "longitude": "-117.12899370"
+ },
+ {
+ "id": 1934,
+ "name": "Kadavu",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "04",
+ "type": null,
+ "latitude": "-19.01271220",
+ "longitude": "178.18766760"
+ },
+ {
+ "id": 1933,
+ "name": "Lau",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "05",
+ "type": null,
+ "latitude": "31.66870150",
+ "longitude": "-106.39557630"
+ },
+ {
+ "id": 1916,
+ "name": "Lomaiviti",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "06",
+ "type": null,
+ "latitude": "-17.70900000",
+ "longitude": "179.09100000"
+ },
+ {
+ "id": 1922,
+ "name": "Macuata",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "07",
+ "type": null,
+ "latitude": "-16.48649220",
+ "longitude": "179.28472510"
+ },
+ {
+ "id": 1919,
+ "name": "Nadroga-Navosa",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "08",
+ "type": null,
+ "latitude": "-17.98652780",
+ "longitude": "177.65811300"
+ },
+ {
+ "id": 1927,
+ "name": "Naitasiri",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "09",
+ "type": null,
+ "latitude": "-17.89757540",
+ "longitude": "178.20715980"
+ },
+ {
+ "id": 1928,
+ "name": "Namosi",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "10",
+ "type": null,
+ "latitude": "-18.08641760",
+ "longitude": "178.12913870"
+ },
+ {
+ "id": 1921,
+ "name": "Northern Division",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "N",
+ "type": null,
+ "latitude": "32.87687660",
+ "longitude": "-117.21563450"
+ },
+ {
+ "id": 1926,
+ "name": "Ra",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "11",
+ "type": null,
+ "latitude": "37.10031530",
+ "longitude": "-95.67442460"
+ },
+ {
+ "id": 1920,
+ "name": "Rewa",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "12",
+ "type": null,
+ "latitude": "34.79235170",
+ "longitude": "-82.36092640"
+ },
+ {
+ "id": 1931,
+ "name": "Rotuma",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "R",
+ "type": null,
+ "latitude": "-12.50250690",
+ "longitude": "177.07241640"
+ },
+ {
+ "id": 1925,
+ "name": "Serua",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "13",
+ "type": null,
+ "latitude": "-18.18047490",
+ "longitude": "178.05097900"
+ },
+ {
+ "id": 1918,
+ "name": "Tailevu",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "14",
+ "type": null,
+ "latitude": "-17.82691110",
+ "longitude": "178.29324800"
+ },
+ {
+ "id": 1923,
+ "name": "Western Division",
+ "country_id": 73,
+ "country_code": "FJ",
+ "country_name": "Fiji Islands",
+ "state_code": "W",
+ "type": null,
+ "latitude": "42.96621980",
+ "longitude": "-78.70211340"
+ },
+ {
+ "id": 1509,
+ "name": "ร
land Islands",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "01",
+ "type": "region",
+ "latitude": "60.17852470",
+ "longitude": "19.91561050"
+ },
+ {
+ "id": 1511,
+ "name": "Central Finland",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "08",
+ "type": "region",
+ "latitude": "62.56667430",
+ "longitude": "25.55494450"
+ },
+ {
+ "id": 1494,
+ "name": "Central Ostrobothnia",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "07",
+ "type": "region",
+ "latitude": "63.56217350",
+ "longitude": "24.00136310"
+ },
+ {
+ "id": 1507,
+ "name": "Finland Proper",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "19",
+ "type": "region",
+ "latitude": "60.36279140",
+ "longitude": "22.44393690"
+ },
+ {
+ "id": 1496,
+ "name": "Kainuu",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "05",
+ "type": "region",
+ "latitude": "64.37365640",
+ "longitude": "28.74374750"
+ },
+ {
+ "id": 1512,
+ "name": "Kymenlaakso",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "09",
+ "type": "region",
+ "latitude": "60.78051200",
+ "longitude": "26.88293360"
+ },
+ {
+ "id": 1500,
+ "name": "Lapland",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "10",
+ "type": "region",
+ "latitude": "67.92223040",
+ "longitude": "26.50464380"
+ },
+ {
+ "id": 1504,
+ "name": "North Karelia",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "13",
+ "type": "region",
+ "latitude": "62.80620780",
+ "longitude": "30.15538870"
+ },
+ {
+ "id": 1505,
+ "name": "Northern Ostrobothnia",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "14",
+ "type": "region",
+ "latitude": "65.27949300",
+ "longitude": "26.28904170"
+ },
+ {
+ "id": 1503,
+ "name": "Northern Savonia",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "15",
+ "type": "region",
+ "latitude": "63.08448000",
+ "longitude": "27.02535040"
+ },
+ {
+ "id": 1508,
+ "name": "Ostrobothnia",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "12",
+ "type": "region",
+ "latitude": "63.11817570",
+ "longitude": "21.90610620"
+ },
+ {
+ "id": 1502,
+ "name": "Pรคijรคnne Tavastia",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "16",
+ "type": "region",
+ "latitude": "61.32300410",
+ "longitude": "25.73224960"
+ },
+ {
+ "id": 1506,
+ "name": "Pirkanmaa",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "11",
+ "type": "region",
+ "latitude": "61.69869180",
+ "longitude": "23.78955980"
+ },
+ {
+ "id": 1501,
+ "name": "Satakunta",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "17",
+ "type": "region",
+ "latitude": "61.59327580",
+ "longitude": "22.14830810"
+ },
+ {
+ "id": 1497,
+ "name": "South Karelia",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "02",
+ "type": "region",
+ "latitude": "61.11819490",
+ "longitude": "28.10243720"
+ },
+ {
+ "id": 1498,
+ "name": "Southern Ostrobothnia",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "03",
+ "type": "region",
+ "latitude": "62.94330990",
+ "longitude": "23.52852670"
+ },
+ {
+ "id": 1495,
+ "name": "Southern Savonia",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "04",
+ "type": "region",
+ "latitude": "61.69451480",
+ "longitude": "27.80050150"
+ },
+ {
+ "id": 1493,
+ "name": "Tavastia Proper",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "06",
+ "type": "region",
+ "latitude": "60.90701500",
+ "longitude": "24.30054980"
+ },
+ {
+ "id": 1510,
+ "name": "Uusimaa",
+ "country_id": 74,
+ "country_code": "FI",
+ "country_name": "Finland",
+ "state_code": "18",
+ "type": "region",
+ "latitude": "60.21872000",
+ "longitude": "25.27162100"
+ },
+ {
+ "id": 4967,
+ "name": "Ain",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "01",
+ "type": "metropolitan department",
+ "latitude": "46.06508600",
+ "longitude": "4.88861500"
+ },
+ {
+ "id": 4968,
+ "name": "Aisne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "02",
+ "type": "metropolitan department",
+ "latitude": "49.45289210",
+ "longitude": "3.04651110"
+ },
+ {
+ "id": 4969,
+ "name": "Allier",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "03",
+ "type": "metropolitan department",
+ "latitude": "46.36708630",
+ "longitude": "2.58082770"
+ },
+ {
+ "id": 4970,
+ "name": "Alpes-de-Haute-Provence",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "04",
+ "type": "metropolitan department",
+ "latitude": "44.16377520",
+ "longitude": "5.67247800"
+ },
+ {
+ "id": 4972,
+ "name": "Alpes-Maritimes",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "06",
+ "type": "metropolitan department",
+ "latitude": "43.92041700",
+ "longitude": "6.61678220"
+ },
+ {
+ "id": 4811,
+ "name": "Alsace",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "6AE",
+ "type": "European collectivity",
+ "latitude": "48.31817950",
+ "longitude": "7.44162410"
+ },
+ {
+ "id": 4973,
+ "name": "Ardรจche",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "07",
+ "type": "metropolitan department",
+ "latitude": "44.81486950",
+ "longitude": "3.81334830"
+ },
+ {
+ "id": 4974,
+ "name": "Ardennes",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "08",
+ "type": "metropolitan department",
+ "latitude": "49.69759510",
+ "longitude": "4.14895760"
+ },
+ {
+ "id": 4975,
+ "name": "Ariรจge",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "09",
+ "type": "metropolitan department",
+ "latitude": "42.94347830",
+ "longitude": "0.94048640"
+ },
+ {
+ "id": 4976,
+ "name": "Aube",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "10",
+ "type": "metropolitan department",
+ "latitude": "48.31975470",
+ "longitude": "3.56371040"
+ },
+ {
+ "id": 4977,
+ "name": "Aude",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "11",
+ "type": "metropolitan department",
+ "latitude": "43.05411400",
+ "longitude": "1.90384760"
+ },
+ {
+ "id": 4798,
+ "name": "Auvergne-Rhรดne-Alpes",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "ARA",
+ "type": "metropolitan region",
+ "latitude": "45.44714310",
+ "longitude": "4.38525070"
+ },
+ {
+ "id": 4978,
+ "name": "Aveyron",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "12",
+ "type": "metropolitan department",
+ "latitude": "44.31563620",
+ "longitude": "2.08523790"
+ },
+ {
+ "id": 5035,
+ "name": "Bas-Rhin",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "67",
+ "type": "metropolitan department",
+ "latitude": "48.59864440",
+ "longitude": "7.02666760"
+ },
+ {
+ "id": 4979,
+ "name": "Bouches-du-Rhรดne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "13",
+ "type": "metropolitan department",
+ "latitude": "43.54038650",
+ "longitude": "4.46138290"
+ },
+ {
+ "id": 4825,
+ "name": "Bourgogne-Franche-Comtรฉ",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "BFC",
+ "type": "metropolitan region",
+ "latitude": "47.28051270",
+ "longitude": "4.99943720"
+ },
+ {
+ "id": 4807,
+ "name": "Bretagne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "BRE",
+ "type": "metropolitan region",
+ "latitude": "48.20204710",
+ "longitude": "-2.93264350"
+ },
+ {
+ "id": 4981,
+ "name": "Calvados",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "14",
+ "type": "metropolitan department",
+ "latitude": "49.09035140",
+ "longitude": "-0.91706480"
+ },
+ {
+ "id": 4982,
+ "name": "Cantal",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "15",
+ "type": "metropolitan department",
+ "latitude": "45.04921770",
+ "longitude": "2.15672720"
+ },
+ {
+ "id": 4818,
+ "name": "Centre-Val de Loire",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "CVL",
+ "type": "metropolitan region",
+ "latitude": "47.75156860",
+ "longitude": "1.67506310"
+ },
+ {
+ "id": 4983,
+ "name": "Charente",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "16",
+ "type": "metropolitan department",
+ "latitude": "45.66584790",
+ "longitude": "-0.31845770"
+ },
+ {
+ "id": 4984,
+ "name": "Charente-Maritime",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "17",
+ "type": "metropolitan department",
+ "latitude": "45.72968280",
+ "longitude": "-1.33881160"
+ },
+ {
+ "id": 4985,
+ "name": "Cher",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "18",
+ "type": "metropolitan department",
+ "latitude": "47.02436280",
+ "longitude": "1.86627320"
+ },
+ {
+ "id": 5064,
+ "name": "Clipperton",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "CP",
+ "type": "dependency",
+ "latitude": "10.28335410",
+ "longitude": "-109.22542150"
+ },
+ {
+ "id": 4986,
+ "name": "Corrรจze",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "19",
+ "type": "metropolitan department",
+ "latitude": "45.34237070",
+ "longitude": "1.31717330"
+ },
+ {
+ "id": 4806,
+ "name": "Corse",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "20R",
+ "type": "metropolitan collectivity with special status",
+ "latitude": "42.03960420",
+ "longitude": "9.01289260"
+ },
+ {
+ "id": 4996,
+ "name": "Corse-du-Sud",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "2A",
+ "type": "metropolitan department",
+ "latitude": "41.85720550",
+ "longitude": "8.41091830"
+ },
+ {
+ "id": 4987,
+ "name": "Cรดte-d'Or",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "21",
+ "type": "metropolitan department",
+ "latitude": "47.46513020",
+ "longitude": "4.23154950"
+ },
+ {
+ "id": 4988,
+ "name": "Cรดtes-d'Armor",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "22",
+ "type": "metropolitan department",
+ "latitude": "48.46633360",
+ "longitude": "-3.34789610"
+ },
+ {
+ "id": 4989,
+ "name": "Creuse",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "23",
+ "type": "metropolitan department",
+ "latitude": "46.05903940",
+ "longitude": "1.43150500"
+ },
+ {
+ "id": 5047,
+ "name": "Deux-Sรจvres",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "79",
+ "type": "metropolitan department",
+ "latitude": "46.53868170",
+ "longitude": "-0.90199480"
+ },
+ {
+ "id": 4990,
+ "name": "Dordogne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "24",
+ "type": "metropolitan department",
+ "latitude": "45.14234160",
+ "longitude": "0.14274080"
+ },
+ {
+ "id": 4991,
+ "name": "Doubs",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "25",
+ "type": "metropolitan department",
+ "latitude": "46.93217740",
+ "longitude": "6.34762140"
+ },
+ {
+ "id": 4992,
+ "name": "Drรดme",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "26",
+ "type": "metropolitan department",
+ "latitude": "44.72933570",
+ "longitude": "4.67821580"
+ },
+ {
+ "id": 5059,
+ "name": "Essonne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "91",
+ "type": "metropolitan department",
+ "latitude": "48.53046150",
+ "longitude": "1.96990560"
+ },
+ {
+ "id": 4993,
+ "name": "Eure",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "27",
+ "type": "metropolitan department",
+ "latitude": "49.07540350",
+ "longitude": "0.48937320"
+ },
+ {
+ "id": 4994,
+ "name": "Eure-et-Loir",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "28",
+ "type": "metropolitan department",
+ "latitude": "48.44697840",
+ "longitude": "0.81470250"
+ },
+ {
+ "id": 4995,
+ "name": "Finistรจre",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "29",
+ "type": "metropolitan department",
+ "latitude": "48.22696100",
+ "longitude": "-4.82437330"
+ },
+ {
+ "id": 4822,
+ "name": "French Guiana",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "973",
+ "type": "overseas region",
+ "latitude": "3.93388900",
+ "longitude": "-53.12578200"
+ },
+ {
+ "id": 4824,
+ "name": "French Polynesia",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "PF",
+ "type": "overseas collectivity",
+ "latitude": "-17.67974200",
+ "longitude": "-149.40684300"
+ },
+ {
+ "id": 5065,
+ "name": "French Southern and Antarctic Lands",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "TF",
+ "type": "overseas territory",
+ "latitude": "-47.54466040",
+ "longitude": "51.28375420"
+ },
+ {
+ "id": 4998,
+ "name": "Gard",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "30",
+ "type": "metropolitan department",
+ "latitude": "43.95952760",
+ "longitude": "3.49356810"
+ },
+ {
+ "id": 5000,
+ "name": "Gers",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "32",
+ "type": "metropolitan department",
+ "latitude": "43.69505340",
+ "longitude": "-0.09997280"
+ },
+ {
+ "id": 5001,
+ "name": "Gironde",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "33",
+ "type": "metropolitan department",
+ "latitude": "44.89584690",
+ "longitude": "-1.59405320"
+ },
+ {
+ "id": 4820,
+ "name": "Grand-Est",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "GES",
+ "type": "metropolitan region",
+ "latitude": "48.69980300",
+ "longitude": "6.18780740"
+ },
+ {
+ "id": 4829,
+ "name": "Guadeloupe",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "971",
+ "type": "overseas region",
+ "latitude": "16.26500000",
+ "longitude": "-61.55100000"
+ },
+ {
+ "id": 5036,
+ "name": "Haut-Rhin",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "68",
+ "type": "metropolitan department",
+ "latitude": "47.86537740",
+ "longitude": "6.67113810"
+ },
+ {
+ "id": 4997,
+ "name": "Haute-Corse",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "2B",
+ "type": "metropolitan department",
+ "latitude": "42.42958660",
+ "longitude": "8.50625610"
+ },
+ {
+ "id": 4999,
+ "name": "Haute-Garonne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "31",
+ "type": "metropolitan department",
+ "latitude": "43.30505550",
+ "longitude": "0.68455150"
+ },
+ {
+ "id": 5011,
+ "name": "Haute-Loire",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "43",
+ "type": "metropolitan department",
+ "latitude": "45.08538060",
+ "longitude": "3.22607070"
+ },
+ {
+ "id": 5020,
+ "name": "Haute-Marne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "52",
+ "type": "metropolitan department",
+ "latitude": "48.13248210",
+ "longitude": "4.69834990"
+ },
+ {
+ "id": 5039,
+ "name": "Haute-Saรดne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "70",
+ "type": "metropolitan department",
+ "latitude": "47.63789960",
+ "longitude": "5.53550550"
+ },
+ {
+ "id": 5043,
+ "name": "Haute-Savoie",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "74",
+ "type": "metropolitan department",
+ "latitude": "46.04452770",
+ "longitude": "5.86413800"
+ },
+ {
+ "id": 5055,
+ "name": "Haute-Vienne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "87",
+ "type": "metropolitan department",
+ "latitude": "45.91868780",
+ "longitude": "0.70972060"
+ },
+ {
+ "id": 4971,
+ "name": "Hautes-Alpes",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "05",
+ "type": "metropolitan department",
+ "latitude": "44.65626820",
+ "longitude": "5.68732110"
+ },
+ {
+ "id": 5033,
+ "name": "Hautes-Pyrรฉnรฉes",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "65",
+ "type": "metropolitan department",
+ "latitude": "43.14294620",
+ "longitude": "-0.40097360"
+ },
+ {
+ "id": 4828,
+ "name": "Hauts-de-France",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "HDF",
+ "type": "metropolitan region",
+ "latitude": "50.48011530",
+ "longitude": "2.79372650"
+ },
+ {
+ "id": 5060,
+ "name": "Hauts-de-Seine",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "92",
+ "type": "metropolitan department",
+ "latitude": "48.84030080",
+ "longitude": "2.10125590"
+ },
+ {
+ "id": 5002,
+ "name": "Hรฉrault",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "34",
+ "type": "metropolitan department",
+ "latitude": "43.59111200",
+ "longitude": "2.80661080"
+ },
+ {
+ "id": 4796,
+ "name": "รle-de-France",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "IDF",
+ "type": "metropolitan region",
+ "latitude": "48.84991980",
+ "longitude": "2.63704110"
+ },
+ {
+ "id": 5003,
+ "name": "Ille-et-Vilaine",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "35",
+ "type": "metropolitan department",
+ "latitude": "48.17624840",
+ "longitude": "-2.21304010"
+ },
+ {
+ "id": 5004,
+ "name": "Indre",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "36",
+ "type": "metropolitan department",
+ "latitude": "46.81175500",
+ "longitude": "0.97555230"
+ },
+ {
+ "id": 5005,
+ "name": "Indre-et-Loire",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "37",
+ "type": "metropolitan department",
+ "latitude": "47.22285820",
+ "longitude": "0.14896190"
+ },
+ {
+ "id": 5006,
+ "name": "Isรจre",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "38",
+ "type": "metropolitan department",
+ "latitude": "45.28922710",
+ "longitude": "4.99023550"
+ },
+ {
+ "id": 5007,
+ "name": "Jura",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "39",
+ "type": "metropolitan department",
+ "latitude": "46.78287410",
+ "longitude": "5.16918440"
+ },
+ {
+ "id": 4823,
+ "name": "La Rรฉunion",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "974",
+ "type": "overseas region",
+ "latitude": "-21.11514100",
+ "longitude": "55.53638400"
+ },
+ {
+ "id": 5008,
+ "name": "Landes",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "40",
+ "type": "metropolitan department",
+ "latitude": "44.00950800",
+ "longitude": "-1.25385790"
+ },
+ {
+ "id": 5009,
+ "name": "Loir-et-Cher",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "41",
+ "type": "metropolitan department",
+ "latitude": "47.65937600",
+ "longitude": "0.85376310"
+ },
+ {
+ "id": 5010,
+ "name": "Loire",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "42",
+ "type": "metropolitan department",
+ "latitude": "46.35228120",
+ "longitude": "-1.17563390"
+ },
+ {
+ "id": 5012,
+ "name": "Loire-Atlantique",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "44",
+ "type": "metropolitan department",
+ "latitude": "47.34757210",
+ "longitude": "-2.34663120"
+ },
+ {
+ "id": 5013,
+ "name": "Loiret",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "45",
+ "type": "metropolitan department",
+ "latitude": "47.91354310",
+ "longitude": "1.76009900"
+ },
+ {
+ "id": 5014,
+ "name": "Lot",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "46",
+ "type": "metropolitan department",
+ "latitude": "44.62460700",
+ "longitude": "1.03576310"
+ },
+ {
+ "id": 5015,
+ "name": "Lot-et-Garonne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "47",
+ "type": "metropolitan department",
+ "latitude": "44.36873140",
+ "longitude": "-0.09161690"
+ },
+ {
+ "id": 5016,
+ "name": "Lozรจre",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "48",
+ "type": "metropolitan department",
+ "latitude": "44.54227790",
+ "longitude": "2.92934590"
+ },
+ {
+ "id": 5017,
+ "name": "Maine-et-Loire",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "49",
+ "type": "metropolitan department",
+ "latitude": "47.38900340",
+ "longitude": "-1.12025270"
+ },
+ {
+ "id": 5018,
+ "name": "Manche",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "50",
+ "type": "metropolitan department",
+ "latitude": "49.08817340",
+ "longitude": "-2.46272090"
+ },
+ {
+ "id": 5019,
+ "name": "Marne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "51",
+ "type": "metropolitan department",
+ "latitude": "48.96107450",
+ "longitude": "3.65737670"
+ },
+ {
+ "id": 4827,
+ "name": "Martinique",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "972",
+ "type": "overseas region",
+ "latitude": "14.64152800",
+ "longitude": "-61.02417400"
+ },
+ {
+ "id": 5021,
+ "name": "Mayenne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "53",
+ "type": "metropolitan department",
+ "latitude": "48.30668420",
+ "longitude": "-0.64901820"
+ },
+ {
+ "id": 4797,
+ "name": "Mayotte",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "976",
+ "type": "overseas region",
+ "latitude": "-12.82750000",
+ "longitude": "45.16624400"
+ },
+ {
+ "id": 5038,
+ "name": "Mรฉtropole de Lyon",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "69M",
+ "type": "metropolitan department",
+ "latitude": "45.74826290",
+ "longitude": "4.59584040"
+ },
+ {
+ "id": 5022,
+ "name": "Meurthe-et-Moselle",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "54",
+ "type": "metropolitan department",
+ "latitude": "48.95566150",
+ "longitude": "5.71423500"
+ },
+ {
+ "id": 5023,
+ "name": "Meuse",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "55",
+ "type": "metropolitan department",
+ "latitude": "49.01246200",
+ "longitude": "4.81087340"
+ },
+ {
+ "id": 5024,
+ "name": "Morbihan",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "56",
+ "type": "metropolitan department",
+ "latitude": "47.74395180",
+ "longitude": "-3.44555240"
+ },
+ {
+ "id": 5025,
+ "name": "Moselle",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "57",
+ "type": "metropolitan department",
+ "latitude": "49.02045660",
+ "longitude": "6.20553220"
+ },
+ {
+ "id": 5026,
+ "name": "Niรจvre",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "58",
+ "type": "metropolitan department",
+ "latitude": "47.11921640",
+ "longitude": "2.97797130"
+ },
+ {
+ "id": 5027,
+ "name": "Nord",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "59",
+ "type": "metropolitan department",
+ "latitude": "50.52854770",
+ "longitude": "2.60007760"
+ },
+ {
+ "id": 4804,
+ "name": "Normandie",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "NOR",
+ "type": "metropolitan region",
+ "latitude": "48.87987040",
+ "longitude": "0.17125290"
+ },
+ {
+ "id": 4795,
+ "name": "Nouvelle-Aquitaine",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "NAQ",
+ "type": "metropolitan region",
+ "latitude": "45.70871820",
+ "longitude": "0.62689100"
+ },
+ {
+ "id": 4799,
+ "name": "Occitanie",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "OCC",
+ "type": "metropolitan region",
+ "latitude": "43.89272320",
+ "longitude": "3.28276250"
+ },
+ {
+ "id": 5028,
+ "name": "Oise",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "60",
+ "type": "metropolitan department",
+ "latitude": "49.41173350",
+ "longitude": "1.86688250"
+ },
+ {
+ "id": 5029,
+ "name": "Orne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "61",
+ "type": "metropolitan department",
+ "latitude": "48.57576440",
+ "longitude": "-0.50242950"
+ },
+ {
+ "id": 4816,
+ "name": "Paris",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "75C",
+ "type": "metropolitan collectivity with special status",
+ "latitude": "48.85661400",
+ "longitude": "2.35222190"
+ },
+ {
+ "id": 5030,
+ "name": "Pas-de-Calais",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "62",
+ "type": "metropolitan department",
+ "latitude": "50.51446990",
+ "longitude": "1.81149800"
+ },
+ {
+ "id": 4802,
+ "name": "Pays-de-la-Loire",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "PDL",
+ "type": "metropolitan region",
+ "latitude": "47.76328360",
+ "longitude": "-0.32996870"
+ },
+ {
+ "id": 4812,
+ "name": "Provence-Alpes-Cรดte-dโAzur",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "PAC",
+ "type": "metropolitan region",
+ "latitude": "43.93516910",
+ "longitude": "6.06791940"
+ },
+ {
+ "id": 5031,
+ "name": "Puy-de-Dรดme",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "63",
+ "type": "metropolitan department",
+ "latitude": "45.77141850",
+ "longitude": "2.62626760"
+ },
+ {
+ "id": 5032,
+ "name": "Pyrรฉnรฉes-Atlantiques",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "64",
+ "type": "metropolitan department",
+ "latitude": "43.18681700",
+ "longitude": "-1.44170710"
+ },
+ {
+ "id": 5034,
+ "name": "Pyrรฉnรฉes-Orientales",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "66",
+ "type": "metropolitan department",
+ "latitude": "42.62541790",
+ "longitude": "1.88929580"
+ },
+ {
+ "id": 5037,
+ "name": "Rhรดne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "69",
+ "type": "metropolitan department",
+ "latitude": "44.93433000",
+ "longitude": "4.24093290"
+ },
+ {
+ "id": 4821,
+ "name": "Saint Pierre and Miquelon",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "PM",
+ "type": "overseas collectivity",
+ "latitude": "46.88520000",
+ "longitude": "-56.31590000"
+ },
+ {
+ "id": 4794,
+ "name": "Saint-Barthรฉlemy",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "BL",
+ "type": "overseas collectivity",
+ "latitude": "17.90051340",
+ "longitude": "-62.82058710"
+ },
+ {
+ "id": 4809,
+ "name": "Saint-Martin",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "MF",
+ "type": "overseas collectivity",
+ "latitude": "18.07082980",
+ "longitude": "-63.05008090"
+ },
+ {
+ "id": 5040,
+ "name": "Saรดne-et-Loire",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "71",
+ "type": "metropolitan department",
+ "latitude": "46.65548830",
+ "longitude": "3.98350500"
+ },
+ {
+ "id": 5041,
+ "name": "Sarthe",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "72",
+ "type": "metropolitan department",
+ "latitude": "48.02627330",
+ "longitude": "-0.32613170"
+ },
+ {
+ "id": 5042,
+ "name": "Savoie",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "73",
+ "type": "metropolitan department",
+ "latitude": "45.49469900",
+ "longitude": "5.84329840"
+ },
+ {
+ "id": 5045,
+ "name": "Seine-et-Marne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "77",
+ "type": "metropolitan department",
+ "latitude": "48.61853940",
+ "longitude": "2.41525610"
+ },
+ {
+ "id": 5044,
+ "name": "Seine-Maritime",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "76",
+ "type": "metropolitan department",
+ "latitude": "49.66096810",
+ "longitude": "0.36775610"
+ },
+ {
+ "id": 5061,
+ "name": "Seine-Saint-Denis",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "93",
+ "type": "metropolitan department",
+ "latitude": "48.90993180",
+ "longitude": "2.30573790"
+ },
+ {
+ "id": 5048,
+ "name": "Somme",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "80",
+ "type": "metropolitan department",
+ "latitude": "49.96859220",
+ "longitude": "1.73106960"
+ },
+ {
+ "id": 5049,
+ "name": "Tarn",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "81",
+ "type": "metropolitan department",
+ "latitude": "43.79149770",
+ "longitude": "1.67588930"
+ },
+ {
+ "id": 5050,
+ "name": "Tarn-et-Garonne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "82",
+ "type": "metropolitan department",
+ "latitude": "44.08089500",
+ "longitude": "1.08916570"
+ },
+ {
+ "id": 5058,
+ "name": "Territoire de Belfort",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "90",
+ "type": "metropolitan department",
+ "latitude": "47.62930720",
+ "longitude": "6.66962000"
+ },
+ {
+ "id": 5063,
+ "name": "Val-d'Oise",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "95",
+ "type": "metropolitan department",
+ "latitude": "49.07518180",
+ "longitude": "1.82169140"
+ },
+ {
+ "id": 5062,
+ "name": "Val-de-Marne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "94",
+ "type": "metropolitan department",
+ "latitude": "48.77470040",
+ "longitude": "2.32210390"
+ },
+ {
+ "id": 5051,
+ "name": "Var",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "83",
+ "type": "metropolitan department",
+ "latitude": "43.39507300",
+ "longitude": "5.73424170"
+ },
+ {
+ "id": 5052,
+ "name": "Vaucluse",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "84",
+ "type": "metropolitan department",
+ "latitude": "44.04475000",
+ "longitude": "4.64277180"
+ },
+ {
+ "id": 5053,
+ "name": "Vendรฉe",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "85",
+ "type": "metropolitan department",
+ "latitude": "46.67541030",
+ "longitude": "-2.02983920"
+ },
+ {
+ "id": 5054,
+ "name": "Vienne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "86",
+ "type": "metropolitan department",
+ "latitude": "45.52213140",
+ "longitude": "4.84531360"
+ },
+ {
+ "id": 5056,
+ "name": "Vosges",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "88",
+ "type": "metropolitan department",
+ "latitude": "48.16301730",
+ "longitude": "5.73556000"
+ },
+ {
+ "id": 4810,
+ "name": "Wallis and Futuna",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "WF",
+ "type": "overseas collectivity",
+ "latitude": "-14.29380000",
+ "longitude": "-178.11650000"
+ },
+ {
+ "id": 5057,
+ "name": "Yonne",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "89",
+ "type": "metropolitan department",
+ "latitude": "47.85476140",
+ "longitude": "3.03394040"
+ },
+ {
+ "id": 5046,
+ "name": "Yvelines",
+ "country_id": 75,
+ "country_code": "FR",
+ "country_name": "France",
+ "state_code": "78",
+ "type": "metropolitan department",
+ "latitude": "48.76153010",
+ "longitude": "1.27729490"
+ },
+ {
+ "id": 2727,
+ "name": "Estuaire Province",
+ "country_id": 79,
+ "country_code": "GA",
+ "country_name": "Gabon",
+ "state_code": "1",
+ "type": null,
+ "latitude": "0.44328640",
+ "longitude": "10.08072980"
+ },
+ {
+ "id": 2726,
+ "name": "Haut-Ogoouรฉ Province",
+ "country_id": 79,
+ "country_code": "GA",
+ "country_name": "Gabon",
+ "state_code": "2",
+ "type": null,
+ "latitude": "-1.47625440",
+ "longitude": "13.91439900"
+ },
+ {
+ "id": 2730,
+ "name": "Moyen-Ogoouรฉ Province",
+ "country_id": 79,
+ "country_code": "GA",
+ "country_name": "Gabon",
+ "state_code": "3",
+ "type": null,
+ "latitude": "-0.44278400",
+ "longitude": "10.43965600"
+ },
+ {
+ "id": 2731,
+ "name": "Ngouniรฉ Province",
+ "country_id": 79,
+ "country_code": "GA",
+ "country_name": "Gabon",
+ "state_code": "4",
+ "type": null,
+ "latitude": "-1.49303030",
+ "longitude": "10.98070030"
+ },
+ {
+ "id": 2725,
+ "name": "Nyanga Province",
+ "country_id": 79,
+ "country_code": "GA",
+ "country_name": "Gabon",
+ "state_code": "5",
+ "type": null,
+ "latitude": "-2.88210330",
+ "longitude": "11.16173560"
+ },
+ {
+ "id": 2724,
+ "name": "Ogoouรฉ-Ivindo Province",
+ "country_id": 79,
+ "country_code": "GA",
+ "country_name": "Gabon",
+ "state_code": "6",
+ "type": null,
+ "latitude": "0.88183110",
+ "longitude": "13.17403480"
+ },
+ {
+ "id": 2729,
+ "name": "Ogoouรฉ-Lolo Province",
+ "country_id": 79,
+ "country_code": "GA",
+ "country_name": "Gabon",
+ "state_code": "7",
+ "type": null,
+ "latitude": "-0.88440930",
+ "longitude": "12.43805810"
+ },
+ {
+ "id": 2728,
+ "name": "Ogoouรฉ-Maritime Province",
+ "country_id": 79,
+ "country_code": "GA",
+ "country_name": "Gabon",
+ "state_code": "8",
+ "type": null,
+ "latitude": "-1.34659750",
+ "longitude": "9.72326730"
+ },
+ {
+ "id": 2723,
+ "name": "Woleu-Ntem Province",
+ "country_id": 79,
+ "country_code": "GA",
+ "country_name": "Gabon",
+ "state_code": "9",
+ "type": null,
+ "latitude": "2.29898270",
+ "longitude": "11.44669140"
+ },
+ {
+ "id": 2666,
+ "name": "Banjul",
+ "country_id": 80,
+ "country_code": "GM",
+ "country_name": "Gambia The",
+ "state_code": "B",
+ "type": null,
+ "latitude": "13.45487610",
+ "longitude": "-16.57903230"
+ },
+ {
+ "id": 2669,
+ "name": "Central River Division",
+ "country_id": 80,
+ "country_code": "GM",
+ "country_name": "Gambia The",
+ "state_code": "M",
+ "type": null,
+ "latitude": "13.59944690",
+ "longitude": "-14.89216680"
+ },
+ {
+ "id": 2670,
+ "name": "Lower River Division",
+ "country_id": 80,
+ "country_code": "GM",
+ "country_name": "Gambia The",
+ "state_code": "L",
+ "type": null,
+ "latitude": "13.35533060",
+ "longitude": "-15.92299000"
+ },
+ {
+ "id": 2671,
+ "name": "North Bank Division",
+ "country_id": 80,
+ "country_code": "GM",
+ "country_name": "Gambia The",
+ "state_code": "N",
+ "type": null,
+ "latitude": "13.52854360",
+ "longitude": "-16.01699710"
+ },
+ {
+ "id": 2668,
+ "name": "Upper River Division",
+ "country_id": 80,
+ "country_code": "GM",
+ "country_name": "Gambia The",
+ "state_code": "U",
+ "type": null,
+ "latitude": "13.42573660",
+ "longitude": "-14.00723480"
+ },
+ {
+ "id": 2667,
+ "name": "West Coast Division",
+ "country_id": 80,
+ "country_code": "GM",
+ "country_name": "Gambia The",
+ "state_code": "W",
+ "type": null,
+ "latitude": "5.97727980",
+ "longitude": "116.07542880"
+ },
+ {
+ "id": 900,
+ "name": "Adjara",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "AJ",
+ "type": null,
+ "latitude": "41.60056260",
+ "longitude": "42.06883830"
+ },
+ {
+ "id": 901,
+ "name": "Autonomous Republic of Abkhazia",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "AB",
+ "type": null,
+ "latitude": "43.00155440",
+ "longitude": "41.02340700"
+ },
+ {
+ "id": 907,
+ "name": "Guria",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "GU",
+ "type": null,
+ "latitude": "41.94427360",
+ "longitude": "42.04580910"
+ },
+ {
+ "id": 905,
+ "name": "Imereti",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "IM",
+ "type": null,
+ "latitude": "42.23010800",
+ "longitude": "42.90086640"
+ },
+ {
+ "id": 910,
+ "name": "Kakheti",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "KA",
+ "type": null,
+ "latitude": "41.64816020",
+ "longitude": "45.69055540"
+ },
+ {
+ "id": 897,
+ "name": "Khelvachauri Municipality",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "29",
+ "type": null,
+ "latitude": "41.58019260",
+ "longitude": "41.66107420"
+ },
+ {
+ "id": 904,
+ "name": "Kvemo Kartli",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "KK",
+ "type": null,
+ "latitude": "41.47918330",
+ "longitude": "44.65604510"
+ },
+ {
+ "id": 902,
+ "name": "Mtskheta-Mtianeti",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "MM",
+ "type": null,
+ "latitude": "42.16821850",
+ "longitude": "44.65060580"
+ },
+ {
+ "id": 909,
+ "name": "Racha-Lechkhumi and Kvemo Svaneti",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "RL",
+ "type": null,
+ "latitude": "42.67188730",
+ "longitude": "43.05628360"
+ },
+ {
+ "id": 908,
+ "name": "Samegrelo-Zemo Svaneti",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "SZ",
+ "type": null,
+ "latitude": "42.73522470",
+ "longitude": "42.16893620"
+ },
+ {
+ "id": 906,
+ "name": "Samtskhe-Javakheti",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "SJ",
+ "type": null,
+ "latitude": "41.54792960",
+ "longitude": "43.27764000"
+ },
+ {
+ "id": 898,
+ "name": "Senaki Municipality",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "50",
+ "type": null,
+ "latitude": "42.26963600",
+ "longitude": "42.06568960"
+ },
+ {
+ "id": 903,
+ "name": "Shida Kartli",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "SK",
+ "type": null,
+ "latitude": "42.07569440",
+ "longitude": "43.95404620"
+ },
+ {
+ "id": 899,
+ "name": "Tbilisi",
+ "country_id": 81,
+ "country_code": "GE",
+ "country_name": "Georgia",
+ "state_code": "TB",
+ "type": null,
+ "latitude": "41.71513770",
+ "longitude": "44.82709600"
+ },
+ {
+ "id": 3006,
+ "name": "Baden-Wรผrttemberg",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "BW",
+ "type": null,
+ "latitude": "48.66160370",
+ "longitude": "9.35013360"
+ },
+ {
+ "id": 3009,
+ "name": "Bavaria",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "BY",
+ "type": null,
+ "latitude": "48.79044720",
+ "longitude": "11.49788950"
+ },
+ {
+ "id": 3010,
+ "name": "Berlin",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "BE",
+ "type": null,
+ "latitude": "52.52000660",
+ "longitude": "13.40495400"
+ },
+ {
+ "id": 3013,
+ "name": "Brandenburg",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "BB",
+ "type": null,
+ "latitude": "52.41252870",
+ "longitude": "12.53164440"
+ },
+ {
+ "id": 3014,
+ "name": "Bremen",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "HB",
+ "type": null,
+ "latitude": "53.07929620",
+ "longitude": "8.80169360"
+ },
+ {
+ "id": 3016,
+ "name": "Hamburg",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "HH",
+ "type": null,
+ "latitude": "53.55108460",
+ "longitude": "9.99368190"
+ },
+ {
+ "id": 3018,
+ "name": "Hesse",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "HE",
+ "type": null,
+ "latitude": "50.65205150",
+ "longitude": "9.16243760"
+ },
+ {
+ "id": 3008,
+ "name": "Lower Saxony",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "NI",
+ "type": null,
+ "latitude": "52.63670360",
+ "longitude": "9.84507660"
+ },
+ {
+ "id": 3007,
+ "name": "Mecklenburg-Vorpommern",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "MV",
+ "type": null,
+ "latitude": "53.61265050",
+ "longitude": "12.42959530"
+ },
+ {
+ "id": 3017,
+ "name": "North Rhine-Westphalia",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "NW",
+ "type": null,
+ "latitude": "51.43323670",
+ "longitude": "7.66159380"
+ },
+ {
+ "id": 3019,
+ "name": "Rhineland-Palatinate",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "RP",
+ "type": null,
+ "latitude": "50.11834600",
+ "longitude": "7.30895270"
+ },
+ {
+ "id": 3020,
+ "name": "Saarland",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "SL",
+ "type": null,
+ "latitude": "49.39642340",
+ "longitude": "7.02296070"
+ },
+ {
+ "id": 3021,
+ "name": "Saxony",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "SN",
+ "type": null,
+ "latitude": "51.10454070",
+ "longitude": "13.20173840"
+ },
+ {
+ "id": 3011,
+ "name": "Saxony-Anhalt",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "ST",
+ "type": null,
+ "latitude": "51.95026490",
+ "longitude": "11.69227340"
+ },
+ {
+ "id": 3005,
+ "name": "Schleswig-Holstein",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "SH",
+ "type": null,
+ "latitude": "54.21936720",
+ "longitude": "9.69611670"
+ },
+ {
+ "id": 3015,
+ "name": "Thuringia",
+ "country_id": 82,
+ "country_code": "DE",
+ "country_name": "Germany",
+ "state_code": "TH",
+ "type": null,
+ "latitude": "51.01098920",
+ "longitude": "10.84534600"
+ },
+ {
+ "id": 53,
+ "name": "Ahafo",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "AF",
+ "type": "region",
+ "latitude": "7.58213720",
+ "longitude": "-2.54974630"
+ },
+ {
+ "id": 48,
+ "name": "Ashanti",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "AH",
+ "type": "region",
+ "latitude": "6.74704360",
+ "longitude": "-1.52086240"
+ },
+ {
+ "id": 4959,
+ "name": "Bono",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "BO",
+ "type": "region",
+ "latitude": "7.65000000",
+ "longitude": "-2.50000000"
+ },
+ {
+ "id": 4958,
+ "name": "Bono East",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "BE",
+ "type": "region",
+ "latitude": "7.75000000",
+ "longitude": "-1.05000000"
+ },
+ {
+ "id": 52,
+ "name": "Central",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "CP",
+ "type": "region",
+ "latitude": "5.50000000",
+ "longitude": "-1.00000000"
+ },
+ {
+ "id": 50,
+ "name": "Eastern",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "EP",
+ "type": "region",
+ "latitude": "6.50000000",
+ "longitude": "-0.50000000"
+ },
+ {
+ "id": 54,
+ "name": "Greater Accra",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "AA",
+ "type": "region",
+ "latitude": "5.81428360",
+ "longitude": "0.07467670"
+ },
+ {
+ "id": 4960,
+ "name": "North East",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "NE",
+ "type": "region",
+ "latitude": "10.51666700",
+ "longitude": "-0.36666700"
+ },
+ {
+ "id": 51,
+ "name": "Northern",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "NP",
+ "type": "region",
+ "latitude": "9.50000000",
+ "longitude": "-1.00000000"
+ },
+ {
+ "id": 4961,
+ "name": "Oti",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "OT",
+ "type": "region",
+ "latitude": "7.90000000",
+ "longitude": "0.30000000"
+ },
+ {
+ "id": 4962,
+ "name": "Savannah",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "SV",
+ "type": "region",
+ "latitude": "9.08333300",
+ "longitude": "-1.81666700"
+ },
+ {
+ "id": 55,
+ "name": "Upper East",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "UE",
+ "type": "region",
+ "latitude": "10.70824990",
+ "longitude": "-0.98206680"
+ },
+ {
+ "id": 57,
+ "name": "Upper West",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "UW",
+ "type": "region",
+ "latitude": "10.25297570",
+ "longitude": "-2.14502450"
+ },
+ {
+ "id": 56,
+ "name": "Volta",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "TV",
+ "type": "region",
+ "latitude": "6.57813730",
+ "longitude": "0.45023680"
+ },
+ {
+ "id": 49,
+ "name": "Western",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "WP",
+ "type": "region",
+ "latitude": "5.50000000",
+ "longitude": "-2.50000000"
+ },
+ {
+ "id": 4963,
+ "name": "Western North",
+ "country_id": 83,
+ "country_code": "GH",
+ "country_name": "Ghana",
+ "state_code": "WN",
+ "type": "region",
+ "latitude": "6.30000000",
+ "longitude": "-2.80000000"
+ },
+ {
+ "id": 2116,
+ "name": "Achaea Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "13",
+ "type": null,
+ "latitude": "38.11587290",
+ "longitude": "21.95224910"
+ },
+ {
+ "id": 2123,
+ "name": "Aetolia-Acarnania Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "01",
+ "type": null,
+ "latitude": "38.70843860",
+ "longitude": "21.37989280"
+ },
+ {
+ "id": 2098,
+ "name": "Arcadia Prefecture",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "12",
+ "type": null,
+ "latitude": "37.55578250",
+ "longitude": "22.33377690"
+ },
+ {
+ "id": 2105,
+ "name": "Argolis Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "11",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2122,
+ "name": "Attica Region",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "I",
+ "type": null,
+ "latitude": "38.04575680",
+ "longitude": "23.85847370"
+ },
+ {
+ "id": 2126,
+ "name": "Boeotia Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "03",
+ "type": null,
+ "latitude": "38.36636640",
+ "longitude": "23.09650640"
+ },
+ {
+ "id": 2128,
+ "name": "Central Greece Region",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "H",
+ "type": null,
+ "latitude": "38.60439840",
+ "longitude": "22.71521310"
+ },
+ {
+ "id": 2125,
+ "name": "Central Macedonia",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "B",
+ "type": null,
+ "latitude": "40.62117300",
+ "longitude": "23.19180210"
+ },
+ {
+ "id": 2115,
+ "name": "Chania Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "94",
+ "type": null,
+ "latitude": "35.51382980",
+ "longitude": "24.01803670"
+ },
+ {
+ "id": 2124,
+ "name": "Corfu Prefecture",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "22",
+ "type": null,
+ "latitude": "39.62498380",
+ "longitude": "19.92234610"
+ },
+ {
+ "id": 2129,
+ "name": "Corinthia Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "15",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2109,
+ "name": "Crete Region",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "M",
+ "type": null,
+ "latitude": "35.24011700",
+ "longitude": "24.80926910"
+ },
+ {
+ "id": 2130,
+ "name": "Drama Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "52",
+ "type": null,
+ "latitude": "41.23400230",
+ "longitude": "24.23904980"
+ },
+ {
+ "id": 2120,
+ "name": "East Attica Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "A2",
+ "type": null,
+ "latitude": "38.20540930",
+ "longitude": "23.85847370"
+ },
+ {
+ "id": 2117,
+ "name": "East Macedonia and Thrace",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "A",
+ "type": null,
+ "latitude": "41.12951260",
+ "longitude": "24.88771910"
+ },
+ {
+ "id": 2110,
+ "name": "Epirus Region",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "D",
+ "type": null,
+ "latitude": "39.57064130",
+ "longitude": "20.76428430"
+ },
+ {
+ "id": 2101,
+ "name": "Euboea",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "04",
+ "type": null,
+ "latitude": "38.52360360",
+ "longitude": "23.85847370"
+ },
+ {
+ "id": 2102,
+ "name": "Grevena Prefecture",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "51",
+ "type": null,
+ "latitude": "40.08376260",
+ "longitude": "21.42732990"
+ },
+ {
+ "id": 2099,
+ "name": "Imathia Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "53",
+ "type": null,
+ "latitude": "40.60600670",
+ "longitude": "22.14302150"
+ },
+ {
+ "id": 2113,
+ "name": "Ioannina Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "33",
+ "type": null,
+ "latitude": "39.66502880",
+ "longitude": "20.85374660"
+ },
+ {
+ "id": 2131,
+ "name": "Ionian Islands Region",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "F",
+ "type": null,
+ "latitude": "37.96948980",
+ "longitude": "21.38023720"
+ },
+ {
+ "id": 2095,
+ "name": "Karditsa Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "41",
+ "type": null,
+ "latitude": "39.36402580",
+ "longitude": "21.92140490"
+ },
+ {
+ "id": 2100,
+ "name": "Kastoria Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "56",
+ "type": null,
+ "latitude": "40.51926910",
+ "longitude": "21.26871710"
+ },
+ {
+ "id": 2127,
+ "name": "Kefalonia Prefecture",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "23",
+ "type": null,
+ "latitude": "38.17536750",
+ "longitude": "20.56921790"
+ },
+ {
+ "id": 2111,
+ "name": "Kilkis Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "57",
+ "type": null,
+ "latitude": "40.99370710",
+ "longitude": "22.87536740"
+ },
+ {
+ "id": 2112,
+ "name": "Kozani Prefecture",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "58",
+ "type": null,
+ "latitude": "40.30055860",
+ "longitude": "21.78877370"
+ },
+ {
+ "id": 2106,
+ "name": "Laconia",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "16",
+ "type": null,
+ "latitude": "43.52785460",
+ "longitude": "-71.47035090"
+ },
+ {
+ "id": 2132,
+ "name": "Larissa Prefecture",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "42",
+ "type": null,
+ "latitude": "39.63902240",
+ "longitude": "22.41912540"
+ },
+ {
+ "id": 2104,
+ "name": "Lefkada Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "24",
+ "type": null,
+ "latitude": "38.83336630",
+ "longitude": "20.70691080"
+ },
+ {
+ "id": 2107,
+ "name": "Pella Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "59",
+ "type": null,
+ "latitude": "40.91480390",
+ "longitude": "22.14302150"
+ },
+ {
+ "id": 2119,
+ "name": "Peloponnese Region",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "J",
+ "type": null,
+ "latitude": "37.50794720",
+ "longitude": "22.37349000"
+ },
+ {
+ "id": 2114,
+ "name": "Phthiotis Prefecture",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "06",
+ "type": null,
+ "latitude": "38.99978500",
+ "longitude": "22.33377690"
+ },
+ {
+ "id": 2103,
+ "name": "Preveza Prefecture",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "34",
+ "type": null,
+ "latitude": "38.95926490",
+ "longitude": "20.75171550"
+ },
+ {
+ "id": 2121,
+ "name": "Serres Prefecture",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "62",
+ "type": null,
+ "latitude": "41.08638540",
+ "longitude": "23.54838190"
+ },
+ {
+ "id": 2118,
+ "name": "South Aegean",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "L",
+ "type": null,
+ "latitude": "37.08553020",
+ "longitude": "25.14892150"
+ },
+ {
+ "id": 2097,
+ "name": "Thessaloniki Regional Unit",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "54",
+ "type": null,
+ "latitude": "40.64006290",
+ "longitude": "22.94441910"
+ },
+ {
+ "id": 2096,
+ "name": "West Greece Region",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "G",
+ "type": null,
+ "latitude": "38.51154960",
+ "longitude": "21.57067860"
+ },
+ {
+ "id": 2108,
+ "name": "West Macedonia Region",
+ "country_id": 85,
+ "country_code": "GR",
+ "country_name": "Greece",
+ "state_code": "C",
+ "type": null,
+ "latitude": "40.30040580",
+ "longitude": "21.79035590"
+ },
+ {
+ "id": 3867,
+ "name": "Carriacou and Petite Martinique",
+ "country_id": 87,
+ "country_code": "GD",
+ "country_name": "Grenada",
+ "state_code": "10",
+ "type": null,
+ "latitude": "12.47858880",
+ "longitude": "-61.44938420"
+ },
+ {
+ "id": 3865,
+ "name": "Saint Andrew Parish",
+ "country_id": 87,
+ "country_code": "GD",
+ "country_name": "Grenada",
+ "state_code": "01",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3869,
+ "name": "Saint David Parish",
+ "country_id": 87,
+ "country_code": "GD",
+ "country_name": "Grenada",
+ "state_code": "02",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3864,
+ "name": "Saint George Parish",
+ "country_id": 87,
+ "country_code": "GD",
+ "country_name": "Grenada",
+ "state_code": "03",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3868,
+ "name": "Saint John Parish",
+ "country_id": 87,
+ "country_code": "GD",
+ "country_name": "Grenada",
+ "state_code": "04",
+ "type": null,
+ "latitude": "30.11183310",
+ "longitude": "-90.48799160"
+ },
+ {
+ "id": 3866,
+ "name": "Saint Mark Parish",
+ "country_id": 87,
+ "country_code": "GD",
+ "country_name": "Grenada",
+ "state_code": "05",
+ "type": null,
+ "latitude": "40.58818630",
+ "longitude": "-73.94957010"
+ },
+ {
+ "id": 3863,
+ "name": "Saint Patrick Parish",
+ "country_id": 87,
+ "country_code": "GD",
+ "country_name": "Grenada",
+ "state_code": "06",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3671,
+ "name": "Alta Verapaz Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "AV",
+ "type": null,
+ "latitude": "15.59428830",
+ "longitude": "-90.14949880"
+ },
+ {
+ "id": 3674,
+ "name": "Baja Verapaz Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "BV",
+ "type": null,
+ "latitude": "15.12558670",
+ "longitude": "-90.37483540"
+ },
+ {
+ "id": 3675,
+ "name": "Chimaltenango Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "CM",
+ "type": null,
+ "latitude": "14.56347870",
+ "longitude": "-90.98206680"
+ },
+ {
+ "id": 3666,
+ "name": "Chiquimula Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "CQ",
+ "type": null,
+ "latitude": "14.75149990",
+ "longitude": "-89.47421770"
+ },
+ {
+ "id": 3662,
+ "name": "El Progreso Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "PR",
+ "type": null,
+ "latitude": "14.93887320",
+ "longitude": "-90.07467670"
+ },
+ {
+ "id": 3677,
+ "name": "Escuintla Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "ES",
+ "type": null,
+ "latitude": "14.19109120",
+ "longitude": "-90.98206680"
+ },
+ {
+ "id": 3672,
+ "name": "Guatemala Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "GU",
+ "type": null,
+ "latitude": "14.56494010",
+ "longitude": "-90.52578230"
+ },
+ {
+ "id": 3670,
+ "name": "Huehuetenango Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "HU",
+ "type": null,
+ "latitude": "15.58799140",
+ "longitude": "-91.67606910"
+ },
+ {
+ "id": 3659,
+ "name": "Izabal Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "IZ",
+ "type": null,
+ "latitude": "15.49765170",
+ "longitude": "-88.86469800"
+ },
+ {
+ "id": 3658,
+ "name": "Jalapa Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "JA",
+ "type": null,
+ "latitude": "14.61214460",
+ "longitude": "-89.96267990"
+ },
+ {
+ "id": 3673,
+ "name": "Jutiapa Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "JU",
+ "type": null,
+ "latitude": "14.19308020",
+ "longitude": "-89.92532330"
+ },
+ {
+ "id": 3669,
+ "name": "Petรฉn Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "PE",
+ "type": null,
+ "latitude": "16.91203300",
+ "longitude": "-90.29957850"
+ },
+ {
+ "id": 3668,
+ "name": "Quetzaltenango Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "QZ",
+ "type": null,
+ "latitude": "14.79243300",
+ "longitude": "-91.71495800"
+ },
+ {
+ "id": 3657,
+ "name": "Quichรฉ Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "QC",
+ "type": null,
+ "latitude": "15.49838080",
+ "longitude": "-90.98206680"
+ },
+ {
+ "id": 3664,
+ "name": "Retalhuleu Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "RE",
+ "type": null,
+ "latitude": "14.52454850",
+ "longitude": "-91.68578800"
+ },
+ {
+ "id": 3676,
+ "name": "Sacatepรฉquez Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "14.51783790",
+ "longitude": "-90.71527490"
+ },
+ {
+ "id": 3667,
+ "name": "San Marcos Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "SM",
+ "type": null,
+ "latitude": "14.93095690",
+ "longitude": "-91.90992380"
+ },
+ {
+ "id": 3665,
+ "name": "Santa Rosa Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "SR",
+ "type": null,
+ "latitude": "38.44057590",
+ "longitude": "-122.70375430"
+ },
+ {
+ "id": 3661,
+ "name": "Sololรก Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "SO",
+ "type": null,
+ "latitude": "14.74852300",
+ "longitude": "-91.28910360"
+ },
+ {
+ "id": 3660,
+ "name": "Suchitepรฉquez Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "SU",
+ "type": null,
+ "latitude": "14.42159820",
+ "longitude": "-91.40482490"
+ },
+ {
+ "id": 3663,
+ "name": "Totonicapรกn Department",
+ "country_id": 90,
+ "country_code": "GT",
+ "country_name": "Guatemala",
+ "state_code": "TO",
+ "type": null,
+ "latitude": "14.91734020",
+ "longitude": "-91.36139230"
+ },
+ {
+ "id": 2672,
+ "name": "Beyla Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "BE",
+ "type": null,
+ "latitude": "8.91981780",
+ "longitude": "-8.30884410"
+ },
+ {
+ "id": 2699,
+ "name": "Boffa Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "BF",
+ "type": null,
+ "latitude": "10.18082540",
+ "longitude": "-14.03916150"
+ },
+ {
+ "id": 2709,
+ "name": "Bokรฉ Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "BK",
+ "type": null,
+ "latitude": "11.08473790",
+ "longitude": "-14.37919120"
+ },
+ {
+ "id": 2676,
+ "name": "Bokรฉ Region",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "B",
+ "type": null,
+ "latitude": "11.18646720",
+ "longitude": "-14.10013260"
+ },
+ {
+ "id": 2686,
+ "name": "Conakry",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "C",
+ "type": null,
+ "latitude": "9.64118550",
+ "longitude": "-13.57840120"
+ },
+ {
+ "id": 2705,
+ "name": "Coyah Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "CO",
+ "type": null,
+ "latitude": "9.77155350",
+ "longitude": "-13.31252990"
+ },
+ {
+ "id": 2679,
+ "name": "Dabola Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "DB",
+ "type": null,
+ "latitude": "10.72978060",
+ "longitude": "-11.11078540"
+ },
+ {
+ "id": 2706,
+ "name": "Dalaba Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "DL",
+ "type": null,
+ "latitude": "10.68681760",
+ "longitude": "-12.24906970"
+ },
+ {
+ "id": 2688,
+ "name": "Dinguiraye Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "DI",
+ "type": null,
+ "latitude": "11.68442220",
+ "longitude": "-10.80000510"
+ },
+ {
+ "id": 2681,
+ "name": "Dubrรฉka Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "DU",
+ "type": null,
+ "latitude": "9.79073480",
+ "longitude": "-13.51477350"
+ },
+ {
+ "id": 2682,
+ "name": "Faranah Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "FA",
+ "type": null,
+ "latitude": "9.90573990",
+ "longitude": "-10.80000510"
+ },
+ {
+ "id": 2683,
+ "name": "Forรฉcariah Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "FO",
+ "type": null,
+ "latitude": "9.38861870",
+ "longitude": "-13.08179030"
+ },
+ {
+ "id": 2675,
+ "name": "Fria Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "FR",
+ "type": null,
+ "latitude": "10.36745430",
+ "longitude": "-13.58418710"
+ },
+ {
+ "id": 2685,
+ "name": "Gaoual Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "GA",
+ "type": null,
+ "latitude": "11.57628040",
+ "longitude": "-13.35872880"
+ },
+ {
+ "id": 2711,
+ "name": "Guรฉckรฉdou Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "GU",
+ "type": null,
+ "latitude": "8.56496880",
+ "longitude": "-10.13111630"
+ },
+ {
+ "id": 2704,
+ "name": "Kankan Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "KA",
+ "type": null,
+ "latitude": "10.30344650",
+ "longitude": "-9.36730840"
+ },
+ {
+ "id": 2697,
+ "name": "Kankan Region",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "K",
+ "type": null,
+ "latitude": "10.12092300",
+ "longitude": "-9.54509740"
+ },
+ {
+ "id": 2710,
+ "name": "Kรฉrouanรฉ Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "KE",
+ "type": null,
+ "latitude": "9.25366430",
+ "longitude": "-9.01289260"
+ },
+ {
+ "id": 2693,
+ "name": "Kindia Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "KD",
+ "type": null,
+ "latitude": "10.10132920",
+ "longitude": "-12.71351210"
+ },
+ {
+ "id": 2701,
+ "name": "Kindia Region",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "D",
+ "type": null,
+ "latitude": "10.17816940",
+ "longitude": "-12.98961500"
+ },
+ {
+ "id": 2691,
+ "name": "Kissidougou Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "KS",
+ "type": null,
+ "latitude": "9.22520220",
+ "longitude": "-10.08072980"
+ },
+ {
+ "id": 2692,
+ "name": "Koubia Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "KB",
+ "type": null,
+ "latitude": "11.58235400",
+ "longitude": "-11.89202370"
+ },
+ {
+ "id": 2703,
+ "name": "Koundara Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "KN",
+ "type": null,
+ "latitude": "12.48940210",
+ "longitude": "-13.30675620"
+ },
+ {
+ "id": 2695,
+ "name": "Kouroussa Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "KO",
+ "type": null,
+ "latitude": "10.64892290",
+ "longitude": "-9.88505860"
+ },
+ {
+ "id": 2680,
+ "name": "Labรฉ Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "LA",
+ "type": null,
+ "latitude": "11.35419390",
+ "longitude": "-12.34638750"
+ },
+ {
+ "id": 2677,
+ "name": "Labรฉ Region",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "L",
+ "type": null,
+ "latitude": "11.32320420",
+ "longitude": "-12.28913140"
+ },
+ {
+ "id": 2690,
+ "name": "Lรฉlouma Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "LE",
+ "type": null,
+ "latitude": "11.18333300",
+ "longitude": "-12.93333300"
+ },
+ {
+ "id": 2708,
+ "name": "Lola Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "LO",
+ "type": null,
+ "latitude": "7.96138180",
+ "longitude": "-8.39649380"
+ },
+ {
+ "id": 2702,
+ "name": "Macenta Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "MC",
+ "type": null,
+ "latitude": "8.46157950",
+ "longitude": "-9.27855830"
+ },
+ {
+ "id": 2700,
+ "name": "Mali Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "ML",
+ "type": null,
+ "latitude": "11.98370900",
+ "longitude": "-12.25479190"
+ },
+ {
+ "id": 2689,
+ "name": "Mamou Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "MM",
+ "type": null,
+ "latitude": "10.57360240",
+ "longitude": "-11.88917210"
+ },
+ {
+ "id": 2698,
+ "name": "Mamou Region",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "M",
+ "type": null,
+ "latitude": "10.57360240",
+ "longitude": "-11.88917210"
+ },
+ {
+ "id": 2673,
+ "name": "Mandiana Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "MD",
+ "type": null,
+ "latitude": "10.61728270",
+ "longitude": "-8.69857160"
+ },
+ {
+ "id": 2678,
+ "name": "Nzรฉrรฉkorรฉ Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "NZ",
+ "type": null,
+ "latitude": "7.74783590",
+ "longitude": "-8.82525020"
+ },
+ {
+ "id": 2684,
+ "name": "Nzรฉrรฉkorรฉ Region",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "N",
+ "type": null,
+ "latitude": "8.03858700",
+ "longitude": "-8.83627550"
+ },
+ {
+ "id": 2694,
+ "name": "Pita Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "PI",
+ "type": null,
+ "latitude": "10.80620860",
+ "longitude": "-12.71351210"
+ },
+ {
+ "id": 2707,
+ "name": "Siguiri Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "SI",
+ "type": null,
+ "latitude": "11.41481130",
+ "longitude": "-9.17883040"
+ },
+ {
+ "id": 2687,
+ "name": "Tรฉlimรฉlรฉ Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "TE",
+ "type": null,
+ "latitude": "10.90893640",
+ "longitude": "-13.02993310"
+ },
+ {
+ "id": 2696,
+ "name": "Touguรฉ Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "TO",
+ "type": null,
+ "latitude": "11.38415830",
+ "longitude": "-11.61577730"
+ },
+ {
+ "id": 2674,
+ "name": "Yomou Prefecture",
+ "country_id": 92,
+ "country_code": "GN",
+ "country_name": "Guinea",
+ "state_code": "YO",
+ "type": null,
+ "latitude": "7.56962790",
+ "longitude": "-9.25915710"
+ },
+ {
+ "id": 2720,
+ "name": "Bafatรก",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "12.17352430",
+ "longitude": "-14.65295200"
+ },
+ {
+ "id": 2714,
+ "name": "Biombo Region",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "BM",
+ "type": null,
+ "latitude": "11.85290610",
+ "longitude": "-15.73511710"
+ },
+ {
+ "id": 2722,
+ "name": "Bolama Region",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "BL",
+ "type": null,
+ "latitude": "11.14805910",
+ "longitude": "-16.13457050"
+ },
+ {
+ "id": 2713,
+ "name": "Cacheu Region",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "CA",
+ "type": null,
+ "latitude": "12.05514160",
+ "longitude": "-16.06401790"
+ },
+ {
+ "id": 2719,
+ "name": "Gabรบ Region",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "GA",
+ "type": null,
+ "latitude": "11.89624880",
+ "longitude": "-14.10013260"
+ },
+ {
+ "id": 2721,
+ "name": "Leste Province",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "L",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2717,
+ "name": "Norte Province",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "N",
+ "type": null,
+ "latitude": "7.87218110",
+ "longitude": "123.88577470"
+ },
+ {
+ "id": 2718,
+ "name": "Oio Region",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "OI",
+ "type": null,
+ "latitude": "12.27607090",
+ "longitude": "-15.31311850"
+ },
+ {
+ "id": 2715,
+ "name": "Quinara Region",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "QU",
+ "type": null,
+ "latitude": "11.79556200",
+ "longitude": "-15.17268160"
+ },
+ {
+ "id": 2716,
+ "name": "Sul Province",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "S",
+ "type": null,
+ "latitude": "-10.28665780",
+ "longitude": "20.71224650"
+ },
+ {
+ "id": 2712,
+ "name": "Tombali Region",
+ "country_id": 93,
+ "country_code": "GW",
+ "country_name": "Guinea-Bissau",
+ "state_code": "TO",
+ "type": null,
+ "latitude": "11.36326960",
+ "longitude": "-14.98561760"
+ },
+ {
+ "id": 2764,
+ "name": "Barima-Waini",
+ "country_id": 94,
+ "country_code": "GY",
+ "country_name": "Guyana",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "7.48824190",
+ "longitude": "-59.65644940"
+ },
+ {
+ "id": 2760,
+ "name": "Cuyuni-Mazaruni",
+ "country_id": 94,
+ "country_code": "GY",
+ "country_name": "Guyana",
+ "state_code": "CU",
+ "type": null,
+ "latitude": "6.46421410",
+ "longitude": "-60.21107520"
+ },
+ {
+ "id": 2767,
+ "name": "Demerara-Mahaica",
+ "country_id": 94,
+ "country_code": "GY",
+ "country_name": "Guyana",
+ "state_code": "DE",
+ "type": null,
+ "latitude": "6.54642600",
+ "longitude": "-58.09820460"
+ },
+ {
+ "id": 2766,
+ "name": "East Berbice-Corentyne",
+ "country_id": 94,
+ "country_code": "GY",
+ "country_name": "Guyana",
+ "state_code": "EB",
+ "type": null,
+ "latitude": "2.74779220",
+ "longitude": "-57.46272590"
+ },
+ {
+ "id": 2768,
+ "name": "Essequibo Islands-West Demerara",
+ "country_id": 94,
+ "country_code": "GY",
+ "country_name": "Guyana",
+ "state_code": "ES",
+ "type": null,
+ "latitude": "6.57201320",
+ "longitude": "-58.46299970"
+ },
+ {
+ "id": 2762,
+ "name": "Mahaica-Berbice",
+ "country_id": 94,
+ "country_code": "GY",
+ "country_name": "Guyana",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "6.23849600",
+ "longitude": "-57.91625550"
+ },
+ {
+ "id": 2765,
+ "name": "Pomeroon-Supenaam",
+ "country_id": 94,
+ "country_code": "GY",
+ "country_name": "Guyana",
+ "state_code": "PM",
+ "type": null,
+ "latitude": "7.12941660",
+ "longitude": "-58.92062950"
+ },
+ {
+ "id": 2761,
+ "name": "Potaro-Siparuni",
+ "country_id": 94,
+ "country_code": "GY",
+ "country_name": "Guyana",
+ "state_code": "PT",
+ "type": null,
+ "latitude": "4.78558530",
+ "longitude": "-59.28799770"
+ },
+ {
+ "id": 2763,
+ "name": "Upper Demerara-Berbice",
+ "country_id": 94,
+ "country_code": "GY",
+ "country_name": "Guyana",
+ "state_code": "UD",
+ "type": null,
+ "latitude": "5.30648790",
+ "longitude": "-58.18929210"
+ },
+ {
+ "id": 2769,
+ "name": "Upper Takutu-Upper Essequibo",
+ "country_id": 94,
+ "country_code": "GY",
+ "country_name": "Guyana",
+ "state_code": "UT",
+ "type": null,
+ "latitude": "2.92395950",
+ "longitude": "-58.73736340"
+ },
+ {
+ "id": 4123,
+ "name": "Artibonite",
+ "country_id": 95,
+ "country_code": "HT",
+ "country_name": "Haiti",
+ "state_code": "AR",
+ "type": null,
+ "latitude": "19.36290200",
+ "longitude": "-72.42581450"
+ },
+ {
+ "id": 4125,
+ "name": "Centre",
+ "country_id": 95,
+ "country_code": "HT",
+ "country_name": "Haiti",
+ "state_code": "CE",
+ "type": null,
+ "latitude": "32.83702510",
+ "longitude": "-96.77738820"
+ },
+ {
+ "id": 4119,
+ "name": "Grand'Anse",
+ "country_id": 95,
+ "country_code": "HT",
+ "country_name": "Haiti",
+ "state_code": "GA",
+ "type": null,
+ "latitude": "12.01666670",
+ "longitude": "-61.76666670"
+ },
+ {
+ "id": 4118,
+ "name": "Nippes",
+ "country_id": 95,
+ "country_code": "HT",
+ "country_name": "Haiti",
+ "state_code": "NI",
+ "type": null,
+ "latitude": "18.39907350",
+ "longitude": "-73.41802110"
+ },
+ {
+ "id": 4117,
+ "name": "Nord",
+ "country_id": 95,
+ "country_code": "HT",
+ "country_name": "Haiti",
+ "state_code": "ND",
+ "type": null,
+ "latitude": "43.19052600",
+ "longitude": "-89.43792100"
+ },
+ {
+ "id": 4121,
+ "name": "Nord-Est",
+ "country_id": 95,
+ "country_code": "HT",
+ "country_name": "Haiti",
+ "state_code": "NE",
+ "type": null,
+ "latitude": "19.48897230",
+ "longitude": "-71.85713310"
+ },
+ {
+ "id": 4126,
+ "name": "Nord-Ouest",
+ "country_id": 95,
+ "country_code": "HT",
+ "country_name": "Haiti",
+ "state_code": "NO",
+ "type": null,
+ "latitude": "19.83740090",
+ "longitude": "-73.04052770"
+ },
+ {
+ "id": 4120,
+ "name": "Ouest",
+ "country_id": 95,
+ "country_code": "HT",
+ "country_name": "Haiti",
+ "state_code": "OU",
+ "type": null,
+ "latitude": "45.45472490",
+ "longitude": "-73.65023650"
+ },
+ {
+ "id": 4122,
+ "name": "Sud",
+ "country_id": 95,
+ "country_code": "HT",
+ "country_name": "Haiti",
+ "state_code": "SD",
+ "type": null,
+ "latitude": "29.92132480",
+ "longitude": "-90.09737720"
+ },
+ {
+ "id": 4124,
+ "name": "Sud-Est",
+ "country_id": 95,
+ "country_code": "HT",
+ "country_name": "Haiti",
+ "state_code": "SE",
+ "type": null,
+ "latitude": "18.27835980",
+ "longitude": "-72.35479150"
+ },
+ {
+ "id": 4047,
+ "name": "Atlรกntida Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "AT",
+ "type": null,
+ "latitude": "15.66962830",
+ "longitude": "-87.14228950"
+ },
+ {
+ "id": 4045,
+ "name": "Bay Islands Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "IB",
+ "type": null,
+ "latitude": "16.48266140",
+ "longitude": "-85.87932520"
+ },
+ {
+ "id": 4041,
+ "name": "Choluteca Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "CH",
+ "type": null,
+ "latitude": "13.25043250",
+ "longitude": "-87.14228950"
+ },
+ {
+ "id": 4051,
+ "name": "Colรณn Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "CL",
+ "type": null,
+ "latitude": "15.64259650",
+ "longitude": "-85.52002400"
+ },
+ {
+ "id": 4042,
+ "name": "Comayagua Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "CM",
+ "type": null,
+ "latitude": "14.55348280",
+ "longitude": "-87.61863790"
+ },
+ {
+ "id": 4049,
+ "name": "Copรกn Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "CP",
+ "type": null,
+ "latitude": "14.93608380",
+ "longitude": "-88.86469800"
+ },
+ {
+ "id": 4046,
+ "name": "Cortรฉs Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "CR",
+ "type": null,
+ "latitude": "15.49235080",
+ "longitude": "-88.09007620"
+ },
+ {
+ "id": 4043,
+ "name": "El Paraรญso Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "EP",
+ "type": null,
+ "latitude": "13.98212940",
+ "longitude": "-86.49965460"
+ },
+ {
+ "id": 4052,
+ "name": "Francisco Morazรกn Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "FM",
+ "type": null,
+ "latitude": "14.45411000",
+ "longitude": "-87.06242610"
+ },
+ {
+ "id": 4048,
+ "name": "Gracias a Dios Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "GD",
+ "type": null,
+ "latitude": "15.34180600",
+ "longitude": "-84.60604490"
+ },
+ {
+ "id": 4044,
+ "name": "Intibucรก Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "IN",
+ "type": null,
+ "latitude": "14.37273400",
+ "longitude": "-88.24611830"
+ },
+ {
+ "id": 4058,
+ "name": "La Paz Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "LP",
+ "type": null,
+ "latitude": "-15.08924160",
+ "longitude": "-68.52471490"
+ },
+ {
+ "id": 4054,
+ "name": "Lempira Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "LE",
+ "type": null,
+ "latitude": "14.18876980",
+ "longitude": "-88.55653100"
+ },
+ {
+ "id": 4056,
+ "name": "Ocotepeque Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "OC",
+ "type": null,
+ "latitude": "14.51703470",
+ "longitude": "-89.05615320"
+ },
+ {
+ "id": 4050,
+ "name": "Olancho Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "OL",
+ "type": null,
+ "latitude": "14.80674060",
+ "longitude": "-85.76666450"
+ },
+ {
+ "id": 4053,
+ "name": "Santa Bรกrbara Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "SB",
+ "type": null,
+ "latitude": "15.12027950",
+ "longitude": "-88.40160410"
+ },
+ {
+ "id": 4055,
+ "name": "Valle Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "VA",
+ "type": null,
+ "latitude": "13.57829360",
+ "longitude": "-87.57912870"
+ },
+ {
+ "id": 4057,
+ "name": "Yoro Department",
+ "country_id": 97,
+ "country_code": "HN",
+ "country_name": "Honduras",
+ "state_code": "YO",
+ "type": null,
+ "latitude": "15.29496790",
+ "longitude": "-87.14228950"
+ },
+ {
+ "id": 4889,
+ "name": "Central and Western",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "HCW",
+ "type": "district",
+ "latitude": "22.28666000",
+ "longitude": "114.15497000"
+ },
+ {
+ "id": 4891,
+ "name": "Eastern",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "HEA",
+ "type": "district",
+ "latitude": "22.28411000",
+ "longitude": "114.22414000"
+ },
+ {
+ "id": 4888,
+ "name": "Islands",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "NIS",
+ "type": "district",
+ "latitude": "22.26114000",
+ "longitude": "113.94608000"
+ },
+ {
+ "id": 4895,
+ "name": "Kowloon City",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "KKC",
+ "type": "district",
+ "latitude": "22.32820000",
+ "longitude": "114.19155000"
+ },
+ {
+ "id": 4898,
+ "name": "Kwai Tsing",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "NKT",
+ "type": "district",
+ "latitude": "22.35488000",
+ "longitude": "114.08401000"
+ },
+ {
+ "id": 4897,
+ "name": "Kwun Tong",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "KKT",
+ "type": "district",
+ "latitude": "22.31326000",
+ "longitude": "114.22581000"
+ },
+ {
+ "id": 4900,
+ "name": "North",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "NNO",
+ "type": "district",
+ "latitude": "22.49471000",
+ "longitude": "114.13812000"
+ },
+ {
+ "id": 4887,
+ "name": "Sai Kung",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "NSK",
+ "type": "district",
+ "latitude": "22.38143000",
+ "longitude": "114.27052000"
+ },
+ {
+ "id": 4901,
+ "name": "Sha Tin",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "NST",
+ "type": "district",
+ "latitude": "22.38715000",
+ "longitude": "114.19534000"
+ },
+ {
+ "id": 4894,
+ "name": "Sham Shui Po",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "KSS",
+ "type": "district",
+ "latitude": "22.33074000",
+ "longitude": "114.16220000"
+ },
+ {
+ "id": 4892,
+ "name": "Southern",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "HSO",
+ "type": "district",
+ "latitude": "22.24725000",
+ "longitude": "114.15884000"
+ },
+ {
+ "id": 4885,
+ "name": "Tai Po",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "NTP",
+ "type": "district",
+ "latitude": "22.45085000",
+ "longitude": "114.16422000"
+ },
+ {
+ "id": 4884,
+ "name": "Tsuen Wan",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "NTW",
+ "type": "district",
+ "latitude": "22.36281000",
+ "longitude": "114.12907000"
+ },
+ {
+ "id": 4899,
+ "name": "Tuen Mun",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "NTM",
+ "type": "district",
+ "latitude": "22.39163000",
+ "longitude": "113.97708850"
+ },
+ {
+ "id": 4890,
+ "name": "Wan Chai",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "HWC",
+ "type": "district",
+ "latitude": "22.27968000",
+ "longitude": "114.17168000"
+ },
+ {
+ "id": 4896,
+ "name": "Wong Tai Sin",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "KWT",
+ "type": "district",
+ "latitude": "22.33353000",
+ "longitude": "114.19686000"
+ },
+ {
+ "id": 4893,
+ "name": "Yau Tsim Mong",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "KYT",
+ "type": "district",
+ "latitude": "22.32138000",
+ "longitude": "114.17260000"
+ },
+ {
+ "id": 4883,
+ "name": "Yuen Long",
+ "country_id": 98,
+ "country_code": "HK",
+ "country_name": "Hong Kong S.A.R.",
+ "state_code": "NYL",
+ "type": "district",
+ "latitude": "22.44559000",
+ "longitude": "114.02218000"
+ },
+ {
+ "id": 1048,
+ "name": "Bรกcs-Kiskun",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "BK",
+ "type": "county",
+ "latitude": "46.56614370",
+ "longitude": "19.42724640"
+ },
+ {
+ "id": 1055,
+ "name": "Baranya",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "BA",
+ "type": "county",
+ "latitude": "46.04845850",
+ "longitude": "18.27191730"
+ },
+ {
+ "id": 1060,
+ "name": "Bรฉkรฉs",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "BE",
+ "type": "county",
+ "latitude": "46.67048990",
+ "longitude": "21.04349960"
+ },
+ {
+ "id": 1036,
+ "name": "Bรฉkรฉscsaba",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "BC",
+ "type": "city with county rights",
+ "latitude": "46.67359390",
+ "longitude": "21.08773090"
+ },
+ {
+ "id": 1058,
+ "name": "Borsod-Abaรบj-Zemplรฉn",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "BZ",
+ "type": "county",
+ "latitude": "48.29394010",
+ "longitude": "20.69341120"
+ },
+ {
+ "id": 1064,
+ "name": "Budapest",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "BU",
+ "type": "capital city",
+ "latitude": "47.49791200",
+ "longitude": "19.04023500"
+ },
+ {
+ "id": 1031,
+ "name": "Csongrรกd County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "CS",
+ "type": "county",
+ "latitude": "46.41670500",
+ "longitude": "20.25661610"
+ },
+ {
+ "id": 1032,
+ "name": "Debrecen",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "DE",
+ "type": "city with county rights",
+ "latitude": "47.53160490",
+ "longitude": "21.62731240"
+ },
+ {
+ "id": 1049,
+ "name": "Dunaรบjvรกros",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "DU",
+ "type": "city with county rights",
+ "latitude": "46.96190590",
+ "longitude": "18.93552270"
+ },
+ {
+ "id": 1037,
+ "name": "Eger",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "EG",
+ "type": "city with county rights",
+ "latitude": "47.90253480",
+ "longitude": "20.37722840"
+ },
+ {
+ "id": 1028,
+ "name": "รrd",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "ER",
+ "type": "city with county rights",
+ "latitude": "47.39197180",
+ "longitude": "18.90454400"
+ },
+ {
+ "id": 1044,
+ "name": "Fejรฉr County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "FE",
+ "type": "county",
+ "latitude": "47.12179320",
+ "longitude": "18.52948150"
+ },
+ {
+ "id": 1041,
+ "name": "Gyลr",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "GY",
+ "type": "city with county rights",
+ "latitude": "47.68745690",
+ "longitude": "17.65039740"
+ },
+ {
+ "id": 1042,
+ "name": "Gyลr-Moson-Sopron County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "GS",
+ "type": "county",
+ "latitude": "47.65092850",
+ "longitude": "17.25058830"
+ },
+ {
+ "id": 1063,
+ "name": "Hajdรบ-Bihar County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "HB",
+ "type": "county",
+ "latitude": "47.46883550",
+ "longitude": "21.54532270"
+ },
+ {
+ "id": 1040,
+ "name": "Heves County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "HE",
+ "type": "county",
+ "latitude": "47.80576170",
+ "longitude": "20.20385590"
+ },
+ {
+ "id": 1027,
+ "name": "Hรณdmezลvรกsรกrhely",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "HV",
+ "type": "city with county rights",
+ "latitude": "46.41812620",
+ "longitude": "20.33003150"
+ },
+ {
+ "id": 1043,
+ "name": "Jรกsz-Nagykun-Szolnok County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "JN",
+ "type": "county",
+ "latitude": "47.25555790",
+ "longitude": "20.52324560"
+ },
+ {
+ "id": 1067,
+ "name": "Kaposvรกr",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "KV",
+ "type": "city with county rights",
+ "latitude": "46.35936060",
+ "longitude": "17.79676390"
+ },
+ {
+ "id": 1056,
+ "name": "Kecskemรฉt",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "KM",
+ "type": "city with county rights",
+ "latitude": "46.89637110",
+ "longitude": "19.68968610"
+ },
+ {
+ "id": 5085,
+ "name": "Komรกrom-Esztergom",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "KE",
+ "type": "county",
+ "latitude": "47.57797860",
+ "longitude": "18.12568550"
+ },
+ {
+ "id": 1065,
+ "name": "Miskolc",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "MI",
+ "type": "city with county rights",
+ "latitude": "48.10347750",
+ "longitude": "20.77843840"
+ },
+ {
+ "id": 1030,
+ "name": "Nagykanizsa",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "NK",
+ "type": "city with county rights",
+ "latitude": "46.45902180",
+ "longitude": "16.98967960"
+ },
+ {
+ "id": 1051,
+ "name": "Nรณgrรกd County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "NO",
+ "type": "county",
+ "latitude": "47.90410310",
+ "longitude": "19.04985040"
+ },
+ {
+ "id": 1034,
+ "name": "Nyรญregyhรกza",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "NY",
+ "type": "city with county rights",
+ "latitude": "47.94953240",
+ "longitude": "21.72440530"
+ },
+ {
+ "id": 1053,
+ "name": "Pรฉcs",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "PS",
+ "type": "city with county rights",
+ "latitude": "46.07273450",
+ "longitude": "18.23226600"
+ },
+ {
+ "id": 1059,
+ "name": "Pest County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "PE",
+ "type": "county",
+ "latitude": "47.44800010",
+ "longitude": "19.46181280"
+ },
+ {
+ "id": 1068,
+ "name": "Salgรณtarjรกn",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "ST",
+ "type": "city with county rights",
+ "latitude": "48.09352370",
+ "longitude": "19.79998130"
+ },
+ {
+ "id": 1035,
+ "name": "Somogy County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "SO",
+ "type": "county",
+ "latitude": "46.55485900",
+ "longitude": "17.58667320"
+ },
+ {
+ "id": 1057,
+ "name": "Sopron",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "SN",
+ "type": "city with county rights",
+ "latitude": "47.68166190",
+ "longitude": "16.58447950"
+ },
+ {
+ "id": 1045,
+ "name": "Szabolcs-Szatmรกr-Bereg County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "SZ",
+ "type": "county",
+ "latitude": "48.03949540",
+ "longitude": "22.00333000"
+ },
+ {
+ "id": 1029,
+ "name": "Szeged",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "SD",
+ "type": "city with county rights",
+ "latitude": "46.25301020",
+ "longitude": "20.14142530"
+ },
+ {
+ "id": 1033,
+ "name": "Szรฉkesfehรฉrvรกr",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "SF",
+ "type": "city with county rights",
+ "latitude": "47.18602620",
+ "longitude": "18.42213580"
+ },
+ {
+ "id": 1061,
+ "name": "Szekszรกrd",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "SS",
+ "type": "city with county rights",
+ "latitude": "46.34743260",
+ "longitude": "18.70622930"
+ },
+ {
+ "id": 1047,
+ "name": "Szolnok",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "SK",
+ "type": "city with county rights",
+ "latitude": "47.16213550",
+ "longitude": "20.18247120"
+ },
+ {
+ "id": 1052,
+ "name": "Szombathely",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "SH",
+ "type": "city with county rights",
+ "latitude": "47.23068510",
+ "longitude": "16.62184410"
+ },
+ {
+ "id": 1066,
+ "name": "Tatabรกnya",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "TB",
+ "type": "city with county rights",
+ "latitude": "47.56924600",
+ "longitude": "18.40481800"
+ },
+ {
+ "id": 1038,
+ "name": "Tolna County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "TO",
+ "type": "county",
+ "latitude": "46.47627540",
+ "longitude": "18.55706270"
+ },
+ {
+ "id": 1039,
+ "name": "Vas County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "VA",
+ "type": "county",
+ "latitude": "47.09291110",
+ "longitude": "16.68121830"
+ },
+ {
+ "id": 1062,
+ "name": "Veszprรฉm",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "VM",
+ "type": "city with county rights",
+ "latitude": "47.10280870",
+ "longitude": "17.90930190"
+ },
+ {
+ "id": 1054,
+ "name": "Veszprรฉm County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "VE",
+ "type": "county",
+ "latitude": "47.09309740",
+ "longitude": "17.91007630"
+ },
+ {
+ "id": 1046,
+ "name": "Zala County",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "ZA",
+ "type": "county",
+ "latitude": "46.73844040",
+ "longitude": "16.91522520"
+ },
+ {
+ "id": 1050,
+ "name": "Zalaegerszeg",
+ "country_id": 99,
+ "country_code": "HU",
+ "country_name": "Hungary",
+ "state_code": "ZE",
+ "type": "county",
+ "latitude": "46.84169360",
+ "longitude": "16.84163220"
+ },
+ {
+ "id": 3431,
+ "name": "Capital Region",
+ "country_id": 100,
+ "country_code": "IS",
+ "country_name": "Iceland",
+ "state_code": "1",
+ "type": null,
+ "latitude": "38.56569570",
+ "longitude": "-92.18169490"
+ },
+ {
+ "id": 3433,
+ "name": "Eastern Region",
+ "country_id": 100,
+ "country_code": "IS",
+ "country_name": "Iceland",
+ "state_code": "7",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3437,
+ "name": "Northeastern Region",
+ "country_id": 100,
+ "country_code": "IS",
+ "country_name": "Iceland",
+ "state_code": "6",
+ "type": null,
+ "latitude": "43.29942850",
+ "longitude": "-74.21793260"
+ },
+ {
+ "id": 3435,
+ "name": "Northwestern Region",
+ "country_id": 100,
+ "country_code": "IS",
+ "country_name": "Iceland",
+ "state_code": "5",
+ "type": null,
+ "latitude": "41.91339320",
+ "longitude": "-73.04716880"
+ },
+ {
+ "id": 3430,
+ "name": "Southern Peninsula Region",
+ "country_id": 100,
+ "country_code": "IS",
+ "country_name": "Iceland",
+ "state_code": "2",
+ "type": null,
+ "latitude": "63.91548030",
+ "longitude": "-22.36496670"
+ },
+ {
+ "id": 3434,
+ "name": "Southern Region",
+ "country_id": 100,
+ "country_code": "IS",
+ "country_name": "Iceland",
+ "state_code": "8",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3436,
+ "name": "Western Region",
+ "country_id": 100,
+ "country_code": "IS",
+ "country_name": "Iceland",
+ "state_code": "3",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3432,
+ "name": "Westfjords",
+ "country_id": 100,
+ "country_code": "IS",
+ "country_name": "Iceland",
+ "state_code": "4",
+ "type": null,
+ "latitude": "65.91961500",
+ "longitude": "-21.88117640"
+ },
+ {
+ "id": 4023,
+ "name": "Andaman and Nicobar Islands",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "AN",
+ "type": "Union territory",
+ "latitude": "11.74008670",
+ "longitude": "92.65864010"
+ },
+ {
+ "id": 4017,
+ "name": "Andhra Pradesh",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "AP",
+ "type": "state",
+ "latitude": "15.91289980",
+ "longitude": "79.73998750"
+ },
+ {
+ "id": 4024,
+ "name": "Arunachal Pradesh",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "AR",
+ "type": "state",
+ "latitude": "28.21799940",
+ "longitude": "94.72775280"
+ },
+ {
+ "id": 4027,
+ "name": "Assam",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "AS",
+ "type": "state",
+ "latitude": "26.20060430",
+ "longitude": "92.93757390"
+ },
+ {
+ "id": 4037,
+ "name": "Bihar",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "BR",
+ "type": "state",
+ "latitude": "25.09607420",
+ "longitude": "85.31311940"
+ },
+ {
+ "id": 4031,
+ "name": "Chandigarh",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "CH",
+ "type": "Union territory",
+ "latitude": "30.73331480",
+ "longitude": "76.77941790"
+ },
+ {
+ "id": 4040,
+ "name": "Chhattisgarh",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "CT",
+ "type": "state",
+ "latitude": "21.27865670",
+ "longitude": "81.86614420"
+ },
+ {
+ "id": 4033,
+ "name": "Dadra and Nagar Haveli and Daman and Diu",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "DH",
+ "type": "Union territory",
+ "latitude": "20.39737360",
+ "longitude": "72.83279910"
+ },
+ {
+ "id": 4021,
+ "name": "Delhi",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "DL",
+ "type": "Union territory",
+ "latitude": "28.70405920",
+ "longitude": "77.10249020"
+ },
+ {
+ "id": 4009,
+ "name": "Goa",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "GA",
+ "type": "state",
+ "latitude": "15.29932650",
+ "longitude": "74.12399600"
+ },
+ {
+ "id": 4030,
+ "name": "Gujarat",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "GJ",
+ "type": "state",
+ "latitude": "22.25865200",
+ "longitude": "71.19238050"
+ },
+ {
+ "id": 4007,
+ "name": "Haryana",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "HR",
+ "type": "state",
+ "latitude": "29.05877570",
+ "longitude": "76.08560100"
+ },
+ {
+ "id": 4020,
+ "name": "Himachal Pradesh",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "HP",
+ "type": "state",
+ "latitude": "31.10482940",
+ "longitude": "77.17339010"
+ },
+ {
+ "id": 4029,
+ "name": "Jammu and Kashmir",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "JK",
+ "type": "Union territory",
+ "latitude": "33.27783900",
+ "longitude": "75.34121790"
+ },
+ {
+ "id": 4025,
+ "name": "Jharkhand",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "JH",
+ "type": "state",
+ "latitude": "23.61018080",
+ "longitude": "85.27993540"
+ },
+ {
+ "id": 4026,
+ "name": "Karnataka",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "KA",
+ "type": "state",
+ "latitude": "15.31727750",
+ "longitude": "75.71388840"
+ },
+ {
+ "id": 4028,
+ "name": "Kerala",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "KL",
+ "type": "state",
+ "latitude": "10.85051590",
+ "longitude": "76.27108330"
+ },
+ {
+ "id": 4852,
+ "name": "Ladakh",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "LA",
+ "type": "Union territory",
+ "latitude": "34.22684750",
+ "longitude": "77.56194190"
+ },
+ {
+ "id": 4019,
+ "name": "Lakshadweep",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "LD",
+ "type": "Union territory",
+ "latitude": "10.32802650",
+ "longitude": "72.78463360"
+ },
+ {
+ "id": 4039,
+ "name": "Madhya Pradesh",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "MP",
+ "type": "state",
+ "latitude": "22.97342290",
+ "longitude": "78.65689420"
+ },
+ {
+ "id": 4008,
+ "name": "Maharashtra",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "MH",
+ "type": "state",
+ "latitude": "19.75147980",
+ "longitude": "75.71388840"
+ },
+ {
+ "id": 4010,
+ "name": "Manipur",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "MN",
+ "type": "state",
+ "latitude": "24.66371730",
+ "longitude": "93.90626880"
+ },
+ {
+ "id": 4006,
+ "name": "Meghalaya",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "ML",
+ "type": "state",
+ "latitude": "25.46703080",
+ "longitude": "91.36621600"
+ },
+ {
+ "id": 4036,
+ "name": "Mizoram",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "MZ",
+ "type": "state",
+ "latitude": "23.16454300",
+ "longitude": "92.93757390"
+ },
+ {
+ "id": 4018,
+ "name": "Nagaland",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "NL",
+ "type": "state",
+ "latitude": "26.15843540",
+ "longitude": "94.56244260"
+ },
+ {
+ "id": 4013,
+ "name": "Odisha",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "OR",
+ "type": "state",
+ "latitude": "20.95166580",
+ "longitude": "85.09852360"
+ },
+ {
+ "id": 4011,
+ "name": "Puducherry",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "PY",
+ "type": "Union territory",
+ "latitude": "11.94159150",
+ "longitude": "79.80831330"
+ },
+ {
+ "id": 4015,
+ "name": "Punjab",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "PB",
+ "type": "state",
+ "latitude": "31.14713050",
+ "longitude": "75.34121790"
+ },
+ {
+ "id": 4014,
+ "name": "Rajasthan",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "RJ",
+ "type": "state",
+ "latitude": "27.02380360",
+ "longitude": "74.21793260"
+ },
+ {
+ "id": 4034,
+ "name": "Sikkim",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "SK",
+ "type": "state",
+ "latitude": "27.53297180",
+ "longitude": "88.51221780"
+ },
+ {
+ "id": 4035,
+ "name": "Tamil Nadu",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "TN",
+ "type": "state",
+ "latitude": "11.12712250",
+ "longitude": "78.65689420"
+ },
+ {
+ "id": 4012,
+ "name": "Telangana",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "TG",
+ "type": "state",
+ "latitude": "18.11243720",
+ "longitude": "79.01929970"
+ },
+ {
+ "id": 4038,
+ "name": "Tripura",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "TR",
+ "type": "state",
+ "latitude": "23.94084820",
+ "longitude": "91.98815270"
+ },
+ {
+ "id": 4022,
+ "name": "Uttar Pradesh",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "UP",
+ "type": "state",
+ "latitude": "26.84670880",
+ "longitude": "80.94615920"
+ },
+ {
+ "id": 4016,
+ "name": "Uttarakhand",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "UT",
+ "type": "state",
+ "latitude": "30.06675300",
+ "longitude": "79.01929970"
+ },
+ {
+ "id": 4853,
+ "name": "West Bengal",
+ "country_id": 101,
+ "country_code": "IN",
+ "country_name": "India",
+ "state_code": "WB",
+ "type": "state",
+ "latitude": "22.98675690",
+ "longitude": "87.85497550"
+ },
+ {
+ "id": 1822,
+ "name": "Aceh",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "AC",
+ "type": "province",
+ "latitude": "4.69513500",
+ "longitude": "96.74939930"
+ },
+ {
+ "id": 1826,
+ "name": "Bali",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "BA",
+ "type": "province",
+ "latitude": "-8.34053890",
+ "longitude": "115.09195090"
+ },
+ {
+ "id": 1810,
+ "name": "Banten",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "BT",
+ "type": "province",
+ "latitude": "-6.40581720",
+ "longitude": "106.06401790"
+ },
+ {
+ "id": 1793,
+ "name": "Bengkulu",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "BE",
+ "type": "province",
+ "latitude": "-3.79284510",
+ "longitude": "102.26076410"
+ },
+ {
+ "id": 1829,
+ "name": "DI Yogyakarta",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "YO",
+ "type": "province",
+ "latitude": "-7.87538490",
+ "longitude": "110.42620880"
+ },
+ {
+ "id": 1805,
+ "name": "DKI Jakarta",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "JK",
+ "type": "capital district",
+ "latitude": "-6.20876340",
+ "longitude": "106.84559900"
+ },
+ {
+ "id": 1812,
+ "name": "Gorontalo",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "GO",
+ "type": "province",
+ "latitude": "0.54354420",
+ "longitude": "123.05676930"
+ },
+ {
+ "id": 1815,
+ "name": "Jambi",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "JA",
+ "type": "province",
+ "latitude": "-1.61012290",
+ "longitude": "103.61312030"
+ },
+ {
+ "id": 1825,
+ "name": "Jawa Barat",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "JB",
+ "type": "province",
+ "latitude": "-7.09091100",
+ "longitude": "107.66888700"
+ },
+ {
+ "id": 1802,
+ "name": "Jawa Tengah",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "JT",
+ "type": "province",
+ "latitude": "-7.15097500",
+ "longitude": "110.14025940"
+ },
+ {
+ "id": 1827,
+ "name": "Jawa Timur",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "JI",
+ "type": "province",
+ "latitude": "-7.53606390",
+ "longitude": "112.23840170"
+ },
+ {
+ "id": 1806,
+ "name": "Kalimantan Barat",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "KB",
+ "type": "province",
+ "latitude": "0.47734750",
+ "longitude": "106.61314050"
+ },
+ {
+ "id": 1819,
+ "name": "Kalimantan Selatan",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "KS",
+ "type": "province",
+ "latitude": "-3.09264150",
+ "longitude": "115.28375850"
+ },
+ {
+ "id": 1794,
+ "name": "Kalimantan Tengah",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "KT",
+ "type": "province",
+ "latitude": "-1.68148780",
+ "longitude": "113.38235450"
+ },
+ {
+ "id": 1804,
+ "name": "Kalimantan Timur",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "KI",
+ "type": "province",
+ "latitude": "0.53865860",
+ "longitude": "116.41938900"
+ },
+ {
+ "id": 1824,
+ "name": "Kalimantan Utara",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "KU",
+ "type": "province",
+ "latitude": "3.07309290",
+ "longitude": "116.04138890"
+ },
+ {
+ "id": 1820,
+ "name": "Kepulauan Bangka Belitung",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "BB",
+ "type": "province",
+ "latitude": "-2.74105130",
+ "longitude": "106.44058720"
+ },
+ {
+ "id": 1807,
+ "name": "Kepulauan Riau",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "KR",
+ "type": "province",
+ "latitude": "3.94565140",
+ "longitude": "108.14286690"
+ },
+ {
+ "id": 1811,
+ "name": "Lampung",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "LA",
+ "type": "province",
+ "latitude": "-4.55858490",
+ "longitude": "105.40680790"
+ },
+ {
+ "id": 1800,
+ "name": "Maluku",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "MA",
+ "type": "province",
+ "latitude": "-3.23846160",
+ "longitude": "130.14527340"
+ },
+ {
+ "id": 1801,
+ "name": "Maluku Utara",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "MU",
+ "type": "province",
+ "latitude": "1.57099930",
+ "longitude": "127.80876930"
+ },
+ {
+ "id": 1814,
+ "name": "Nusa Tenggara Barat",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "NB",
+ "type": "province",
+ "latitude": "-8.65293340",
+ "longitude": "117.36164760"
+ },
+ {
+ "id": 1818,
+ "name": "Nusa Tenggara Timur",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "NT",
+ "type": "province",
+ "latitude": "-8.65738190",
+ "longitude": "121.07937050"
+ },
+ {
+ "id": 1798,
+ "name": "Papua",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "PA",
+ "type": "province",
+ "latitude": "-5.01222020",
+ "longitude": "141.34701590"
+ },
+ {
+ "id": 1799,
+ "name": "Papua Barat",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "PB",
+ "type": "province",
+ "latitude": "-1.33611540",
+ "longitude": "133.17471620"
+ },
+ {
+ "id": 1809,
+ "name": "Riau",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "RI",
+ "type": "province",
+ "latitude": "0.29334690",
+ "longitude": "101.70682940"
+ },
+ {
+ "id": 1817,
+ "name": "Sulawesi Barat",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "SR",
+ "type": "province",
+ "latitude": "-2.84413710",
+ "longitude": "119.23207840"
+ },
+ {
+ "id": 1795,
+ "name": "Sulawesi Selatan",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "SN",
+ "type": "province",
+ "latitude": "-3.66879940",
+ "longitude": "119.97405340"
+ },
+ {
+ "id": 1813,
+ "name": "Sulawesi Tengah",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "ST",
+ "type": "province",
+ "latitude": "-1.43002540",
+ "longitude": "121.44561790"
+ },
+ {
+ "id": 1796,
+ "name": "Sulawesi Tenggara",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "SG",
+ "type": "province",
+ "latitude": "-4.14491000",
+ "longitude": "122.17460500"
+ },
+ {
+ "id": 1808,
+ "name": "Sulawesi Utara",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "SA",
+ "type": "province",
+ "latitude": "0.62469320",
+ "longitude": "123.97500180"
+ },
+ {
+ "id": 1828,
+ "name": "Sumatera Barat",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "SB",
+ "type": "province",
+ "latitude": "-0.73993970",
+ "longitude": "100.80000510"
+ },
+ {
+ "id": 1816,
+ "name": "Sumatera Selatan",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "SS",
+ "type": "province",
+ "latitude": "-3.31943740",
+ "longitude": "103.91439900"
+ },
+ {
+ "id": 1792,
+ "name": "Sumatera Utara",
+ "country_id": 102,
+ "country_code": "ID",
+ "country_name": "Indonesia",
+ "state_code": "SU",
+ "type": "province",
+ "latitude": "2.11535470",
+ "longitude": "99.54509740"
+ },
+ {
+ "id": 3929,
+ "name": "Alborz",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "30",
+ "type": "province",
+ "latitude": "35.99604670",
+ "longitude": "50.92892460"
+ },
+ {
+ "id": 3934,
+ "name": "Ardabil",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "24",
+ "type": "province",
+ "latitude": "38.48532760",
+ "longitude": "47.89112090"
+ },
+ {
+ "id": 3932,
+ "name": "Bushehr",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "18",
+ "type": "province",
+ "latitude": "28.76207390",
+ "longitude": "51.51500770"
+ },
+ {
+ "id": 3921,
+ "name": "Chaharmahal and Bakhtiari",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "14",
+ "type": "province",
+ "latitude": "31.99704190",
+ "longitude": "50.66138490"
+ },
+ {
+ "id": 3944,
+ "name": "East Azerbaijan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "03",
+ "type": "province",
+ "latitude": "37.90357330",
+ "longitude": "46.26821090"
+ },
+ {
+ "id": 3939,
+ "name": "Fars",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "07",
+ "type": "province",
+ "latitude": "29.10438130",
+ "longitude": "53.04589300"
+ },
+ {
+ "id": 3920,
+ "name": "Gilan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "01",
+ "type": "province",
+ "latitude": "37.28094550",
+ "longitude": "49.59241340"
+ },
+ {
+ "id": 3933,
+ "name": "Golestan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "27",
+ "type": "province",
+ "latitude": "37.28981230",
+ "longitude": "55.13758340"
+ },
+ {
+ "id": 4920,
+ "name": "Hamadan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "13",
+ "type": "province",
+ "latitude": "34.91936070",
+ "longitude": "47.48329250"
+ },
+ {
+ "id": 3937,
+ "name": "Hormozgan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "22",
+ "type": "province",
+ "latitude": "27.13872300",
+ "longitude": "55.13758340"
+ },
+ {
+ "id": 3918,
+ "name": "Ilam",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "16",
+ "type": "province",
+ "latitude": "33.29576180",
+ "longitude": "46.67053400"
+ },
+ {
+ "id": 3923,
+ "name": "Isfahan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "10",
+ "type": "province",
+ "latitude": "33.27710730",
+ "longitude": "52.36133780"
+ },
+ {
+ "id": 3943,
+ "name": "Kerman",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "08",
+ "type": "province",
+ "latitude": "29.48500890",
+ "longitude": "57.64390480"
+ },
+ {
+ "id": 3919,
+ "name": "Kermanshah",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "05",
+ "type": "province",
+ "latitude": "34.45762330",
+ "longitude": "46.67053400"
+ },
+ {
+ "id": 3917,
+ "name": "Khuzestan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "06",
+ "type": "province",
+ "latitude": "31.43601490",
+ "longitude": "49.04131200"
+ },
+ {
+ "id": 3926,
+ "name": "Kohgiluyeh and Boyer-Ahmad",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "17",
+ "type": "province",
+ "latitude": "30.72458600",
+ "longitude": "50.84563230"
+ },
+ {
+ "id": 3935,
+ "name": "Kurdistan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "12",
+ "type": "province",
+ "latitude": "35.95535790",
+ "longitude": "47.13621250"
+ },
+ {
+ "id": 3928,
+ "name": "Lorestan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "15",
+ "type": "province",
+ "latitude": "33.58183940",
+ "longitude": "48.39881860"
+ },
+ {
+ "id": 3916,
+ "name": "Markazi",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "00",
+ "type": "province",
+ "latitude": "34.61230500",
+ "longitude": "49.85472660"
+ },
+ {
+ "id": 3938,
+ "name": "Mazandaran",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "02",
+ "type": "province",
+ "latitude": "36.22623930",
+ "longitude": "52.53186040"
+ },
+ {
+ "id": 3942,
+ "name": "North Khorasan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "28",
+ "type": "province",
+ "latitude": "37.47103530",
+ "longitude": "57.10131880"
+ },
+ {
+ "id": 3941,
+ "name": "Qazvin",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "26",
+ "type": "province",
+ "latitude": "36.08813170",
+ "longitude": "49.85472660"
+ },
+ {
+ "id": 3922,
+ "name": "Qom",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "25",
+ "type": "province",
+ "latitude": "34.64157640",
+ "longitude": "50.87460350"
+ },
+ {
+ "id": 3927,
+ "name": "Razavi Khorasan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "09",
+ "type": "province",
+ "latitude": "35.10202530",
+ "longitude": "59.10417580"
+ },
+ {
+ "id": 3940,
+ "name": "Semnan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "20",
+ "type": "province",
+ "latitude": "35.22555850",
+ "longitude": "54.43421380"
+ },
+ {
+ "id": 3931,
+ "name": "Sistan and Baluchestan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "11",
+ "type": "province",
+ "latitude": "27.52999060",
+ "longitude": "60.58206760"
+ },
+ {
+ "id": 3930,
+ "name": "South Khorasan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "29",
+ "type": "province",
+ "latitude": "32.51756430",
+ "longitude": "59.10417580"
+ },
+ {
+ "id": 3945,
+ "name": "Tehran",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "23",
+ "type": "province",
+ "latitude": "35.72484160",
+ "longitude": "51.38165300"
+ },
+ {
+ "id": 3924,
+ "name": "West Azarbaijan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "04",
+ "type": "province",
+ "latitude": "37.45500620",
+ "longitude": "45.00000000"
+ },
+ {
+ "id": 3936,
+ "name": "Yazd",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "21",
+ "type": "province",
+ "latitude": "32.10063870",
+ "longitude": "54.43421380"
+ },
+ {
+ "id": 3925,
+ "name": "Zanjan",
+ "country_id": 103,
+ "country_code": "IR",
+ "country_name": "Iran",
+ "state_code": "19",
+ "type": "province",
+ "latitude": "36.50181850",
+ "longitude": "48.39881860"
+ },
+ {
+ "id": 3964,
+ "name": "Al Anbar",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "AN",
+ "type": "governorate",
+ "latitude": "32.55976140",
+ "longitude": "41.91964710"
+ },
+ {
+ "id": 3958,
+ "name": "Al Muthanna",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "MU",
+ "type": "governorate",
+ "latitude": "29.91331710",
+ "longitude": "45.29938620"
+ },
+ {
+ "id": 3956,
+ "name": "Al-Qฤdisiyyah",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "QA",
+ "type": "governorate",
+ "latitude": "32.04369100",
+ "longitude": "45.14945050"
+ },
+ {
+ "id": 3955,
+ "name": "Babylon",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "BB",
+ "type": "governorate",
+ "latitude": "32.46819100",
+ "longitude": "44.55019350"
+ },
+ {
+ "id": 3959,
+ "name": "Baghdad",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "BG",
+ "type": "governorate",
+ "latitude": "33.31526180",
+ "longitude": "44.36606530"
+ },
+ {
+ "id": 3960,
+ "name": "Basra",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "BA",
+ "type": "governorate",
+ "latitude": "30.51142520",
+ "longitude": "47.82962530"
+ },
+ {
+ "id": 3954,
+ "name": "Dhi Qar",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "DQ",
+ "type": "governorate",
+ "latitude": "31.10422920",
+ "longitude": "46.36246860"
+ },
+ {
+ "id": 3965,
+ "name": "Diyala",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "DI",
+ "type": "governorate",
+ "latitude": "33.77334870",
+ "longitude": "45.14945050"
+ },
+ {
+ "id": 3967,
+ "name": "Dohuk",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "DA",
+ "type": "governorate",
+ "latitude": "36.90772520",
+ "longitude": "43.06316890"
+ },
+ {
+ "id": 3968,
+ "name": "Erbil",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "AR",
+ "type": "governorate",
+ "latitude": "36.55706280",
+ "longitude": "44.38512630"
+ },
+ {
+ "id": 3957,
+ "name": "Karbala",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "KA",
+ "type": "governorate",
+ "latitude": "32.40454930",
+ "longitude": "43.86732220"
+ },
+ {
+ "id": 3971,
+ "name": "Kirkuk",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "KI",
+ "type": "governorate",
+ "latitude": "35.32920140",
+ "longitude": "43.94367880"
+ },
+ {
+ "id": 3966,
+ "name": "Maysan",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "MA",
+ "type": "governorate",
+ "latitude": "31.87340020",
+ "longitude": "47.13621250"
+ },
+ {
+ "id": 3962,
+ "name": "Najaf",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "NA",
+ "type": "governorate",
+ "latitude": "31.35174860",
+ "longitude": "44.09603110"
+ },
+ {
+ "id": 3963,
+ "name": "Nineveh",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "NI",
+ "type": "governorate",
+ "latitude": "36.22957400",
+ "longitude": "42.23624350"
+ },
+ {
+ "id": 3961,
+ "name": "Saladin",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "SD",
+ "type": "governorate",
+ "latitude": "34.53375270",
+ "longitude": "43.48373800"
+ },
+ {
+ "id": 3969,
+ "name": "Sulaymaniyah",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "SU",
+ "type": "governorate",
+ "latitude": "35.54663480",
+ "longitude": "45.30036830"
+ },
+ {
+ "id": 3970,
+ "name": "Wasit",
+ "country_id": 104,
+ "country_code": "IQ",
+ "country_name": "Iraq",
+ "state_code": "WA",
+ "type": "governorate",
+ "latitude": "32.60240940",
+ "longitude": "45.75209850"
+ },
+ {
+ "id": 1095,
+ "name": "Carlow",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "CW",
+ "type": "county",
+ "latitude": "52.72322170",
+ "longitude": "-6.81082950"
+ },
+ {
+ "id": 1088,
+ "name": "Cavan",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "CN",
+ "type": "county",
+ "latitude": "53.97654240",
+ "longitude": "-7.29966230"
+ },
+ {
+ "id": 1091,
+ "name": "Clare",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "CE",
+ "type": "county",
+ "latitude": "43.04664000",
+ "longitude": "-87.89958100"
+ },
+ {
+ "id": 1087,
+ "name": "Connacht",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "C",
+ "type": "province",
+ "latitude": "53.83762430",
+ "longitude": "-8.95844810"
+ },
+ {
+ "id": 1074,
+ "name": "Cork",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "CO",
+ "type": "county",
+ "latitude": "51.89851430",
+ "longitude": "-8.47560350"
+ },
+ {
+ "id": 1071,
+ "name": "Donegal",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "DL",
+ "type": "county",
+ "latitude": "54.65489930",
+ "longitude": "-8.10409670"
+ },
+ {
+ "id": 1072,
+ "name": "Dublin",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "D",
+ "type": "county",
+ "latitude": "53.34980530",
+ "longitude": "-6.26030970"
+ },
+ {
+ "id": 1079,
+ "name": "Galway",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "G",
+ "type": "county",
+ "latitude": "53.35645090",
+ "longitude": "-8.85341130"
+ },
+ {
+ "id": 1077,
+ "name": "Kerry",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "KY",
+ "type": "county",
+ "latitude": "52.15446070",
+ "longitude": "-9.56686330"
+ },
+ {
+ "id": 1082,
+ "name": "Kildare",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "KE",
+ "type": "county",
+ "latitude": "53.21204340",
+ "longitude": "-6.81947080"
+ },
+ {
+ "id": 1090,
+ "name": "Kilkenny",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "KK",
+ "type": "county",
+ "latitude": "52.57769570",
+ "longitude": "-7.21800200"
+ },
+ {
+ "id": 1096,
+ "name": "Laois",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "LS",
+ "type": "county",
+ "latitude": "52.99429500",
+ "longitude": "-7.33230070"
+ },
+ {
+ "id": 1073,
+ "name": "Leinster",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "L",
+ "type": "province",
+ "latitude": "53.32715380",
+ "longitude": "-7.51408410"
+ },
+ {
+ "id": 1094,
+ "name": "Limerick",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "LK",
+ "type": "county",
+ "latitude": "52.50905170",
+ "longitude": "-8.74749550"
+ },
+ {
+ "id": 1076,
+ "name": "Longford",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "LD",
+ "type": "county",
+ "latitude": "53.72749820",
+ "longitude": "-7.79315270"
+ },
+ {
+ "id": 1083,
+ "name": "Louth",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "LH",
+ "type": "county",
+ "latitude": "53.92523240",
+ "longitude": "-6.48894230"
+ },
+ {
+ "id": 1084,
+ "name": "Mayo",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "MO",
+ "type": "county",
+ "latitude": "54.01526040",
+ "longitude": "-9.42893690"
+ },
+ {
+ "id": 1092,
+ "name": "Meath",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "MH",
+ "type": "county",
+ "latitude": "53.60554800",
+ "longitude": "-6.65641690"
+ },
+ {
+ "id": 1075,
+ "name": "Monaghan",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "MN",
+ "type": "county",
+ "latitude": "54.24920460",
+ "longitude": "-6.96831320"
+ },
+ {
+ "id": 1080,
+ "name": "Munster",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "M",
+ "type": "province",
+ "latitude": "51.94711970",
+ "longitude": "7.58453200"
+ },
+ {
+ "id": 1078,
+ "name": "Offaly",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "OY",
+ "type": "county",
+ "latitude": "53.23568710",
+ "longitude": "-7.71222290"
+ },
+ {
+ "id": 1081,
+ "name": "Roscommon",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "RN",
+ "type": "county",
+ "latitude": "53.75926040",
+ "longitude": "-8.26816210"
+ },
+ {
+ "id": 1070,
+ "name": "Sligo",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "SO",
+ "type": "county",
+ "latitude": "54.15532770",
+ "longitude": "-8.60645320"
+ },
+ {
+ "id": 1069,
+ "name": "Tipperary",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "TA",
+ "type": "county",
+ "latitude": "52.47378940",
+ "longitude": "-8.16185140"
+ },
+ {
+ "id": 1086,
+ "name": "Ulster",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "U",
+ "type": "province",
+ "latitude": "54.76165550",
+ "longitude": "-6.96122730"
+ },
+ {
+ "id": 1089,
+ "name": "Waterford",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "WD",
+ "type": "county",
+ "latitude": "52.19435490",
+ "longitude": "-7.62275120"
+ },
+ {
+ "id": 1097,
+ "name": "Westmeath",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "WH",
+ "type": "county",
+ "latitude": "53.53453080",
+ "longitude": "-7.46532170"
+ },
+ {
+ "id": 1093,
+ "name": "Wexford",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "WX",
+ "type": "county",
+ "latitude": "52.47936030",
+ "longitude": "-6.58399130"
+ },
+ {
+ "id": 1085,
+ "name": "Wicklow",
+ "country_id": 105,
+ "country_code": "IE",
+ "country_name": "Ireland",
+ "state_code": "WW",
+ "type": "county",
+ "latitude": "52.98623130",
+ "longitude": "-6.36725430"
+ },
+ {
+ "id": 1367,
+ "name": "Central District",
+ "country_id": 106,
+ "country_code": "IL",
+ "country_name": "Israel",
+ "state_code": "M",
+ "type": null,
+ "latitude": "47.60875830",
+ "longitude": "-122.29642350"
+ },
+ {
+ "id": 1369,
+ "name": "Haifa District",
+ "country_id": 106,
+ "country_code": "IL",
+ "country_name": "Israel",
+ "state_code": "HA",
+ "type": null,
+ "latitude": "32.48141110",
+ "longitude": "34.99475100"
+ },
+ {
+ "id": 1370,
+ "name": "Jerusalem District",
+ "country_id": 106,
+ "country_code": "IL",
+ "country_name": "Israel",
+ "state_code": "JM",
+ "type": null,
+ "latitude": "31.76482430",
+ "longitude": "34.99475100"
+ },
+ {
+ "id": 1366,
+ "name": "Northern District",
+ "country_id": 106,
+ "country_code": "IL",
+ "country_name": "Israel",
+ "state_code": "Z",
+ "type": null,
+ "latitude": "36.15118640",
+ "longitude": "-95.99517630"
+ },
+ {
+ "id": 1368,
+ "name": "Southern District",
+ "country_id": 106,
+ "country_code": "IL",
+ "country_name": "Israel",
+ "state_code": "D",
+ "type": null,
+ "latitude": "40.71375860",
+ "longitude": "-74.00090590"
+ },
+ {
+ "id": 1371,
+ "name": "Tel Aviv District",
+ "country_id": 106,
+ "country_code": "IL",
+ "country_name": "Israel",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "32.09290750",
+ "longitude": "34.80721650"
+ },
+ {
+ "id": 1679,
+ "name": "Abruzzo",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "65",
+ "type": "region",
+ "latitude": "42.19201190",
+ "longitude": "13.72891670"
+ },
+ {
+ "id": 1727,
+ "name": "Agrigento",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "AG",
+ "type": "free municipal consortium",
+ "latitude": "37.31052020",
+ "longitude": "13.58579780"
+ },
+ {
+ "id": 1783,
+ "name": "Alessandria",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "AL",
+ "type": "province",
+ "latitude": "44.81755870",
+ "longitude": "8.70466270"
+ },
+ {
+ "id": 1672,
+ "name": "Ancona",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "AN",
+ "type": "province",
+ "latitude": "43.54932450",
+ "longitude": "13.26634790"
+ },
+ {
+ "id": 1716,
+ "name": "Aosta Valley",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "23",
+ "type": "autonomous region",
+ "latitude": "45.73888780",
+ "longitude": "7.42618660"
+ },
+ {
+ "id": 1688,
+ "name": "Apulia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "75",
+ "type": "region",
+ "latitude": "40.79283930",
+ "longitude": "17.10119310"
+ },
+ {
+ "id": 1681,
+ "name": "Ascoli Piceno",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "AP",
+ "type": "province",
+ "latitude": "42.86389330",
+ "longitude": "13.58997330"
+ },
+ {
+ "id": 1780,
+ "name": "Asti",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "AT",
+ "type": "province",
+ "latitude": "44.90076520",
+ "longitude": "8.20643150"
+ },
+ {
+ "id": 1692,
+ "name": "Avellino",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "AV",
+ "type": "province",
+ "latitude": "40.99645100",
+ "longitude": "15.12589550"
+ },
+ {
+ "id": 1686,
+ "name": "Barletta-Andria-Trani",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "BT",
+ "type": "province",
+ "latitude": "41.20045430",
+ "longitude": "16.20514840"
+ },
+ {
+ "id": 1706,
+ "name": "Basilicata",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "77",
+ "type": "region",
+ "latitude": "40.64307660",
+ "longitude": "15.96998780"
+ },
+ {
+ "id": 1689,
+ "name": "Belluno",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "BL",
+ "type": "province",
+ "latitude": "46.24976590",
+ "longitude": "12.19695650"
+ },
+ {
+ "id": 1701,
+ "name": "Benevento",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "BN",
+ "type": "province",
+ "latitude": "41.20350930",
+ "longitude": "14.75209390"
+ },
+ {
+ "id": 1704,
+ "name": "Bergamo",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "BG",
+ "type": "province",
+ "latitude": "45.69826420",
+ "longitude": "9.67726980"
+ },
+ {
+ "id": 1778,
+ "name": "Biella",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "BI",
+ "type": "province",
+ "latitude": "45.56281760",
+ "longitude": "8.05827170"
+ },
+ {
+ "id": 1717,
+ "name": "Brescia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "BS",
+ "type": "province",
+ "latitude": "45.54155260",
+ "longitude": "10.21180190"
+ },
+ {
+ "id": 1714,
+ "name": "Brindisi",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "BR",
+ "type": "province",
+ "latitude": "40.61126630",
+ "longitude": "17.76362100"
+ },
+ {
+ "id": 1703,
+ "name": "Calabria",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "78",
+ "type": "region",
+ "latitude": "39.30877140",
+ "longitude": "16.34637910"
+ },
+ {
+ "id": 1718,
+ "name": "Caltanissetta",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "CL",
+ "type": "free municipal consortium",
+ "latitude": "37.48601300",
+ "longitude": "14.06149820"
+ },
+ {
+ "id": 1669,
+ "name": "Campania",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "72",
+ "type": "region",
+ "latitude": "40.66708870",
+ "longitude": "15.10681130"
+ },
+ {
+ "id": 1721,
+ "name": "Campobasso",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "CB",
+ "type": "province",
+ "latitude": "41.67388650",
+ "longitude": "14.75209390"
+ },
+ {
+ "id": 1731,
+ "name": "Caserta",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "CE",
+ "type": "province",
+ "latitude": "41.20783540",
+ "longitude": "14.10013260"
+ },
+ {
+ "id": 1728,
+ "name": "Catanzaro",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "CZ",
+ "type": "province",
+ "latitude": "38.88963480",
+ "longitude": "16.44058720"
+ },
+ {
+ "id": 1739,
+ "name": "Chieti",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "CH",
+ "type": "province",
+ "latitude": "42.03344280",
+ "longitude": "14.37919120"
+ },
+ {
+ "id": 1740,
+ "name": "Como",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "CO",
+ "type": "province",
+ "latitude": "45.80804160",
+ "longitude": "9.08517930"
+ },
+ {
+ "id": 1742,
+ "name": "Cosenza",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "CS",
+ "type": "province",
+ "latitude": "39.56441050",
+ "longitude": "16.25221430"
+ },
+ {
+ "id": 1751,
+ "name": "Cremona",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "CR",
+ "type": "province",
+ "latitude": "45.20143750",
+ "longitude": "9.98365820"
+ },
+ {
+ "id": 1754,
+ "name": "Crotone",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "KR",
+ "type": "province",
+ "latitude": "39.13098560",
+ "longitude": "17.00670310"
+ },
+ {
+ "id": 1775,
+ "name": "Cuneo",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "CN",
+ "type": "province",
+ "latitude": "44.59703140",
+ "longitude": "7.61142170"
+ },
+ {
+ "id": 1773,
+ "name": "Emilia-Romagna",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "45",
+ "type": "region",
+ "latitude": "44.59676070",
+ "longitude": "11.21863960"
+ },
+ {
+ "id": 1723,
+ "name": "Enna",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "EN",
+ "type": "free municipal consortium",
+ "latitude": "37.56762160",
+ "longitude": "14.27953490"
+ },
+ {
+ "id": 1744,
+ "name": "Fermo",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "FM",
+ "type": "province",
+ "latitude": "43.09313670",
+ "longitude": "13.58997330"
+ },
+ {
+ "id": 1746,
+ "name": "Ferrara",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "FE",
+ "type": "province",
+ "latitude": "44.76636800",
+ "longitude": "11.76440680"
+ },
+ {
+ "id": 1771,
+ "name": "Foggia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "FG",
+ "type": "province",
+ "latitude": "41.63844800",
+ "longitude": "15.59433880"
+ },
+ {
+ "id": 1779,
+ "name": "Forlรฌ-Cesena",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "FC",
+ "type": "province",
+ "latitude": "43.99476810",
+ "longitude": "11.98046130"
+ },
+ {
+ "id": 1756,
+ "name": "FriuliโVenezia Giulia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "36",
+ "type": "autonomous region",
+ "latitude": "46.22591770",
+ "longitude": "13.10336460"
+ },
+ {
+ "id": 1776,
+ "name": "Frosinone",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "FR",
+ "type": "province",
+ "latitude": "41.65765280",
+ "longitude": "13.63627150"
+ },
+ {
+ "id": 1777,
+ "name": "Gorizia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "GO",
+ "type": "decentralized regional entity",
+ "latitude": "45.90538990",
+ "longitude": "13.51637250"
+ },
+ {
+ "id": 1787,
+ "name": "Grosseto",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "GR",
+ "type": "province",
+ "latitude": "42.85180070",
+ "longitude": "11.25237920"
+ },
+ {
+ "id": 1788,
+ "name": "Imperia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "IM",
+ "type": "province",
+ "latitude": "43.94186600",
+ "longitude": "7.82863680"
+ },
+ {
+ "id": 1789,
+ "name": "Isernia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "IS",
+ "type": "province",
+ "latitude": "41.58915550",
+ "longitude": "14.19309180"
+ },
+ {
+ "id": 1781,
+ "name": "L'Aquila",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "AQ",
+ "type": "province",
+ "latitude": "42.12563170",
+ "longitude": "13.63627150"
+ },
+ {
+ "id": 1791,
+ "name": "La Spezia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "SP",
+ "type": "province",
+ "latitude": "44.24479130",
+ "longitude": "9.76786870"
+ },
+ {
+ "id": 1674,
+ "name": "Latina",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "LT",
+ "type": "province",
+ "latitude": "41.40874760",
+ "longitude": "13.08179030"
+ },
+ {
+ "id": 1678,
+ "name": "Lazio",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "62",
+ "type": "region",
+ "latitude": "41.81224100",
+ "longitude": "12.73851000"
+ },
+ {
+ "id": 1675,
+ "name": "Lecce",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "LE",
+ "type": "province",
+ "latitude": "40.23473930",
+ "longitude": "18.14286690"
+ },
+ {
+ "id": 1677,
+ "name": "Lecco",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "LC",
+ "type": "province",
+ "latitude": "45.93829410",
+ "longitude": "9.38572900"
+ },
+ {
+ "id": 1768,
+ "name": "Liguria",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "42",
+ "type": "region",
+ "latitude": "44.31679170",
+ "longitude": "8.39649380"
+ },
+ {
+ "id": 1745,
+ "name": "Livorno",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "LI",
+ "type": "province",
+ "latitude": "43.02398480",
+ "longitude": "10.66471010"
+ },
+ {
+ "id": 1747,
+ "name": "Lodi",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "LO",
+ "type": "province",
+ "latitude": "45.24050360",
+ "longitude": "9.52925120"
+ },
+ {
+ "id": 1705,
+ "name": "Lombardy",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "25",
+ "type": "region",
+ "latitude": "45.47906710",
+ "longitude": "9.84524330"
+ },
+ {
+ "id": 1749,
+ "name": "Lucca",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "LU",
+ "type": "province",
+ "latitude": "43.83767360",
+ "longitude": "10.49505300"
+ },
+ {
+ "id": 1750,
+ "name": "Macerata",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "MC",
+ "type": "province",
+ "latitude": "43.24593220",
+ "longitude": "13.26634790"
+ },
+ {
+ "id": 1758,
+ "name": "Mantua",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "MN",
+ "type": "province",
+ "latitude": "45.16677280",
+ "longitude": "10.77536130"
+ },
+ {
+ "id": 1670,
+ "name": "Marche",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "57",
+ "type": "region",
+ "latitude": "43.30456200",
+ "longitude": "13.71947000"
+ },
+ {
+ "id": 1759,
+ "name": "Massa and Carrara",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "MS",
+ "type": "province",
+ "latitude": "44.22139980",
+ "longitude": "10.03596610"
+ },
+ {
+ "id": 1760,
+ "name": "Matera",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "MT",
+ "type": "province",
+ "latitude": "40.66634960",
+ "longitude": "16.60436360"
+ },
+ {
+ "id": 1761,
+ "name": "Medio Campidano",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "VS",
+ "type": "province",
+ "latitude": "39.53173890",
+ "longitude": "8.70407500"
+ },
+ {
+ "id": 1757,
+ "name": "Modena",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "MO",
+ "type": "province",
+ "latitude": "44.55137990",
+ "longitude": "10.91804800"
+ },
+ {
+ "id": 1695,
+ "name": "Molise",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "67",
+ "type": "region",
+ "latitude": "41.67388650",
+ "longitude": "14.75209390"
+ },
+ {
+ "id": 1769,
+ "name": "Monza and Brianza",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "MB",
+ "type": "province",
+ "latitude": "45.62359900",
+ "longitude": "9.25880150"
+ },
+ {
+ "id": 1774,
+ "name": "Novara",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "NO",
+ "type": "province",
+ "latitude": "45.54851330",
+ "longitude": "8.51507930"
+ },
+ {
+ "id": 1790,
+ "name": "Nuoro",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "NU",
+ "type": "province",
+ "latitude": "40.32869040",
+ "longitude": "9.45615500"
+ },
+ {
+ "id": 1786,
+ "name": "Oristano",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "OR",
+ "type": "province",
+ "latitude": "40.05990680",
+ "longitude": "8.74811670"
+ },
+ {
+ "id": 1665,
+ "name": "Padua",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PD",
+ "type": "province",
+ "latitude": "45.36618640",
+ "longitude": "11.82091390"
+ },
+ {
+ "id": 1668,
+ "name": "Palermo",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PA",
+ "type": "province",
+ "latitude": "38.11569000",
+ "longitude": "13.36148680"
+ },
+ {
+ "id": 1666,
+ "name": "Parma",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PR",
+ "type": "province",
+ "latitude": "44.80153220",
+ "longitude": "10.32793540"
+ },
+ {
+ "id": 1676,
+ "name": "Pavia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PV",
+ "type": "province",
+ "latitude": "45.32181660",
+ "longitude": "8.84662360"
+ },
+ {
+ "id": 1691,
+ "name": "Perugia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PG",
+ "type": "province",
+ "latitude": "42.93800400",
+ "longitude": "12.62162110"
+ },
+ {
+ "id": 1693,
+ "name": "Pesaro and Urbino",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PU",
+ "type": "province",
+ "latitude": "43.61301180",
+ "longitude": "12.71351210"
+ },
+ {
+ "id": 1694,
+ "name": "Pescara",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PE",
+ "type": "province",
+ "latitude": "42.35706550",
+ "longitude": "13.96080910"
+ },
+ {
+ "id": 1696,
+ "name": "Piacenza",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PC",
+ "type": "province",
+ "latitude": "44.82631120",
+ "longitude": "9.52914470"
+ },
+ {
+ "id": 1702,
+ "name": "Piedmont",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "21",
+ "type": "region",
+ "latitude": "45.05223660",
+ "longitude": "7.51538850"
+ },
+ {
+ "id": 1685,
+ "name": "Pisa",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PI",
+ "type": "province",
+ "latitude": "43.72283150",
+ "longitude": "10.40171940"
+ },
+ {
+ "id": 1687,
+ "name": "Pistoia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PT",
+ "type": "province",
+ "latitude": "43.95437330",
+ "longitude": "10.89030990"
+ },
+ {
+ "id": 1690,
+ "name": "Pordenone",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PN",
+ "type": "decentralized regional entity",
+ "latitude": "46.03788620",
+ "longitude": "12.71083500"
+ },
+ {
+ "id": 1697,
+ "name": "Potenza",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PZ",
+ "type": "province",
+ "latitude": "40.41821940",
+ "longitude": "15.87600400"
+ },
+ {
+ "id": 1700,
+ "name": "Prato",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "PO",
+ "type": "province",
+ "latitude": "44.04539000",
+ "longitude": "11.11644520"
+ },
+ {
+ "id": 1729,
+ "name": "Ragusa",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "RG",
+ "type": "free municipal consortium",
+ "latitude": "36.92692730",
+ "longitude": "14.72551290"
+ },
+ {
+ "id": 1707,
+ "name": "Ravenna",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "RA",
+ "type": "province",
+ "latitude": "44.41844430",
+ "longitude": "12.20359980"
+ },
+ {
+ "id": 1708,
+ "name": "Reggio Emilia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "RE",
+ "type": "province",
+ "latitude": "44.58565800",
+ "longitude": "10.55647360"
+ },
+ {
+ "id": 1712,
+ "name": "Rieti",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "RI",
+ "type": "province",
+ "latitude": "42.36744050",
+ "longitude": "12.89750980"
+ },
+ {
+ "id": 1713,
+ "name": "Rimini",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "RN",
+ "type": "province",
+ "latitude": "44.06782880",
+ "longitude": "12.56951580"
+ },
+ {
+ "id": 1719,
+ "name": "Rovigo",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "RO",
+ "type": "province",
+ "latitude": "45.02418180",
+ "longitude": "11.82381620"
+ },
+ {
+ "id": 1720,
+ "name": "Salerno",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "SA",
+ "type": "province",
+ "latitude": "40.42878320",
+ "longitude": "15.21948080"
+ },
+ {
+ "id": 1715,
+ "name": "Sardinia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "88",
+ "type": "autonomous region",
+ "latitude": "40.12087520",
+ "longitude": "9.01289260"
+ },
+ {
+ "id": 1722,
+ "name": "Sassari",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "SS",
+ "type": "province",
+ "latitude": "40.79679070",
+ "longitude": "8.57504070"
+ },
+ {
+ "id": 1732,
+ "name": "Savona",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "SV",
+ "type": "province",
+ "latitude": "44.28879950",
+ "longitude": "8.26505800"
+ },
+ {
+ "id": 1709,
+ "name": "Sicily",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "82",
+ "type": "autonomous region",
+ "latitude": "37.59999380",
+ "longitude": "14.01535570"
+ },
+ {
+ "id": 1734,
+ "name": "Siena",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "SI",
+ "type": "province",
+ "latitude": "43.29377320",
+ "longitude": "11.43391480"
+ },
+ {
+ "id": 1667,
+ "name": "Siracusa",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "SR",
+ "type": "free municipal consortium",
+ "latitude": "37.06569240",
+ "longitude": "15.28571090"
+ },
+ {
+ "id": 1741,
+ "name": "Sondrio",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "SO",
+ "type": "province",
+ "latitude": "46.17276360",
+ "longitude": "9.79949170"
+ },
+ {
+ "id": 1730,
+ "name": "South Sardinia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "SU",
+ "type": "province",
+ "latitude": "39.38935350",
+ "longitude": "8.93970000"
+ },
+ {
+ "id": 1743,
+ "name": "Taranto",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "TA",
+ "type": "province",
+ "latitude": "40.57409010",
+ "longitude": "17.24299760"
+ },
+ {
+ "id": 1752,
+ "name": "Teramo",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "TE",
+ "type": "province",
+ "latitude": "42.58956080",
+ "longitude": "13.63627150"
+ },
+ {
+ "id": 1755,
+ "name": "Terni",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "TR",
+ "type": "province",
+ "latitude": "42.56345340",
+ "longitude": "12.52980280"
+ },
+ {
+ "id": 1733,
+ "name": "Trapani",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "TP",
+ "type": "free municipal consortium",
+ "latitude": "38.01831160",
+ "longitude": "12.51482650"
+ },
+ {
+ "id": 1725,
+ "name": "Trentino-South Tyrol",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "32",
+ "type": "autonomous region",
+ "latitude": "46.43366620",
+ "longitude": "11.16932960"
+ },
+ {
+ "id": 1762,
+ "name": "Treviso",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "TV",
+ "type": "province",
+ "latitude": "45.66685170",
+ "longitude": "12.24306170"
+ },
+ {
+ "id": 1763,
+ "name": "Trieste",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "TS",
+ "type": "decentralized regional entity",
+ "latitude": "45.68948230",
+ "longitude": "13.78330720"
+ },
+ {
+ "id": 1664,
+ "name": "Tuscany",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "52",
+ "type": "region",
+ "latitude": "43.77105130",
+ "longitude": "11.24862080"
+ },
+ {
+ "id": 1764,
+ "name": "Udine",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "UD",
+ "type": "decentralized regional entity",
+ "latitude": "46.14079720",
+ "longitude": "13.16628960"
+ },
+ {
+ "id": 1683,
+ "name": "Umbria",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "55",
+ "type": "region",
+ "latitude": "42.93800400",
+ "longitude": "12.62162110"
+ },
+ {
+ "id": 1765,
+ "name": "Varese",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "VA",
+ "type": "province",
+ "latitude": "45.79902600",
+ "longitude": "8.73009450"
+ },
+ {
+ "id": 1753,
+ "name": "Veneto",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "34",
+ "type": "region",
+ "latitude": "45.44146620",
+ "longitude": "12.31525950"
+ },
+ {
+ "id": 1726,
+ "name": "Verbano-Cusio-Ossola",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "VB",
+ "type": "province",
+ "latitude": "46.13996880",
+ "longitude": "8.27246490"
+ },
+ {
+ "id": 1785,
+ "name": "Vercelli",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "VC",
+ "type": "province",
+ "latitude": "45.32022040",
+ "longitude": "8.41850800"
+ },
+ {
+ "id": 1736,
+ "name": "Verona",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "VR",
+ "type": "province",
+ "latitude": "45.44184980",
+ "longitude": "11.07353160"
+ },
+ {
+ "id": 1737,
+ "name": "Vibo Valentia",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "VV",
+ "type": "province",
+ "latitude": "38.63785650",
+ "longitude": "16.20514840"
+ },
+ {
+ "id": 1738,
+ "name": "Vicenza",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "VI",
+ "type": "province",
+ "latitude": "45.69839950",
+ "longitude": "11.56614650"
+ },
+ {
+ "id": 1735,
+ "name": "Viterbo",
+ "country_id": 107,
+ "country_code": "IT",
+ "country_name": "Italy",
+ "state_code": "VT",
+ "type": "province",
+ "latitude": "42.40024200",
+ "longitude": "11.88917210"
+ },
+ {
+ "id": 3753,
+ "name": "Clarendon Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "13",
+ "type": null,
+ "latitude": "17.95571830",
+ "longitude": "-77.24051530"
+ },
+ {
+ "id": 3749,
+ "name": "Hanover Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "09",
+ "type": null,
+ "latitude": "18.40977070",
+ "longitude": "-78.13363800"
+ },
+ {
+ "id": 3748,
+ "name": "Kingston Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "01",
+ "type": null,
+ "latitude": "17.96832710",
+ "longitude": "-76.78270200"
+ },
+ {
+ "id": 3754,
+ "name": "Manchester Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "12",
+ "type": null,
+ "latitude": "18.06696540",
+ "longitude": "-77.51607880"
+ },
+ {
+ "id": 3752,
+ "name": "Portland Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "04",
+ "type": null,
+ "latitude": "18.08442740",
+ "longitude": "-76.41002670"
+ },
+ {
+ "id": 3751,
+ "name": "Saint Andrew",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "02",
+ "type": null,
+ "latitude": "37.22451030",
+ "longitude": "-95.70211890"
+ },
+ {
+ "id": 3744,
+ "name": "Saint Ann Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "06",
+ "type": null,
+ "latitude": "37.28714520",
+ "longitude": "-77.41035330"
+ },
+ {
+ "id": 3746,
+ "name": "Saint Catherine Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "14",
+ "type": null,
+ "latitude": "18.03641340",
+ "longitude": "-77.05644640"
+ },
+ {
+ "id": 3743,
+ "name": "Saint Elizabeth Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "11",
+ "type": null,
+ "latitude": "38.99253080",
+ "longitude": "-94.58992000"
+ },
+ {
+ "id": 3745,
+ "name": "Saint James Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "08",
+ "type": null,
+ "latitude": "30.01792920",
+ "longitude": "-90.79132270"
+ },
+ {
+ "id": 3747,
+ "name": "Saint Mary Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "05",
+ "type": null,
+ "latitude": "36.09252200",
+ "longitude": "-95.97384400"
+ },
+ {
+ "id": 3750,
+ "name": "Saint Thomas Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "03",
+ "type": null,
+ "latitude": "41.44253890",
+ "longitude": "-81.74022180"
+ },
+ {
+ "id": 3755,
+ "name": "Trelawny Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "07",
+ "type": null,
+ "latitude": "18.35261430",
+ "longitude": "-77.60778650"
+ },
+ {
+ "id": 3742,
+ "name": "Westmoreland Parish",
+ "country_id": 108,
+ "country_code": "JM",
+ "country_name": "Jamaica",
+ "state_code": "10",
+ "type": null,
+ "latitude": "18.29443780",
+ "longitude": "-78.15644320"
+ },
+ {
+ "id": 827,
+ "name": "Aichi Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "23",
+ "type": null,
+ "latitude": "35.01825050",
+ "longitude": "137.29238930"
+ },
+ {
+ "id": 829,
+ "name": "Akita Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "05",
+ "type": null,
+ "latitude": "40.13762930",
+ "longitude": "140.33434100"
+ },
+ {
+ "id": 839,
+ "name": "Aomori Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "02",
+ "type": null,
+ "latitude": "40.76570770",
+ "longitude": "140.91758790"
+ },
+ {
+ "id": 821,
+ "name": "Chiba Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "12",
+ "type": null,
+ "latitude": "35.33541550",
+ "longitude": "140.18325160"
+ },
+ {
+ "id": 865,
+ "name": "Ehime Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "38",
+ "type": null,
+ "latitude": "33.60253060",
+ "longitude": "132.78575830"
+ },
+ {
+ "id": 848,
+ "name": "Fukui Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "18",
+ "type": null,
+ "latitude": "35.89622700",
+ "longitude": "136.21115790"
+ },
+ {
+ "id": 861,
+ "name": "Fukuoka Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "40",
+ "type": null,
+ "latitude": "33.56625590",
+ "longitude": "130.71585700"
+ },
+ {
+ "id": 847,
+ "name": "Fukushima Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "07",
+ "type": null,
+ "latitude": "37.38343730",
+ "longitude": "140.18325160"
+ },
+ {
+ "id": 858,
+ "name": "Gifu Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "21",
+ "type": null,
+ "latitude": "35.74374910",
+ "longitude": "136.98051030"
+ },
+ {
+ "id": 862,
+ "name": "Gunma Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "10",
+ "type": null,
+ "latitude": "36.56053880",
+ "longitude": "138.87999720"
+ },
+ {
+ "id": 828,
+ "name": "Hiroshima Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "34",
+ "type": null,
+ "latitude": "34.88234080",
+ "longitude": "133.01948970"
+ },
+ {
+ "id": 832,
+ "name": "Hokkaidล Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "01",
+ "type": null,
+ "latitude": "43.22032660",
+ "longitude": "142.86347370"
+ },
+ {
+ "id": 831,
+ "name": "Hyลgo Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "28",
+ "type": null,
+ "latitude": "34.85795180",
+ "longitude": "134.54537870"
+ },
+ {
+ "id": 851,
+ "name": "Ibaraki Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "08",
+ "type": null,
+ "latitude": "36.21935710",
+ "longitude": "140.18325160"
+ },
+ {
+ "id": 830,
+ "name": "Ishikawa Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "17",
+ "type": null,
+ "latitude": "36.32603170",
+ "longitude": "136.52896530"
+ },
+ {
+ "id": 856,
+ "name": "Iwate Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "03",
+ "type": null,
+ "latitude": "39.58329890",
+ "longitude": "141.25345740"
+ },
+ {
+ "id": 864,
+ "name": "Kagawa Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "37",
+ "type": null,
+ "latitude": "34.22259150",
+ "longitude": "134.01991520"
+ },
+ {
+ "id": 840,
+ "name": "Kagoshima Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "46",
+ "type": null,
+ "latitude": "31.39119580",
+ "longitude": "130.87785860"
+ },
+ {
+ "id": 842,
+ "name": "Kanagawa Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "14",
+ "type": null,
+ "latitude": "35.49135350",
+ "longitude": "139.28414300"
+ },
+ {
+ "id": 4924,
+ "name": "Kลchi Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "39",
+ "type": null,
+ "latitude": "33.28791610",
+ "longitude": "132.27592620"
+ },
+ {
+ "id": 846,
+ "name": "Kumamoto Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "43",
+ "type": null,
+ "latitude": "32.85944270",
+ "longitude": "130.79691490"
+ },
+ {
+ "id": 834,
+ "name": "Kyลto Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "26",
+ "type": null,
+ "latitude": "35.15666090",
+ "longitude": "135.52519820"
+ },
+ {
+ "id": 833,
+ "name": "Mie Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "24",
+ "type": null,
+ "latitude": "33.81439010",
+ "longitude": "136.04870470"
+ },
+ {
+ "id": 857,
+ "name": "Miyagi Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "04",
+ "type": null,
+ "latitude": "38.63061200",
+ "longitude": "141.11930480"
+ },
+ {
+ "id": 855,
+ "name": "Miyazaki Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "45",
+ "type": null,
+ "latitude": "32.60360220",
+ "longitude": "131.44125100"
+ },
+ {
+ "id": 843,
+ "name": "Nagano Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "20",
+ "type": null,
+ "latitude": "36.15439410",
+ "longitude": "137.92182040"
+ },
+ {
+ "id": 849,
+ "name": "Nagasaki Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "42",
+ "type": null,
+ "latitude": "33.24885250",
+ "longitude": "129.69309120"
+ },
+ {
+ "id": 824,
+ "name": "Nara Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "29",
+ "type": null,
+ "latitude": "34.29755280",
+ "longitude": "135.82797340"
+ },
+ {
+ "id": 841,
+ "name": "Niigata Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "15",
+ "type": null,
+ "latitude": "37.51783860",
+ "longitude": "138.92697940"
+ },
+ {
+ "id": 822,
+ "name": "ลita Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "44",
+ "type": null,
+ "latitude": "33.15892990",
+ "longitude": "131.36111210"
+ },
+ {
+ "id": 820,
+ "name": "Okayama Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "33",
+ "type": null,
+ "latitude": "34.89634070",
+ "longitude": "133.63753140"
+ },
+ {
+ "id": 853,
+ "name": "Okinawa Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "47",
+ "type": null,
+ "latitude": "26.12019110",
+ "longitude": "127.70250120"
+ },
+ {
+ "id": 859,
+ "name": "ลsaka Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "27",
+ "type": null,
+ "latitude": "34.64133150",
+ "longitude": "135.56293940"
+ },
+ {
+ "id": 863,
+ "name": "Saga Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "41",
+ "type": null,
+ "latitude": "33.30783710",
+ "longitude": "130.22712430"
+ },
+ {
+ "id": 860,
+ "name": "Saitama Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "11",
+ "type": null,
+ "latitude": "35.99625130",
+ "longitude": "139.44660050"
+ },
+ {
+ "id": 845,
+ "name": "Shiga Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "25",
+ "type": null,
+ "latitude": "35.32920140",
+ "longitude": "136.05632120"
+ },
+ {
+ "id": 826,
+ "name": "Shimane Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "32",
+ "type": null,
+ "latitude": "35.12440940",
+ "longitude": "132.62934460"
+ },
+ {
+ "id": 825,
+ "name": "Shizuoka Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "22",
+ "type": null,
+ "latitude": "35.09293970",
+ "longitude": "138.31902760"
+ },
+ {
+ "id": 854,
+ "name": "Tochigi Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "09",
+ "type": null,
+ "latitude": "36.67147390",
+ "longitude": "139.85472660"
+ },
+ {
+ "id": 836,
+ "name": "Tokushima Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "36",
+ "type": null,
+ "latitude": "33.94196550",
+ "longitude": "134.32365570"
+ },
+ {
+ "id": 823,
+ "name": "Tokyo",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "13",
+ "type": null,
+ "latitude": "35.67619190",
+ "longitude": "139.65031060"
+ },
+ {
+ "id": 850,
+ "name": "Tottori Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "31",
+ "type": null,
+ "latitude": "35.35731610",
+ "longitude": "133.40666180"
+ },
+ {
+ "id": 838,
+ "name": "Toyama Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "16",
+ "type": null,
+ "latitude": "36.69582660",
+ "longitude": "137.21370710"
+ },
+ {
+ "id": 844,
+ "name": "Wakayama Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "30",
+ "type": null,
+ "latitude": "33.94809140",
+ "longitude": "135.37453580"
+ },
+ {
+ "id": 837,
+ "name": "Yamagata Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "06",
+ "type": null,
+ "latitude": "38.53705640",
+ "longitude": "140.14351980"
+ },
+ {
+ "id": 835,
+ "name": "Yamaguchi Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "35",
+ "type": null,
+ "latitude": "34.27967690",
+ "longitude": "131.52127420"
+ },
+ {
+ "id": 852,
+ "name": "Yamanashi Prefecture",
+ "country_id": 109,
+ "country_code": "JP",
+ "country_name": "Japan",
+ "state_code": "19",
+ "type": null,
+ "latitude": "35.66351130",
+ "longitude": "138.63888790"
+ },
+ {
+ "id": 963,
+ "name": "Ajloun",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "AJ",
+ "type": null,
+ "latitude": "32.33255840",
+ "longitude": "35.75168440"
+ },
+ {
+ "id": 965,
+ "name": "Amman",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "AM",
+ "type": null,
+ "latitude": "31.94536330",
+ "longitude": "35.92838950"
+ },
+ {
+ "id": 959,
+ "name": "Aqaba",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "AQ",
+ "type": null,
+ "latitude": "29.53208600",
+ "longitude": "35.00628210"
+ },
+ {
+ "id": 961,
+ "name": "Balqa",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "32.03668060",
+ "longitude": "35.72884800"
+ },
+ {
+ "id": 960,
+ "name": "Irbid",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "IR",
+ "type": null,
+ "latitude": "32.55696360",
+ "longitude": "35.84789650"
+ },
+ {
+ "id": 966,
+ "name": "Jerash",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "JA",
+ "type": null,
+ "latitude": "32.27472370",
+ "longitude": "35.89609540"
+ },
+ {
+ "id": 956,
+ "name": "Karak",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "KA",
+ "type": null,
+ "latitude": "31.18535270",
+ "longitude": "35.70476820"
+ },
+ {
+ "id": 964,
+ "name": "Ma'an",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "MN",
+ "type": null,
+ "latitude": "30.19267890",
+ "longitude": "35.72493190"
+ },
+ {
+ "id": 958,
+ "name": "Madaba",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "MD",
+ "type": null,
+ "latitude": "31.71960970",
+ "longitude": "35.79327540"
+ },
+ {
+ "id": 962,
+ "name": "Mafraq",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "32.34169230",
+ "longitude": "36.20201750"
+ },
+ {
+ "id": 957,
+ "name": "Tafilah",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "AT",
+ "type": null,
+ "latitude": "30.83380630",
+ "longitude": "35.61605130"
+ },
+ {
+ "id": 967,
+ "name": "Zarqa",
+ "country_id": 111,
+ "country_code": "JO",
+ "country_name": "Jordan",
+ "state_code": "AZ",
+ "type": null,
+ "latitude": "32.06085050",
+ "longitude": "36.09421210"
+ },
+ {
+ "id": 145,
+ "name": "Akmola Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "AKM",
+ "type": null,
+ "latitude": "51.91653200",
+ "longitude": "69.41104940"
+ },
+ {
+ "id": 151,
+ "name": "Aktobe Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "AKT",
+ "type": null,
+ "latitude": "48.77970780",
+ "longitude": "57.99743780"
+ },
+ {
+ "id": 152,
+ "name": "Almaty",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "ALA",
+ "type": null,
+ "latitude": "43.22201460",
+ "longitude": "76.85124850"
+ },
+ {
+ "id": 143,
+ "name": "Almaty Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "ALM",
+ "type": null,
+ "latitude": "45.01192270",
+ "longitude": "78.42293920"
+ },
+ {
+ "id": 153,
+ "name": "Atyrau Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "ATY",
+ "type": null,
+ "latitude": "47.10761880",
+ "longitude": "51.91413300"
+ },
+ {
+ "id": 155,
+ "name": "Baikonur",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "BAY",
+ "type": null,
+ "latitude": "45.96458510",
+ "longitude": "63.30524280"
+ },
+ {
+ "id": 154,
+ "name": "East Kazakhstan Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "VOS",
+ "type": null,
+ "latitude": "48.70626870",
+ "longitude": "80.79225340"
+ },
+ {
+ "id": 147,
+ "name": "Jambyl Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "ZHA",
+ "type": null,
+ "latitude": "44.22203080",
+ "longitude": "72.36579670"
+ },
+ {
+ "id": 150,
+ "name": "Karaganda Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "KAR",
+ "type": null,
+ "latitude": "47.90221820",
+ "longitude": "71.77068070"
+ },
+ {
+ "id": 157,
+ "name": "Kostanay Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "KUS",
+ "type": null,
+ "latitude": "51.50770960",
+ "longitude": "64.04790730"
+ },
+ {
+ "id": 142,
+ "name": "Kyzylorda Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "KZY",
+ "type": null,
+ "latitude": "44.69226130",
+ "longitude": "62.65718850"
+ },
+ {
+ "id": 141,
+ "name": "Mangystau Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "MAN",
+ "type": null,
+ "latitude": "44.59080200",
+ "longitude": "53.84995080"
+ },
+ {
+ "id": 144,
+ "name": "North Kazakhstan Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "SEV",
+ "type": null,
+ "latitude": "54.16220660",
+ "longitude": "69.93870710"
+ },
+ {
+ "id": 156,
+ "name": "Nur-Sultan",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "AST",
+ "type": null,
+ "latitude": "51.16052270",
+ "longitude": "71.47035580"
+ },
+ {
+ "id": 146,
+ "name": "Pavlodar Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "PAV",
+ "type": null,
+ "latitude": "52.28784440",
+ "longitude": "76.97334530"
+ },
+ {
+ "id": 149,
+ "name": "Turkestan Region",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "YUZ",
+ "type": null,
+ "latitude": "43.36669580",
+ "longitude": "68.40944050"
+ },
+ {
+ "id": 148,
+ "name": "West Kazakhstan Province",
+ "country_id": 112,
+ "country_code": "KZ",
+ "country_name": "Kazakhstan",
+ "state_code": "ZAP",
+ "type": null,
+ "latitude": "49.56797270",
+ "longitude": "50.80666160"
+ },
+ {
+ "id": 181,
+ "name": "Baringo",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "01",
+ "type": "county",
+ "latitude": "0.85549880",
+ "longitude": "36.08934060"
+ },
+ {
+ "id": 210,
+ "name": "Bomet",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "02",
+ "type": "county",
+ "latitude": "-0.80150090",
+ "longitude": "35.30272260"
+ },
+ {
+ "id": 168,
+ "name": "Bungoma",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "03",
+ "type": "county",
+ "latitude": "0.56952520",
+ "longitude": "34.55837660"
+ },
+ {
+ "id": 161,
+ "name": "Busia",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "04",
+ "type": "county",
+ "latitude": "0.43465060",
+ "longitude": "34.24215970"
+ },
+ {
+ "id": 201,
+ "name": "Elgeyo-Marakwet",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "05",
+ "type": "county",
+ "latitude": "1.04982370",
+ "longitude": "35.47819260"
+ },
+ {
+ "id": 163,
+ "name": "Embu",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "06",
+ "type": "county",
+ "latitude": "-0.65604770",
+ "longitude": "37.72376780"
+ },
+ {
+ "id": 196,
+ "name": "Garissa",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "07",
+ "type": "county",
+ "latitude": "-0.45322930",
+ "longitude": "39.64609880"
+ },
+ {
+ "id": 195,
+ "name": "Homa Bay",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "08",
+ "type": "county",
+ "latitude": "-0.62206550",
+ "longitude": "34.33103640"
+ },
+ {
+ "id": 170,
+ "name": "Isiolo",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "09",
+ "type": "county",
+ "latitude": "0.35243520",
+ "longitude": "38.48499230"
+ },
+ {
+ "id": 197,
+ "name": "Kajiado",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "10",
+ "type": "county",
+ "latitude": "-2.09807510",
+ "longitude": "36.78195050"
+ },
+ {
+ "id": 158,
+ "name": "Kakamega",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "11",
+ "type": "county",
+ "latitude": "0.30789400",
+ "longitude": "34.77407930"
+ },
+ {
+ "id": 193,
+ "name": "Kericho",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "12",
+ "type": "county",
+ "latitude": "-0.18279130",
+ "longitude": "35.47819260"
+ },
+ {
+ "id": 199,
+ "name": "Kiambu",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "13",
+ "type": "county",
+ "latitude": "-1.03137010",
+ "longitude": "36.86807910"
+ },
+ {
+ "id": 174,
+ "name": "Kilifi",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "14",
+ "type": "county",
+ "latitude": "-3.51065080",
+ "longitude": "39.90932690"
+ },
+ {
+ "id": 167,
+ "name": "Kirinyaga",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "15",
+ "type": "county",
+ "latitude": "-0.65905650",
+ "longitude": "37.38272340"
+ },
+ {
+ "id": 159,
+ "name": "Kisii",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "16",
+ "type": "county",
+ "latitude": "-0.67733400",
+ "longitude": "34.77960300"
+ },
+ {
+ "id": 171,
+ "name": "Kisumu",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "17",
+ "type": "county",
+ "latitude": "-0.09170160",
+ "longitude": "34.76795680"
+ },
+ {
+ "id": 211,
+ "name": "Kitui",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "18",
+ "type": "county",
+ "latitude": "-1.68328220",
+ "longitude": "38.31657250"
+ },
+ {
+ "id": 173,
+ "name": "Kwale",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "19",
+ "type": "county",
+ "latitude": "-4.18161150",
+ "longitude": "39.46056120"
+ },
+ {
+ "id": 164,
+ "name": "Laikipia",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "20",
+ "type": "county",
+ "latitude": "0.36060630",
+ "longitude": "36.78195050"
+ },
+ {
+ "id": 166,
+ "name": "Lamu",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "21",
+ "type": "county",
+ "latitude": "-2.23550580",
+ "longitude": "40.47200040"
+ },
+ {
+ "id": 184,
+ "name": "Machakos",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "22",
+ "type": "county",
+ "latitude": "-1.51768370",
+ "longitude": "37.26341460"
+ },
+ {
+ "id": 188,
+ "name": "Makueni",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "23",
+ "type": "county",
+ "latitude": "-2.25587340",
+ "longitude": "37.89366630"
+ },
+ {
+ "id": 187,
+ "name": "Mandera",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "24",
+ "type": "county",
+ "latitude": "3.57379910",
+ "longitude": "40.95868800"
+ },
+ {
+ "id": 194,
+ "name": "Marsabit",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "25",
+ "type": "county",
+ "latitude": "2.44264030",
+ "longitude": "37.97845850"
+ },
+ {
+ "id": 198,
+ "name": "Meru",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "26",
+ "type": "county",
+ "latitude": "0.35571740",
+ "longitude": "37.80876930"
+ },
+ {
+ "id": 190,
+ "name": "Migori",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "27",
+ "type": "county",
+ "latitude": "-0.93657020",
+ "longitude": "34.41982430"
+ },
+ {
+ "id": 200,
+ "name": "Mombasa",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "28",
+ "type": "county",
+ "latitude": "-3.97682910",
+ "longitude": "39.71371810"
+ },
+ {
+ "id": 178,
+ "name": "Murang'a",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "29",
+ "type": "county",
+ "latitude": "-0.78392810",
+ "longitude": "37.04003390"
+ },
+ {
+ "id": 191,
+ "name": "Nairobi City",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "30",
+ "type": "county",
+ "latitude": "-1.29206590",
+ "longitude": "36.82194620"
+ },
+ {
+ "id": 203,
+ "name": "Nakuru",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "31",
+ "type": "county",
+ "latitude": "-0.30309880",
+ "longitude": "36.08002600"
+ },
+ {
+ "id": 165,
+ "name": "Nandi",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "32",
+ "type": "county",
+ "latitude": "0.18358670",
+ "longitude": "35.12687810"
+ },
+ {
+ "id": 175,
+ "name": "Narok",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "33",
+ "type": "county",
+ "latitude": "-1.10411100",
+ "longitude": "36.08934060"
+ },
+ {
+ "id": 209,
+ "name": "Nyamira",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "34",
+ "type": "county",
+ "latitude": "-0.56694050",
+ "longitude": "34.93412340"
+ },
+ {
+ "id": 192,
+ "name": "Nyandarua",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "35",
+ "type": "county",
+ "latitude": "-0.18038550",
+ "longitude": "36.52296410"
+ },
+ {
+ "id": 180,
+ "name": "Nyeri",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "36",
+ "type": "county",
+ "latitude": "-0.41969150",
+ "longitude": "37.04003390"
+ },
+ {
+ "id": 207,
+ "name": "Samburu",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "37",
+ "type": "county",
+ "latitude": "1.21545060",
+ "longitude": "36.95410700"
+ },
+ {
+ "id": 186,
+ "name": "Siaya",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "38",
+ "type": "county",
+ "latitude": "-0.06173280",
+ "longitude": "34.24215970"
+ },
+ {
+ "id": 176,
+ "name": "TaitaโTaveta",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "39",
+ "type": "county",
+ "latitude": "-3.31606870",
+ "longitude": "38.48499230"
+ },
+ {
+ "id": 205,
+ "name": "Tana River",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "40",
+ "type": "county",
+ "latitude": "-1.65184680",
+ "longitude": "39.65181650"
+ },
+ {
+ "id": 185,
+ "name": "Tharaka-Nithi",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "41",
+ "type": "county",
+ "latitude": "-0.29648510",
+ "longitude": "37.72376780"
+ },
+ {
+ "id": 183,
+ "name": "Trans Nzoia",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "42",
+ "type": "county",
+ "latitude": "1.05666670",
+ "longitude": "34.95066250"
+ },
+ {
+ "id": 206,
+ "name": "Turkana",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "43",
+ "type": "county",
+ "latitude": "3.31224770",
+ "longitude": "35.56578620"
+ },
+ {
+ "id": 169,
+ "name": "Uasin Gishu",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "44",
+ "type": "county",
+ "latitude": "0.55276380",
+ "longitude": "35.30272260"
+ },
+ {
+ "id": 202,
+ "name": "Vihiga",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "45",
+ "type": "county",
+ "latitude": "0.07675530",
+ "longitude": "34.70776650"
+ },
+ {
+ "id": 182,
+ "name": "Wajir",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "46",
+ "type": "county",
+ "latitude": "1.63604750",
+ "longitude": "40.30886260"
+ },
+ {
+ "id": 208,
+ "name": "West Pokot",
+ "country_id": 113,
+ "country_code": "KE",
+ "country_name": "Kenya",
+ "state_code": "47",
+ "type": "county",
+ "latitude": "1.62100760",
+ "longitude": "35.39050460"
+ },
+ {
+ "id": 1831,
+ "name": "Gilbert Islands",
+ "country_id": 114,
+ "country_code": "KI",
+ "country_name": "Kiribati",
+ "state_code": "G",
+ "type": null,
+ "latitude": "0.35242620",
+ "longitude": "174.75526340"
+ },
+ {
+ "id": 1832,
+ "name": "Line Islands",
+ "country_id": 114,
+ "country_code": "KI",
+ "country_name": "Kiribati",
+ "state_code": "L",
+ "type": null,
+ "latitude": "1.74294390",
+ "longitude": "-157.21328260"
+ },
+ {
+ "id": 1830,
+ "name": "Phoenix Islands",
+ "country_id": 114,
+ "country_code": "KI",
+ "country_name": "Kiribati",
+ "state_code": "P",
+ "type": null,
+ "latitude": "33.32843690",
+ "longitude": "-111.98247740"
+ },
+ {
+ "id": 4876,
+ "name": "ฤakovica District (Gjakove)",
+ "country_id": 248,
+ "country_code": "XK",
+ "country_name": "Kosovo",
+ "state_code": "XDG",
+ "type": null,
+ "latitude": "42.43757560",
+ "longitude": "20.37854380"
+ },
+ {
+ "id": 4877,
+ "name": "Gjilan District",
+ "country_id": 248,
+ "country_code": "XK",
+ "country_name": "Kosovo",
+ "state_code": "XGJ",
+ "type": null,
+ "latitude": "42.46352060",
+ "longitude": "21.46940110"
+ },
+ {
+ "id": 4878,
+ "name": "Kosovska Mitrovica District",
+ "country_id": 248,
+ "country_code": "XK",
+ "country_name": "Kosovo",
+ "state_code": "XKM",
+ "type": null,
+ "latitude": "42.89139090",
+ "longitude": "20.86599950"
+ },
+ {
+ "id": 3738,
+ "name": "Peฤ District",
+ "country_id": 248,
+ "country_code": "XK",
+ "country_name": "Kosovo",
+ "state_code": "XPE",
+ "type": null,
+ "latitude": "42.65921550",
+ "longitude": "20.28876240"
+ },
+ {
+ "id": 4879,
+ "name": "Pristina (Priลtine)",
+ "country_id": 248,
+ "country_code": "XK",
+ "country_name": "Kosovo",
+ "state_code": "XPI",
+ "type": null,
+ "latitude": "42.66291380",
+ "longitude": "21.16550280"
+ },
+ {
+ "id": 3723,
+ "name": "Prizren District",
+ "country_id": 248,
+ "country_code": "XK",
+ "country_name": "Kosovo",
+ "state_code": "XPR",
+ "type": null,
+ "latitude": "42.21525220",
+ "longitude": "20.74147720"
+ },
+ {
+ "id": 4874,
+ "name": "Uroลกevac District (Ferizaj)",
+ "country_id": 248,
+ "country_code": "XK",
+ "country_name": "Kosovo",
+ "state_code": "XUF",
+ "type": null,
+ "latitude": "42.37018440",
+ "longitude": "21.14832810"
+ },
+ {
+ "id": 977,
+ "name": "Al Ahmadi",
+ "country_id": 117,
+ "country_code": "KW",
+ "country_name": "Kuwait",
+ "state_code": "AH",
+ "type": null,
+ "latitude": "28.57451250",
+ "longitude": "48.10247430"
+ },
+ {
+ "id": 975,
+ "name": "Al Farwaniyah",
+ "country_id": 117,
+ "country_code": "KW",
+ "country_name": "Kuwait",
+ "state_code": "FA",
+ "type": null,
+ "latitude": "29.27335700",
+ "longitude": "47.94001540"
+ },
+ {
+ "id": 972,
+ "name": "Al Jahra",
+ "country_id": 117,
+ "country_code": "KW",
+ "country_name": "Kuwait",
+ "state_code": "JA",
+ "type": null,
+ "latitude": "29.99318310",
+ "longitude": "47.76347310"
+ },
+ {
+ "id": 976,
+ "name": "Capital",
+ "country_id": 117,
+ "country_code": "KW",
+ "country_name": "Kuwait",
+ "state_code": "KU",
+ "type": null,
+ "latitude": "26.22851610",
+ "longitude": "50.58604970"
+ },
+ {
+ "id": 973,
+ "name": "Hawalli",
+ "country_id": 117,
+ "country_code": "KW",
+ "country_name": "Kuwait",
+ "state_code": "HA",
+ "type": null,
+ "latitude": "29.30567160",
+ "longitude": "48.03076130"
+ },
+ {
+ "id": 974,
+ "name": "Mubarak Al-Kabeer",
+ "country_id": 117,
+ "country_code": "KW",
+ "country_name": "Kuwait",
+ "state_code": "MU",
+ "type": null,
+ "latitude": "29.21224000",
+ "longitude": "48.06051080"
+ },
+ {
+ "id": 998,
+ "name": "Batken Region",
+ "country_id": 118,
+ "country_code": "KG",
+ "country_name": "Kyrgyzstan",
+ "state_code": "B",
+ "type": null,
+ "latitude": "39.97214250",
+ "longitude": "69.85974060"
+ },
+ {
+ "id": 1001,
+ "name": "Bishkek",
+ "country_id": 118,
+ "country_code": "KG",
+ "country_name": "Kyrgyzstan",
+ "state_code": "GB",
+ "type": null,
+ "latitude": "42.87462120",
+ "longitude": "74.56976170"
+ },
+ {
+ "id": 1004,
+ "name": "Chuy Region",
+ "country_id": 118,
+ "country_code": "KG",
+ "country_name": "Kyrgyzstan",
+ "state_code": "C",
+ "type": null,
+ "latitude": "42.56550000",
+ "longitude": "74.40566120"
+ },
+ {
+ "id": 1002,
+ "name": "Issyk-Kul Region",
+ "country_id": 118,
+ "country_code": "KG",
+ "country_name": "Kyrgyzstan",
+ "state_code": "Y",
+ "type": null,
+ "latitude": "42.18594280",
+ "longitude": "77.56194190"
+ },
+ {
+ "id": 1000,
+ "name": "Jalal-Abad Region",
+ "country_id": 118,
+ "country_code": "KG",
+ "country_name": "Kyrgyzstan",
+ "state_code": "J",
+ "type": null,
+ "latitude": "41.10680800",
+ "longitude": "72.89880690"
+ },
+ {
+ "id": 999,
+ "name": "Naryn Region",
+ "country_id": 118,
+ "country_code": "KG",
+ "country_name": "Kyrgyzstan",
+ "state_code": "N",
+ "type": null,
+ "latitude": "41.29432270",
+ "longitude": "75.34121790"
+ },
+ {
+ "id": 1003,
+ "name": "Osh",
+ "country_id": 118,
+ "country_code": "KG",
+ "country_name": "Kyrgyzstan",
+ "state_code": "GO",
+ "type": null,
+ "latitude": "36.06313990",
+ "longitude": "-95.91828950"
+ },
+ {
+ "id": 1005,
+ "name": "Osh Region",
+ "country_id": 118,
+ "country_code": "KG",
+ "country_name": "Kyrgyzstan",
+ "state_code": "O",
+ "type": null,
+ "latitude": "39.84073660",
+ "longitude": "72.89880690"
+ },
+ {
+ "id": 997,
+ "name": "Talas Region",
+ "country_id": 118,
+ "country_code": "KG",
+ "country_name": "Kyrgyzstan",
+ "state_code": "T",
+ "type": null,
+ "latitude": "42.28673390",
+ "longitude": "72.52048270"
+ },
+ {
+ "id": 982,
+ "name": "Attapeu Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "AT",
+ "type": null,
+ "latitude": "14.93634000",
+ "longitude": "107.10119310"
+ },
+ {
+ "id": 991,
+ "name": "Bokeo Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "BK",
+ "type": null,
+ "latitude": "20.28726620",
+ "longitude": "100.70978670"
+ },
+ {
+ "id": 985,
+ "name": "Bolikhamsai Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "BL",
+ "type": null,
+ "latitude": "18.43629240",
+ "longitude": "104.47233010"
+ },
+ {
+ "id": 996,
+ "name": "Champasak Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "CH",
+ "type": null,
+ "latitude": "14.65786640",
+ "longitude": "105.96998780"
+ },
+ {
+ "id": 989,
+ "name": "Houaphanh Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "HO",
+ "type": null,
+ "latitude": "20.32541750",
+ "longitude": "104.10013260"
+ },
+ {
+ "id": 986,
+ "name": "Khammouane Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "KH",
+ "type": null,
+ "latitude": "17.63840660",
+ "longitude": "105.21948080"
+ },
+ {
+ "id": 992,
+ "name": "Luang Namtha Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "LM",
+ "type": null,
+ "latitude": "20.91701870",
+ "longitude": "101.16173560"
+ },
+ {
+ "id": 978,
+ "name": "Luang Prabang Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "LP",
+ "type": null,
+ "latitude": "20.06562290",
+ "longitude": "102.62162110"
+ },
+ {
+ "id": 988,
+ "name": "Oudomxay Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "OU",
+ "type": null,
+ "latitude": "20.49219290",
+ "longitude": "101.88917210"
+ },
+ {
+ "id": 987,
+ "name": "Phongsaly Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "PH",
+ "type": null,
+ "latitude": "21.59193770",
+ "longitude": "102.25479190"
+ },
+ {
+ "id": 993,
+ "name": "Sainyabuli Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "XA",
+ "type": null,
+ "latitude": "19.39078860",
+ "longitude": "101.52480550"
+ },
+ {
+ "id": 981,
+ "name": "Salavan Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "SL",
+ "type": null,
+ "latitude": "15.81710730",
+ "longitude": "106.25221430"
+ },
+ {
+ "id": 990,
+ "name": "Savannakhet Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "SV",
+ "type": null,
+ "latitude": "16.50653810",
+ "longitude": "105.59433880"
+ },
+ {
+ "id": 984,
+ "name": "Sekong Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "XE",
+ "type": null,
+ "latitude": "15.57674460",
+ "longitude": "107.00670310"
+ },
+ {
+ "id": 979,
+ "name": "Vientiane Prefecture",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "VT",
+ "type": null,
+ "latitude": "18.11054100",
+ "longitude": "102.52980280"
+ },
+ {
+ "id": 980,
+ "name": "Vientiane Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "VI",
+ "type": null,
+ "latitude": "18.57050630",
+ "longitude": "102.62162110"
+ },
+ {
+ "id": 994,
+ "name": "Xaisomboun",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "XN",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 983,
+ "name": "Xaisomboun Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "XS",
+ "type": null,
+ "latitude": "18.43629240",
+ "longitude": "104.47233010"
+ },
+ {
+ "id": 995,
+ "name": "Xiangkhouang Province",
+ "country_id": 119,
+ "country_code": "LA",
+ "country_name": "Laos",
+ "state_code": "XI",
+ "type": null,
+ "latitude": "19.60930030",
+ "longitude": "103.72891670"
+ },
+ {
+ "id": 4445,
+ "name": "Aglona Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "001",
+ "type": null,
+ "latitude": "56.10890060",
+ "longitude": "27.12862270"
+ },
+ {
+ "id": 4472,
+ "name": "Aizkraukle Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "002",
+ "type": null,
+ "latitude": "56.64610800",
+ "longitude": "25.23708540"
+ },
+ {
+ "id": 4496,
+ "name": "Aizpute Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "003",
+ "type": null,
+ "latitude": "56.71825960",
+ "longitude": "21.60727590"
+ },
+ {
+ "id": 4499,
+ "name": "Aknฤซste Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "004",
+ "type": null,
+ "latitude": "56.16130370",
+ "longitude": "25.74848270"
+ },
+ {
+ "id": 4484,
+ "name": "Aloja Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "005",
+ "type": null,
+ "latitude": "57.76713600",
+ "longitude": "24.87708390"
+ },
+ {
+ "id": 4485,
+ "name": "Alsunga Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "006",
+ "type": null,
+ "latitude": "56.98285310",
+ "longitude": "21.55559190"
+ },
+ {
+ "id": 4487,
+ "name": "Alลซksne Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "007",
+ "type": null,
+ "latitude": "57.42544850",
+ "longitude": "27.04249680"
+ },
+ {
+ "id": 4497,
+ "name": "Amata Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "008",
+ "type": null,
+ "latitude": "56.99387260",
+ "longitude": "25.26276750"
+ },
+ {
+ "id": 4457,
+ "name": "Ape Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "009",
+ "type": null,
+ "latitude": "57.53926970",
+ "longitude": "26.69416490"
+ },
+ {
+ "id": 4481,
+ "name": "Auce Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "010",
+ "type": null,
+ "latitude": "56.46016800",
+ "longitude": "22.90547810"
+ },
+ {
+ "id": 4427,
+ "name": "Babฤซte Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "012",
+ "type": null,
+ "latitude": "56.95415500",
+ "longitude": "23.94539900"
+ },
+ {
+ "id": 4482,
+ "name": "Baldone Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "013",
+ "type": null,
+ "latitude": "56.74246000",
+ "longitude": "24.39115440"
+ },
+ {
+ "id": 4498,
+ "name": "Baltinava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "014",
+ "type": null,
+ "latitude": "56.94584680",
+ "longitude": "27.64410660"
+ },
+ {
+ "id": 4505,
+ "name": "Balvi Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "015",
+ "type": null,
+ "latitude": "57.13262400",
+ "longitude": "27.26466850"
+ },
+ {
+ "id": 4465,
+ "name": "Bauska Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "016",
+ "type": null,
+ "latitude": "56.41018680",
+ "longitude": "24.20006890"
+ },
+ {
+ "id": 4471,
+ "name": "Beverฤซna Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "017",
+ "type": null,
+ "latitude": "57.51971090",
+ "longitude": "25.60736540"
+ },
+ {
+ "id": 4468,
+ "name": "Brocฤni Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "018",
+ "type": null,
+ "latitude": "56.73475410",
+ "longitude": "22.63573710"
+ },
+ {
+ "id": 4411,
+ "name": "Burtnieki Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "019",
+ "type": null,
+ "latitude": "57.69490040",
+ "longitude": "25.27647770"
+ },
+ {
+ "id": 4454,
+ "name": "Carnikava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "020",
+ "type": null,
+ "latitude": "57.10241210",
+ "longitude": "24.21086620"
+ },
+ {
+ "id": 4469,
+ "name": "Cฤsis Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "022",
+ "type": null,
+ "latitude": "57.31028970",
+ "longitude": "25.26761250"
+ },
+ {
+ "id": 4414,
+ "name": "Cesvaine Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "021",
+ "type": null,
+ "latitude": "56.96792640",
+ "longitude": "26.30831720"
+ },
+ {
+ "id": 4410,
+ "name": "Cibla Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "023",
+ "type": null,
+ "latitude": "56.61023440",
+ "longitude": "27.86965980"
+ },
+ {
+ "id": 4504,
+ "name": "Dagda Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "024",
+ "type": null,
+ "latitude": "56.09560890",
+ "longitude": "27.53245900"
+ },
+ {
+ "id": 4463,
+ "name": "Daugavpils",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "DGV",
+ "type": null,
+ "latitude": "55.87473600",
+ "longitude": "26.53617900"
+ },
+ {
+ "id": 4492,
+ "name": "Daugavpils Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "025",
+ "type": null,
+ "latitude": "55.89917830",
+ "longitude": "26.61020120"
+ },
+ {
+ "id": 4437,
+ "name": "Dobele Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "026",
+ "type": null,
+ "latitude": "56.62630500",
+ "longitude": "23.28090660"
+ },
+ {
+ "id": 4428,
+ "name": "Dundaga Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "027",
+ "type": null,
+ "latitude": "57.50491670",
+ "longitude": "22.35051140"
+ },
+ {
+ "id": 4458,
+ "name": "Durbe Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "028",
+ "type": null,
+ "latitude": "56.62798570",
+ "longitude": "21.49162450"
+ },
+ {
+ "id": 4448,
+ "name": "Engure Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "029",
+ "type": null,
+ "latitude": "57.16235000",
+ "longitude": "23.21966340"
+ },
+ {
+ "id": 4444,
+ "name": "ฤrgฤผi Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "030",
+ "type": null,
+ "latitude": "56.92370650",
+ "longitude": "25.67538520"
+ },
+ {
+ "id": 4510,
+ "name": "Garkalne Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "031",
+ "type": null,
+ "latitude": "57.01903870",
+ "longitude": "24.38261810"
+ },
+ {
+ "id": 4470,
+ "name": "Grobiลa Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "032",
+ "type": null,
+ "latitude": "56.53963200",
+ "longitude": "21.16689200"
+ },
+ {
+ "id": 4400,
+ "name": "Gulbene Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "033",
+ "type": null,
+ "latitude": "57.21556450",
+ "longitude": "26.64529550"
+ },
+ {
+ "id": 4441,
+ "name": "Iecava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "034",
+ "type": null,
+ "latitude": "56.59867930",
+ "longitude": "24.19962720"
+ },
+ {
+ "id": 4511,
+ "name": "Ikลกฤทile Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "035",
+ "type": null,
+ "latitude": "56.83736670",
+ "longitude": "24.49747450"
+ },
+ {
+ "id": 4399,
+ "name": "Ilลซkste Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "036",
+ "type": null,
+ "latitude": "55.97825470",
+ "longitude": "26.29650880"
+ },
+ {
+ "id": 4449,
+ "name": "Inฤukalns Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "037",
+ "type": null,
+ "latitude": "57.09943420",
+ "longitude": "24.68555700"
+ },
+ {
+ "id": 4475,
+ "name": "Jaunjelgava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "038",
+ "type": null,
+ "latitude": "56.52836590",
+ "longitude": "25.39214430"
+ },
+ {
+ "id": 4407,
+ "name": "Jaunpiebalga Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "039",
+ "type": null,
+ "latitude": "57.14334710",
+ "longitude": "25.99518880"
+ },
+ {
+ "id": 4489,
+ "name": "Jaunpils Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "040",
+ "type": null,
+ "latitude": "56.73141940",
+ "longitude": "23.01256160"
+ },
+ {
+ "id": 4464,
+ "name": "Jฤkabpils",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "JKB",
+ "type": null,
+ "latitude": "56.50145500",
+ "longitude": "25.87829900"
+ },
+ {
+ "id": 4438,
+ "name": "Jฤkabpils Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "042",
+ "type": null,
+ "latitude": "56.29193200",
+ "longitude": "25.98120170"
+ },
+ {
+ "id": 4500,
+ "name": "Jelgava",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "JEL",
+ "type": null,
+ "latitude": "56.65110910",
+ "longitude": "23.72135410"
+ },
+ {
+ "id": 4424,
+ "name": "Jelgava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "041",
+ "type": null,
+ "latitude": "56.58956890",
+ "longitude": "23.66104810"
+ },
+ {
+ "id": 4446,
+ "name": "Jลซrmala",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "JUR",
+ "type": null,
+ "latitude": "56.94707900",
+ "longitude": "23.61684850"
+ },
+ {
+ "id": 4420,
+ "name": "Kandava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "043",
+ "type": null,
+ "latitude": "57.03406730",
+ "longitude": "22.78018130"
+ },
+ {
+ "id": 4453,
+ "name": "Kฤrsava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "044",
+ "type": null,
+ "latitude": "56.76458420",
+ "longitude": "27.73582950"
+ },
+ {
+ "id": 4412,
+ "name": "ฤถegums Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "051",
+ "type": null,
+ "latitude": "56.74753570",
+ "longitude": "24.71736450"
+ },
+ {
+ "id": 4435,
+ "name": "ฤถekava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "052",
+ "type": null,
+ "latitude": "56.80643510",
+ "longitude": "24.19394930"
+ },
+ {
+ "id": 4495,
+ "name": "Kocฤni Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "045",
+ "type": null,
+ "latitude": "57.52262920",
+ "longitude": "25.33495070"
+ },
+ {
+ "id": 4452,
+ "name": "Koknese Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "046",
+ "type": null,
+ "latitude": "56.72055600",
+ "longitude": "25.48939090"
+ },
+ {
+ "id": 4474,
+ "name": "Krฤslava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "047",
+ "type": null,
+ "latitude": "55.89514640",
+ "longitude": "27.18145770"
+ },
+ {
+ "id": 4422,
+ "name": "Krimulda Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "048",
+ "type": null,
+ "latitude": "57.17912730",
+ "longitude": "24.71401270"
+ },
+ {
+ "id": 4413,
+ "name": "Krustpils Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "049",
+ "type": null,
+ "latitude": "56.54155780",
+ "longitude": "26.24463970"
+ },
+ {
+ "id": 4490,
+ "name": "Kuldฤซga Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "050",
+ "type": null,
+ "latitude": "56.96872570",
+ "longitude": "21.96137390"
+ },
+ {
+ "id": 4512,
+ "name": "Lielvฤrde Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "053",
+ "type": null,
+ "latitude": "56.73929760",
+ "longitude": "24.97116180"
+ },
+ {
+ "id": 4460,
+ "name": "Liepฤja",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "LPX",
+ "type": null,
+ "latitude": "56.50466780",
+ "longitude": "21.01080600"
+ },
+ {
+ "id": 4488,
+ "name": "Lฤซgatne Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "055",
+ "type": null,
+ "latitude": "57.19442040",
+ "longitude": "25.09406810"
+ },
+ {
+ "id": 4418,
+ "name": "Limbaลพi Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "054",
+ "type": null,
+ "latitude": "57.54032270",
+ "longitude": "24.71344510"
+ },
+ {
+ "id": 4401,
+ "name": "Lฤซvฤni Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "056",
+ "type": null,
+ "latitude": "56.35509420",
+ "longitude": "26.17251900"
+ },
+ {
+ "id": 4419,
+ "name": "Lubฤna Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "057",
+ "type": null,
+ "latitude": "56.89992690",
+ "longitude": "26.71987890"
+ },
+ {
+ "id": 4501,
+ "name": "Ludza Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "058",
+ "type": null,
+ "latitude": "56.54595900",
+ "longitude": "27.71431990"
+ },
+ {
+ "id": 4433,
+ "name": "Madona Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "059",
+ "type": null,
+ "latitude": "56.85989230",
+ "longitude": "26.22762010"
+ },
+ {
+ "id": 4461,
+ "name": "Mฤlpils Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "061",
+ "type": null,
+ "latitude": "57.00841190",
+ "longitude": "24.95742780"
+ },
+ {
+ "id": 4450,
+ "name": "Mฤrupe Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "062",
+ "type": null,
+ "latitude": "56.89657170",
+ "longitude": "24.04600490"
+ },
+ {
+ "id": 4513,
+ "name": "Mazsalaca Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "060",
+ "type": null,
+ "latitude": "57.92677490",
+ "longitude": "25.06698950"
+ },
+ {
+ "id": 4451,
+ "name": "Mฤrsrags Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "063",
+ "type": null,
+ "latitude": "57.33068810",
+ "longitude": "23.10237070"
+ },
+ {
+ "id": 4398,
+ "name": "Naukลกฤni Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "064",
+ "type": null,
+ "latitude": "57.92953610",
+ "longitude": "25.51192660"
+ },
+ {
+ "id": 4432,
+ "name": "Nereta Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "065",
+ "type": null,
+ "latitude": "56.19866550",
+ "longitude": "25.32529690"
+ },
+ {
+ "id": 4436,
+ "name": "Nฤซca Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "066",
+ "type": null,
+ "latitude": "56.34649830",
+ "longitude": "21.06549300"
+ },
+ {
+ "id": 4416,
+ "name": "Ogre Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "067",
+ "type": null,
+ "latitude": "56.81473550",
+ "longitude": "24.60445550"
+ },
+ {
+ "id": 4417,
+ "name": "Olaine Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "068",
+ "type": null,
+ "latitude": "56.79523530",
+ "longitude": "24.01535890"
+ },
+ {
+ "id": 4442,
+ "name": "Ozolnieki Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "069",
+ "type": null,
+ "latitude": "56.67563050",
+ "longitude": "23.89948160"
+ },
+ {
+ "id": 4507,
+ "name": "Pฤrgauja Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "070",
+ "type": null,
+ "latitude": "57.36481220",
+ "longitude": "24.98220450"
+ },
+ {
+ "id": 4467,
+ "name": "Pฤvilosta Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "071",
+ "type": null,
+ "latitude": "56.88654240",
+ "longitude": "21.19468490"
+ },
+ {
+ "id": 4405,
+ "name": "Pฤผaviลas Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "072",
+ "type": null,
+ "latitude": "56.61773130",
+ "longitude": "25.71940430"
+ },
+ {
+ "id": 4483,
+ "name": "Preiฤผi Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "073",
+ "type": null,
+ "latitude": "56.15111570",
+ "longitude": "26.74397670"
+ },
+ {
+ "id": 4429,
+ "name": "Priekule Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "074",
+ "type": null,
+ "latitude": "56.41794130",
+ "longitude": "21.55033360"
+ },
+ {
+ "id": 4506,
+ "name": "Priekuฤผi Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "075",
+ "type": null,
+ "latitude": "57.36171380",
+ "longitude": "25.44104230"
+ },
+ {
+ "id": 4479,
+ "name": "Rauna Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "076",
+ "type": null,
+ "latitude": "57.33169300",
+ "longitude": "25.61003390"
+ },
+ {
+ "id": 4509,
+ "name": "Rฤzekne",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "REZ",
+ "type": null,
+ "latitude": "56.50992230",
+ "longitude": "27.33313570"
+ },
+ {
+ "id": 4455,
+ "name": "Rฤzekne Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "077",
+ "type": null,
+ "latitude": "56.32736380",
+ "longitude": "27.32843310"
+ },
+ {
+ "id": 4502,
+ "name": "Riebiลi Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "078",
+ "type": null,
+ "latitude": "56.34361900",
+ "longitude": "26.80181380"
+ },
+ {
+ "id": 4491,
+ "name": "Riga",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "RIX",
+ "type": null,
+ "latitude": "56.94964870",
+ "longitude": "24.10518650"
+ },
+ {
+ "id": 4440,
+ "name": "Roja Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "079",
+ "type": null,
+ "latitude": "57.50467130",
+ "longitude": "22.80121640"
+ },
+ {
+ "id": 4493,
+ "name": "Ropaลพi Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "080",
+ "type": null,
+ "latitude": "56.96157860",
+ "longitude": "24.60104760"
+ },
+ {
+ "id": 4503,
+ "name": "Rucava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "081",
+ "type": null,
+ "latitude": "56.15931240",
+ "longitude": "21.16181210"
+ },
+ {
+ "id": 4423,
+ "name": "Rugฤji Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "082",
+ "type": null,
+ "latitude": "57.00560230",
+ "longitude": "27.13172030"
+ },
+ {
+ "id": 4426,
+ "name": "Rลซjiena Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "084",
+ "type": null,
+ "latitude": "57.89372910",
+ "longitude": "25.33910080"
+ },
+ {
+ "id": 4404,
+ "name": "Rundฤle Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "083",
+ "type": null,
+ "latitude": "56.40972100",
+ "longitude": "24.01241390"
+ },
+ {
+ "id": 4434,
+ "name": "Sala Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "085",
+ "type": null,
+ "latitude": "59.96796130",
+ "longitude": "16.49782170"
+ },
+ {
+ "id": 4396,
+ "name": "Salacgrฤซva Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "086",
+ "type": null,
+ "latitude": "57.75808830",
+ "longitude": "24.35431810"
+ },
+ {
+ "id": 4402,
+ "name": "Salaspils Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "087",
+ "type": null,
+ "latitude": "56.86081520",
+ "longitude": "24.34978810"
+ },
+ {
+ "id": 4439,
+ "name": "Saldus Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "088",
+ "type": null,
+ "latitude": "56.66650880",
+ "longitude": "22.49354930"
+ },
+ {
+ "id": 4443,
+ "name": "Saulkrasti Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "089",
+ "type": null,
+ "latitude": "57.25794180",
+ "longitude": "24.41831460"
+ },
+ {
+ "id": 4408,
+ "name": "Sฤja Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "090",
+ "type": null,
+ "latitude": "57.20069950",
+ "longitude": "24.59228210"
+ },
+ {
+ "id": 4476,
+ "name": "Sigulda Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "091",
+ "type": null,
+ "latitude": "57.10550920",
+ "longitude": "24.83142590"
+ },
+ {
+ "id": 4415,
+ "name": "Skrฤซveri Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "092",
+ "type": null,
+ "latitude": "56.67613910",
+ "longitude": "25.09788490"
+ },
+ {
+ "id": 4447,
+ "name": "Skrunda Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "093",
+ "type": null,
+ "latitude": "56.66434580",
+ "longitude": "22.00457290"
+ },
+ {
+ "id": 4462,
+ "name": "Smiltene Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "094",
+ "type": null,
+ "latitude": "57.42303320",
+ "longitude": "25.90027800"
+ },
+ {
+ "id": 4478,
+ "name": "Stopiลi Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "095",
+ "type": null,
+ "latitude": "56.93644900",
+ "longitude": "24.28729490"
+ },
+ {
+ "id": 4494,
+ "name": "Strenฤi Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "096",
+ "type": null,
+ "latitude": "57.62254710",
+ "longitude": "25.80480860"
+ },
+ {
+ "id": 4459,
+ "name": "Talsi Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "097",
+ "type": null,
+ "latitude": "57.34152080",
+ "longitude": "22.57131250"
+ },
+ {
+ "id": 4480,
+ "name": "Tฤrvete Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "098",
+ "type": null,
+ "latitude": "56.41192010",
+ "longitude": "23.31883320"
+ },
+ {
+ "id": 4409,
+ "name": "Tukums Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "099",
+ "type": null,
+ "latitude": "56.96728680",
+ "longitude": "23.15243790"
+ },
+ {
+ "id": 4508,
+ "name": "Vaiลode Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "100",
+ "type": null,
+ "latitude": "56.41542710",
+ "longitude": "21.85139840"
+ },
+ {
+ "id": 4425,
+ "name": "Valka Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "101",
+ "type": null,
+ "latitude": "57.77439000",
+ "longitude": "26.01700500"
+ },
+ {
+ "id": 4473,
+ "name": "Valmiera",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "VMR",
+ "type": null,
+ "latitude": "57.53846590",
+ "longitude": "25.42636180"
+ },
+ {
+ "id": 4431,
+ "name": "Varakฤผฤni Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "102",
+ "type": null,
+ "latitude": "56.66880060",
+ "longitude": "26.56364140"
+ },
+ {
+ "id": 4406,
+ "name": "Vฤrkava Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "103",
+ "type": null,
+ "latitude": "56.24657440",
+ "longitude": "26.56643710"
+ },
+ {
+ "id": 4466,
+ "name": "Vecpiebalga Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "104",
+ "type": null,
+ "latitude": "57.06033560",
+ "longitude": "25.81615920"
+ },
+ {
+ "id": 4397,
+ "name": "Vecumnieki Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "105",
+ "type": null,
+ "latitude": "56.60623370",
+ "longitude": "24.52218910"
+ },
+ {
+ "id": 4421,
+ "name": "Ventspils",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "VEN",
+ "type": null,
+ "latitude": "57.39372160",
+ "longitude": "21.56470660"
+ },
+ {
+ "id": 4403,
+ "name": "Ventspils Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "106",
+ "type": null,
+ "latitude": "57.28336820",
+ "longitude": "21.85875580"
+ },
+ {
+ "id": 4456,
+ "name": "Viesฤซte Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "107",
+ "type": null,
+ "latitude": "56.31130850",
+ "longitude": "25.50704640"
+ },
+ {
+ "id": 4477,
+ "name": "Viฤผaka Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "108",
+ "type": null,
+ "latitude": "57.17222630",
+ "longitude": "27.66731880"
+ },
+ {
+ "id": 4486,
+ "name": "Viฤผฤni Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "109",
+ "type": null,
+ "latitude": "56.54561710",
+ "longitude": "26.91679270"
+ },
+ {
+ "id": 4430,
+ "name": "Zilupe Municipality",
+ "country_id": 120,
+ "country_code": "LV",
+ "country_name": "Latvia",
+ "state_code": "110",
+ "type": null,
+ "latitude": "56.30189850",
+ "longitude": "28.13395900"
+ },
+ {
+ "id": 2285,
+ "name": "Akkar",
+ "country_id": 121,
+ "country_code": "LB",
+ "country_name": "Lebanon",
+ "state_code": "AK",
+ "type": null,
+ "latitude": "34.53287630",
+ "longitude": "36.13281320"
+ },
+ {
+ "id": 2283,
+ "name": "Baalbek-Hermel",
+ "country_id": 121,
+ "country_code": "LB",
+ "country_name": "Lebanon",
+ "state_code": "BH",
+ "type": null,
+ "latitude": "34.26585560",
+ "longitude": "36.34980970"
+ },
+ {
+ "id": 2286,
+ "name": "Beirut",
+ "country_id": 121,
+ "country_code": "LB",
+ "country_name": "Lebanon",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "33.88861060",
+ "longitude": "35.49547720"
+ },
+ {
+ "id": 2287,
+ "name": "Beqaa",
+ "country_id": 121,
+ "country_code": "LB",
+ "country_name": "Lebanon",
+ "state_code": "BI",
+ "type": null,
+ "latitude": "33.84626620",
+ "longitude": "35.90194890"
+ },
+ {
+ "id": 2282,
+ "name": "Mount Lebanon",
+ "country_id": 121,
+ "country_code": "LB",
+ "country_name": "Lebanon",
+ "state_code": "JL",
+ "type": null,
+ "latitude": "33.81008580",
+ "longitude": "35.59731390"
+ },
+ {
+ "id": 2288,
+ "name": "Nabatieh",
+ "country_id": 121,
+ "country_code": "LB",
+ "country_name": "Lebanon",
+ "state_code": "NA",
+ "type": null,
+ "latitude": "33.37716930",
+ "longitude": "35.48382930"
+ },
+ {
+ "id": 2284,
+ "name": "North",
+ "country_id": 121,
+ "country_code": "LB",
+ "country_name": "Lebanon",
+ "state_code": "AS",
+ "type": null,
+ "latitude": "34.43806250",
+ "longitude": "35.83082330"
+ },
+ {
+ "id": 2281,
+ "name": "South",
+ "country_id": 121,
+ "country_code": "LB",
+ "country_name": "Lebanon",
+ "state_code": "JA",
+ "type": null,
+ "latitude": "33.27214790",
+ "longitude": "35.20327780"
+ },
+ {
+ "id": 3030,
+ "name": "Berea District",
+ "country_id": 122,
+ "country_code": "LS",
+ "country_name": "Lesotho",
+ "state_code": "D",
+ "type": null,
+ "latitude": "41.36616140",
+ "longitude": "-81.85430260"
+ },
+ {
+ "id": 3029,
+ "name": "Butha-Buthe District",
+ "country_id": 122,
+ "country_code": "LS",
+ "country_name": "Lesotho",
+ "state_code": "B",
+ "type": null,
+ "latitude": "-28.76537540",
+ "longitude": "28.24681480"
+ },
+ {
+ "id": 3026,
+ "name": "Leribe District",
+ "country_id": 122,
+ "country_code": "LS",
+ "country_name": "Lesotho",
+ "state_code": "C",
+ "type": null,
+ "latitude": "-28.86380650",
+ "longitude": "28.04788260"
+ },
+ {
+ "id": 3022,
+ "name": "Mafeteng District",
+ "country_id": 122,
+ "country_code": "LS",
+ "country_name": "Lesotho",
+ "state_code": "E",
+ "type": null,
+ "latitude": "-29.80410080",
+ "longitude": "27.50261740"
+ },
+ {
+ "id": 3028,
+ "name": "Maseru District",
+ "country_id": 122,
+ "country_code": "LS",
+ "country_name": "Lesotho",
+ "state_code": "A",
+ "type": null,
+ "latitude": "-29.51656500",
+ "longitude": "27.83114280"
+ },
+ {
+ "id": 3023,
+ "name": "Mohale's Hoek District",
+ "country_id": 122,
+ "country_code": "LS",
+ "country_name": "Lesotho",
+ "state_code": "F",
+ "type": null,
+ "latitude": "-30.14259170",
+ "longitude": "27.46738450"
+ },
+ {
+ "id": 3024,
+ "name": "Mokhotlong District",
+ "country_id": 122,
+ "country_code": "LS",
+ "country_name": "Lesotho",
+ "state_code": "J",
+ "type": null,
+ "latitude": "-29.25731930",
+ "longitude": "28.95286450"
+ },
+ {
+ "id": 3025,
+ "name": "Qacha's Nek District",
+ "country_id": 122,
+ "country_code": "LS",
+ "country_name": "Lesotho",
+ "state_code": "H",
+ "type": null,
+ "latitude": "-30.11145650",
+ "longitude": "28.67897900"
+ },
+ {
+ "id": 3027,
+ "name": "Quthing District",
+ "country_id": 122,
+ "country_code": "LS",
+ "country_name": "Lesotho",
+ "state_code": "G",
+ "type": null,
+ "latitude": "-30.40156870",
+ "longitude": "27.70801330"
+ },
+ {
+ "id": 3031,
+ "name": "Thaba-Tseka District",
+ "country_id": 122,
+ "country_code": "LS",
+ "country_name": "Lesotho",
+ "state_code": "K",
+ "type": null,
+ "latitude": "-29.52389750",
+ "longitude": "28.60897520"
+ },
+ {
+ "id": 3041,
+ "name": "Bomi County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "BM",
+ "type": null,
+ "latitude": "6.75629260",
+ "longitude": "-10.84514670"
+ },
+ {
+ "id": 3034,
+ "name": "Bong County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "BG",
+ "type": null,
+ "latitude": "6.82950190",
+ "longitude": "-9.36730840"
+ },
+ {
+ "id": 3044,
+ "name": "Gbarpolu County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "GP",
+ "type": null,
+ "latitude": "7.49526370",
+ "longitude": "-10.08072980"
+ },
+ {
+ "id": 3040,
+ "name": "Grand Bassa County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "GB",
+ "type": null,
+ "latitude": "6.23084520",
+ "longitude": "-9.81249350"
+ },
+ {
+ "id": 3036,
+ "name": "Grand Cape Mount County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "CM",
+ "type": null,
+ "latitude": "7.04677580",
+ "longitude": "-11.07117580"
+ },
+ {
+ "id": 3039,
+ "name": "Grand Gedeh County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "GG",
+ "type": null,
+ "latitude": "5.92220780",
+ "longitude": "-8.22129790"
+ },
+ {
+ "id": 3045,
+ "name": "Grand Kru County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "GK",
+ "type": null,
+ "latitude": "4.76138620",
+ "longitude": "-8.22129790"
+ },
+ {
+ "id": 3037,
+ "name": "Lofa County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "LO",
+ "type": null,
+ "latitude": "8.19111840",
+ "longitude": "-9.72326730"
+ },
+ {
+ "id": 3043,
+ "name": "Margibi County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "MG",
+ "type": null,
+ "latitude": "6.51518750",
+ "longitude": "-10.30488970"
+ },
+ {
+ "id": 3042,
+ "name": "Maryland County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "MY",
+ "type": null,
+ "latitude": "39.04575490",
+ "longitude": "-76.64127120"
+ },
+ {
+ "id": 3032,
+ "name": "Montserrado County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "MO",
+ "type": null,
+ "latitude": "6.55258150",
+ "longitude": "-10.52961150"
+ },
+ {
+ "id": 3046,
+ "name": "Nimba",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "NI",
+ "type": null,
+ "latitude": "7.61666670",
+ "longitude": "-8.41666670"
+ },
+ {
+ "id": 3033,
+ "name": "River Cess County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "RI",
+ "type": null,
+ "latitude": "5.90253280",
+ "longitude": "-9.45615500"
+ },
+ {
+ "id": 3038,
+ "name": "River Gee County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "RG",
+ "type": null,
+ "latitude": "5.26048940",
+ "longitude": "-7.87216000"
+ },
+ {
+ "id": 3035,
+ "name": "Sinoe County",
+ "country_id": 123,
+ "country_code": "LR",
+ "country_name": "Liberia",
+ "state_code": "SI",
+ "type": null,
+ "latitude": "5.49871000",
+ "longitude": "-8.66005860"
+ },
+ {
+ "id": 2964,
+ "name": "Al Wahat District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "WA",
+ "type": null,
+ "latitude": "29.04668080",
+ "longitude": "21.85685860"
+ },
+ {
+ "id": 2981,
+ "name": "Benghazi",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "32.11942420",
+ "longitude": "20.08679090"
+ },
+ {
+ "id": 2966,
+ "name": "Derna District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "DR",
+ "type": null,
+ "latitude": "32.75561300",
+ "longitude": "22.63774320"
+ },
+ {
+ "id": 2969,
+ "name": "Ghat District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "GT",
+ "type": null,
+ "latitude": "24.96403710",
+ "longitude": "10.17592850"
+ },
+ {
+ "id": 2980,
+ "name": "Jabal al Akhdar",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "JA",
+ "type": null,
+ "latitude": "23.18560810",
+ "longitude": "57.37138790"
+ },
+ {
+ "id": 2974,
+ "name": "Jabal al Gharbi District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "JG",
+ "type": null,
+ "latitude": "30.26380320",
+ "longitude": "12.80547530"
+ },
+ {
+ "id": 2979,
+ "name": "Jafara",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "JI",
+ "type": null,
+ "latitude": "32.45259040",
+ "longitude": "12.94355360"
+ },
+ {
+ "id": 2970,
+ "name": "Jufra",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "JU",
+ "type": null,
+ "latitude": "27.98351350",
+ "longitude": "16.91225100"
+ },
+ {
+ "id": 2972,
+ "name": "Kufra District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "KF",
+ "type": null,
+ "latitude": "23.31123890",
+ "longitude": "21.85685860"
+ },
+ {
+ "id": 2968,
+ "name": "Marj District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "MJ",
+ "type": null,
+ "latitude": "32.05503630",
+ "longitude": "21.18911510"
+ },
+ {
+ "id": 2978,
+ "name": "Misrata District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "MI",
+ "type": null,
+ "latitude": "32.32558840",
+ "longitude": "15.09925560"
+ },
+ {
+ "id": 2961,
+ "name": "Murqub",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "MB",
+ "type": null,
+ "latitude": "32.45996770",
+ "longitude": "14.10013260"
+ },
+ {
+ "id": 2967,
+ "name": "Murzuq District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "MQ",
+ "type": null,
+ "latitude": "25.91822620",
+ "longitude": "13.92600010"
+ },
+ {
+ "id": 2976,
+ "name": "Nalut District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "NL",
+ "type": null,
+ "latitude": "31.87423480",
+ "longitude": "10.97504840"
+ },
+ {
+ "id": 2962,
+ "name": "Nuqat al Khams",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "NQ",
+ "type": null,
+ "latitude": "32.69149090",
+ "longitude": "11.88917210"
+ },
+ {
+ "id": 2965,
+ "name": "Sabha District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "SB",
+ "type": null,
+ "latitude": "27.03654060",
+ "longitude": "14.42902360"
+ },
+ {
+ "id": 2977,
+ "name": "Sirte District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "SR",
+ "type": null,
+ "latitude": "31.18968900",
+ "longitude": "16.57019270"
+ },
+ {
+ "id": 2971,
+ "name": "Tripoli District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "TB",
+ "type": null,
+ "latitude": "32.64080210",
+ "longitude": "13.26634790"
+ },
+ {
+ "id": 2973,
+ "name": "Wadi al Hayaa District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "WD",
+ "type": null,
+ "latitude": "26.42259260",
+ "longitude": "12.62162110"
+ },
+ {
+ "id": 2975,
+ "name": "Wadi al Shatii District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "WS",
+ "type": null,
+ "latitude": "27.73514680",
+ "longitude": "12.43805810"
+ },
+ {
+ "id": 2963,
+ "name": "Zawiya District",
+ "country_id": 124,
+ "country_code": "LY",
+ "country_name": "Libya",
+ "state_code": "ZA",
+ "type": null,
+ "latitude": "32.76302820",
+ "longitude": "12.73649620"
+ },
+ {
+ "id": 458,
+ "name": "Balzers",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "01",
+ "type": null,
+ "latitude": "42.05283570",
+ "longitude": "-88.03668480"
+ },
+ {
+ "id": 451,
+ "name": "Eschen",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "02",
+ "type": null,
+ "latitude": "40.76695740",
+ "longitude": "-73.95228210"
+ },
+ {
+ "id": 457,
+ "name": "Gamprin",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "03",
+ "type": null,
+ "latitude": "47.21324900",
+ "longitude": "9.50251950"
+ },
+ {
+ "id": 455,
+ "name": "Mauren",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "04",
+ "type": null,
+ "latitude": "47.21892850",
+ "longitude": "9.54173500"
+ },
+ {
+ "id": 454,
+ "name": "Planken",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "05",
+ "type": null,
+ "latitude": "40.66505760",
+ "longitude": "-73.50479800"
+ },
+ {
+ "id": 453,
+ "name": "Ruggell",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "06",
+ "type": null,
+ "latitude": "47.25292220",
+ "longitude": "9.54021270"
+ },
+ {
+ "id": 450,
+ "name": "Schaan",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "07",
+ "type": null,
+ "latitude": "47.12043400",
+ "longitude": "9.59416020"
+ },
+ {
+ "id": 449,
+ "name": "Schellenberg",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "08",
+ "type": null,
+ "latitude": "47.23096600",
+ "longitude": "9.54678430"
+ },
+ {
+ "id": 459,
+ "name": "Triesen",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "09",
+ "type": null,
+ "latitude": "47.10979880",
+ "longitude": "9.52482960"
+ },
+ {
+ "id": 456,
+ "name": "Triesenberg",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "10",
+ "type": null,
+ "latitude": "47.12245110",
+ "longitude": "9.57019850"
+ },
+ {
+ "id": 452,
+ "name": "Vaduz",
+ "country_id": 125,
+ "country_code": "LI",
+ "country_name": "Liechtenstein",
+ "state_code": "11",
+ "type": null,
+ "latitude": "47.14103030",
+ "longitude": "9.52092770"
+ },
+ {
+ "id": 1561,
+ "name": "Akmenฤ District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "01",
+ "type": null,
+ "latitude": "56.24550290",
+ "longitude": "22.74711690"
+ },
+ {
+ "id": 1605,
+ "name": "Alytus City Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "02",
+ "type": null,
+ "latitude": "54.39629380",
+ "longitude": "24.04587610"
+ },
+ {
+ "id": 1574,
+ "name": "Alytus County",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "AL",
+ "type": null,
+ "latitude": "54.20002140",
+ "longitude": "24.15126340"
+ },
+ {
+ "id": 1599,
+ "name": "Alytus District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "03",
+ "type": null,
+ "latitude": "54.32974960",
+ "longitude": "24.19609310"
+ },
+ {
+ "id": 1603,
+ "name": "Birลกtonas Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "05",
+ "type": null,
+ "latitude": "54.56696640",
+ "longitude": "24.00930980"
+ },
+ {
+ "id": 1566,
+ "name": "Birลพai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "06",
+ "type": null,
+ "latitude": "56.20177190",
+ "longitude": "24.75601180"
+ },
+ {
+ "id": 1579,
+ "name": "Druskininkai municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "07",
+ "type": null,
+ "latitude": "53.99336850",
+ "longitude": "24.03424380"
+ },
+ {
+ "id": 1559,
+ "name": "Elektrฤnai municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "08",
+ "type": null,
+ "latitude": "54.76539340",
+ "longitude": "24.77405830"
+ },
+ {
+ "id": 1562,
+ "name": "Ignalina District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "09",
+ "type": null,
+ "latitude": "55.40903420",
+ "longitude": "26.32848930"
+ },
+ {
+ "id": 1567,
+ "name": "Jonava District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "10",
+ "type": null,
+ "latitude": "55.07272420",
+ "longitude": "24.27933370"
+ },
+ {
+ "id": 1581,
+ "name": "Joniลกkis District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "11",
+ "type": null,
+ "latitude": "56.23607300",
+ "longitude": "23.61365790"
+ },
+ {
+ "id": 1555,
+ "name": "Jurbarkas District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "12",
+ "type": null,
+ "latitude": "55.07740700",
+ "longitude": "22.74195690"
+ },
+ {
+ "id": 1583,
+ "name": "Kaiลกiadorys District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "13",
+ "type": null,
+ "latitude": "54.85886690",
+ "longitude": "24.42779290"
+ },
+ {
+ "id": 1591,
+ "name": "Kalvarija municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "14",
+ "type": null,
+ "latitude": "54.37616740",
+ "longitude": "23.19203210"
+ },
+ {
+ "id": 1580,
+ "name": "Kaunas City Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "15",
+ "type": null,
+ "latitude": "54.91453260",
+ "longitude": "23.90535180"
+ },
+ {
+ "id": 1556,
+ "name": "Kaunas County",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "KU",
+ "type": null,
+ "latitude": "54.98728630",
+ "longitude": "23.95257360"
+ },
+ {
+ "id": 1565,
+ "name": "Kaunas District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "16",
+ "type": null,
+ "latitude": "54.99362360",
+ "longitude": "23.63249410"
+ },
+ {
+ "id": 1575,
+ "name": "Kazlลณ Rลซda municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "17",
+ "type": null,
+ "latitude": "54.78075260",
+ "longitude": "23.48402430"
+ },
+ {
+ "id": 1584,
+ "name": "Kฤdainiai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "18",
+ "type": null,
+ "latitude": "55.35609470",
+ "longitude": "23.98326830"
+ },
+ {
+ "id": 1618,
+ "name": "Kelmฤ District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "19",
+ "type": null,
+ "latitude": "55.62663520",
+ "longitude": "22.87817200"
+ },
+ {
+ "id": 1597,
+ "name": "Klaipeda City Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "20",
+ "type": null,
+ "latitude": "55.70329480",
+ "longitude": "21.14427950"
+ },
+ {
+ "id": 1600,
+ "name": "Klaipฤda County",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "KL",
+ "type": null,
+ "latitude": "55.65197440",
+ "longitude": "21.37439560"
+ },
+ {
+ "id": 1604,
+ "name": "Klaipฤda District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "21",
+ "type": null,
+ "latitude": "55.68416150",
+ "longitude": "21.44164640"
+ },
+ {
+ "id": 1571,
+ "name": "Kretinga District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "22",
+ "type": null,
+ "latitude": "55.88384200",
+ "longitude": "21.23509190"
+ },
+ {
+ "id": 1585,
+ "name": "Kupiลกkis District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "23",
+ "type": null,
+ "latitude": "55.84287410",
+ "longitude": "25.02958160"
+ },
+ {
+ "id": 1611,
+ "name": "Lazdijai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "24",
+ "type": null,
+ "latitude": "54.23432670",
+ "longitude": "23.51565050"
+ },
+ {
+ "id": 1570,
+ "name": "Marijampolฤ County",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "MR",
+ "type": null,
+ "latitude": "54.78199710",
+ "longitude": "23.13413650"
+ },
+ {
+ "id": 1610,
+ "name": "Marijampolฤ Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "25",
+ "type": null,
+ "latitude": "54.57110940",
+ "longitude": "23.48593710"
+ },
+ {
+ "id": 1557,
+ "name": "Maลพeikiai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "26",
+ "type": null,
+ "latitude": "56.30924390",
+ "longitude": "22.34146800"
+ },
+ {
+ "id": 1582,
+ "name": "Molฤtai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "27",
+ "type": null,
+ "latitude": "55.22653090",
+ "longitude": "25.41800110"
+ },
+ {
+ "id": 1563,
+ "name": "Neringa Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "28",
+ "type": null,
+ "latitude": "55.45724030",
+ "longitude": "21.08390050"
+ },
+ {
+ "id": 1612,
+ "name": "Pagฤgiai municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "29",
+ "type": null,
+ "latitude": "55.17213200",
+ "longitude": "21.96836140"
+ },
+ {
+ "id": 1595,
+ "name": "Pakruojis District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "30",
+ "type": null,
+ "latitude": "56.07326050",
+ "longitude": "23.93899060"
+ },
+ {
+ "id": 1588,
+ "name": "Palanga City Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "31",
+ "type": null,
+ "latitude": "55.92019800",
+ "longitude": "21.06776140"
+ },
+ {
+ "id": 1589,
+ "name": "Panevฤลพys City Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "32",
+ "type": null,
+ "latitude": "55.73479150",
+ "longitude": "24.35747740"
+ },
+ {
+ "id": 1558,
+ "name": "Panevฤลพys County",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "PN",
+ "type": null,
+ "latitude": "55.97480490",
+ "longitude": "25.07947670"
+ },
+ {
+ "id": 1614,
+ "name": "Panevฤลพys District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "33",
+ "type": null,
+ "latitude": "55.61667280",
+ "longitude": "24.31422830"
+ },
+ {
+ "id": 1616,
+ "name": "Pasvalys District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "34",
+ "type": null,
+ "latitude": "56.06046190",
+ "longitude": "24.39629100"
+ },
+ {
+ "id": 1553,
+ "name": "Plungฤ District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "35",
+ "type": null,
+ "latitude": "55.91078400",
+ "longitude": "21.84540690"
+ },
+ {
+ "id": 1578,
+ "name": "Prienai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "36",
+ "type": null,
+ "latitude": "54.63835800",
+ "longitude": "23.94680090"
+ },
+ {
+ "id": 1568,
+ "name": "Radviliลกkis District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "37",
+ "type": null,
+ "latitude": "55.81083990",
+ "longitude": "23.54648700"
+ },
+ {
+ "id": 1587,
+ "name": "Raseiniai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "38",
+ "type": null,
+ "latitude": "55.38194990",
+ "longitude": "23.11561290"
+ },
+ {
+ "id": 1590,
+ "name": "Rietavas municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "39",
+ "type": null,
+ "latitude": "55.70217190",
+ "longitude": "21.99865640"
+ },
+ {
+ "id": 1615,
+ "name": "Rokiลกkis District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "40",
+ "type": null,
+ "latitude": "55.95550390",
+ "longitude": "25.58592490"
+ },
+ {
+ "id": 1576,
+ "name": "ล akiai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "41",
+ "type": null,
+ "latitude": "54.95267100",
+ "longitude": "23.04801990"
+ },
+ {
+ "id": 1577,
+ "name": "ล alฤininkai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "42",
+ "type": null,
+ "latitude": "54.30976700",
+ "longitude": "25.38756400"
+ },
+ {
+ "id": 1609,
+ "name": "ล iauliai City Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "43",
+ "type": null,
+ "latitude": "55.93490850",
+ "longitude": "23.31368230"
+ },
+ {
+ "id": 1586,
+ "name": "ล iauliai County",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "55.99857510",
+ "longitude": "23.13800510"
+ },
+ {
+ "id": 1554,
+ "name": "ล iauliai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "44",
+ "type": null,
+ "latitude": "55.97214560",
+ "longitude": "23.03323710"
+ },
+ {
+ "id": 1613,
+ "name": "ล ilalฤ District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "45",
+ "type": null,
+ "latitude": "55.49268000",
+ "longitude": "22.18455590"
+ },
+ {
+ "id": 1607,
+ "name": "ล ilutฤ District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "46",
+ "type": null,
+ "latitude": "55.35041400",
+ "longitude": "21.46598590"
+ },
+ {
+ "id": 1594,
+ "name": "ล irvintos District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "47",
+ "type": null,
+ "latitude": "55.04310200",
+ "longitude": "24.95698100"
+ },
+ {
+ "id": 1617,
+ "name": "Skuodas District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "48",
+ "type": null,
+ "latitude": "56.27021690",
+ "longitude": "21.52143310"
+ },
+ {
+ "id": 1560,
+ "name": "ล venฤionys District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "49",
+ "type": null,
+ "latitude": "55.10280980",
+ "longitude": "26.00718550"
+ },
+ {
+ "id": 1573,
+ "name": "Tauragฤ County",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "55.30725860",
+ "longitude": "22.35729390"
+ },
+ {
+ "id": 1572,
+ "name": "Tauragฤ District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "50",
+ "type": null,
+ "latitude": "55.25036600",
+ "longitude": "22.29095000"
+ },
+ {
+ "id": 1569,
+ "name": "Telลกiai County",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "TE",
+ "type": null,
+ "latitude": "56.10266160",
+ "longitude": "22.11139150"
+ },
+ {
+ "id": 1608,
+ "name": "Telลกiai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "51",
+ "type": null,
+ "latitude": "55.91752150",
+ "longitude": "22.34518400"
+ },
+ {
+ "id": 1593,
+ "name": "Trakai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "52",
+ "type": null,
+ "latitude": "54.63791130",
+ "longitude": "24.93468940"
+ },
+ {
+ "id": 1596,
+ "name": "Ukmergฤ District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "53",
+ "type": null,
+ "latitude": "55.24526500",
+ "longitude": "24.77607490"
+ },
+ {
+ "id": 1621,
+ "name": "Utena County",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "UT",
+ "type": null,
+ "latitude": "55.53189690",
+ "longitude": "25.79046990"
+ },
+ {
+ "id": 1598,
+ "name": "Utena District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "54",
+ "type": null,
+ "latitude": "55.50846140",
+ "longitude": "25.68326420"
+ },
+ {
+ "id": 1602,
+ "name": "Varฤna District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "55",
+ "type": null,
+ "latitude": "54.22033300",
+ "longitude": "24.57899700"
+ },
+ {
+ "id": 1620,
+ "name": "Vilkaviลกkis District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "56",
+ "type": null,
+ "latitude": "54.65194500",
+ "longitude": "23.03515500"
+ },
+ {
+ "id": 1606,
+ "name": "Vilnius City Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "57",
+ "type": null,
+ "latitude": "54.67107610",
+ "longitude": "25.28787210"
+ },
+ {
+ "id": 1601,
+ "name": "Vilnius County",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "VL",
+ "type": null,
+ "latitude": "54.80865020",
+ "longitude": "25.21821390"
+ },
+ {
+ "id": 1592,
+ "name": "Vilnius District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "58",
+ "type": null,
+ "latitude": "54.77325780",
+ "longitude": "25.58671130"
+ },
+ {
+ "id": 1564,
+ "name": "Visaginas Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "59",
+ "type": null,
+ "latitude": "55.59411800",
+ "longitude": "26.43079540"
+ },
+ {
+ "id": 1619,
+ "name": "Zarasai District Municipality",
+ "country_id": 126,
+ "country_code": "LT",
+ "country_name": "Lithuania",
+ "state_code": "60",
+ "type": null,
+ "latitude": "55.73096090",
+ "longitude": "26.24529500"
+ },
+ {
+ "id": 1518,
+ "name": "Canton of Capellen",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "CA",
+ "type": null,
+ "latitude": "49.64039310",
+ "longitude": "5.95538460"
+ },
+ {
+ "id": 1521,
+ "name": "Canton of Clervaux",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "CL",
+ "type": null,
+ "latitude": "50.05463130",
+ "longitude": "6.02858750"
+ },
+ {
+ "id": 1513,
+ "name": "Canton of Diekirch",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "DI",
+ "type": null,
+ "latitude": "49.86717840",
+ "longitude": "6.15956330"
+ },
+ {
+ "id": 1515,
+ "name": "Canton of Echternach",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "EC",
+ "type": null,
+ "latitude": "49.81141330",
+ "longitude": "6.41756350"
+ },
+ {
+ "id": 1517,
+ "name": "Canton of Esch-sur-Alzette",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "ES",
+ "type": null,
+ "latitude": "49.50088050",
+ "longitude": "5.98609250"
+ },
+ {
+ "id": 1525,
+ "name": "Canton of Grevenmacher",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "GR",
+ "type": null,
+ "latitude": "49.68084100",
+ "longitude": "6.44075930"
+ },
+ {
+ "id": 1527,
+ "name": "Canton of Luxembourg",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "LU",
+ "type": null,
+ "latitude": "49.63010250",
+ "longitude": "6.15201850"
+ },
+ {
+ "id": 1522,
+ "name": "Canton of Mersch",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "ME",
+ "type": null,
+ "latitude": "49.75429060",
+ "longitude": "6.12921850"
+ },
+ {
+ "id": 1516,
+ "name": "Canton of Redange",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "RD",
+ "type": null,
+ "latitude": "49.76455000",
+ "longitude": "5.88948000"
+ },
+ {
+ "id": 1519,
+ "name": "Canton of Remich",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "RM",
+ "type": null,
+ "latitude": "49.54501700",
+ "longitude": "6.36742220"
+ },
+ {
+ "id": 1523,
+ "name": "Canton of Vianden",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "VD",
+ "type": null,
+ "latitude": "49.93419240",
+ "longitude": "6.20199170"
+ },
+ {
+ "id": 1526,
+ "name": "Canton of Wiltz",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "WI",
+ "type": null,
+ "latitude": "49.96622000",
+ "longitude": "5.93243060"
+ },
+ {
+ "id": 1524,
+ "name": "Diekirch District",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "D",
+ "type": null,
+ "latitude": "49.86717200",
+ "longitude": "6.15963620"
+ },
+ {
+ "id": 1520,
+ "name": "Grevenmacher District",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "G",
+ "type": null,
+ "latitude": "49.68085100",
+ "longitude": "6.44075240"
+ },
+ {
+ "id": 1514,
+ "name": "Luxembourg District",
+ "country_id": 127,
+ "country_code": "LU",
+ "country_name": "Luxembourg",
+ "state_code": "L",
+ "type": null,
+ "latitude": "49.59537060",
+ "longitude": "6.13331780"
+ },
+ {
+ "id": 2951,
+ "name": "Antananarivo Province",
+ "country_id": 130,
+ "country_code": "MG",
+ "country_name": "Madagascar",
+ "state_code": "T",
+ "type": null,
+ "latitude": "-18.70514740",
+ "longitude": "46.82528380"
+ },
+ {
+ "id": 2950,
+ "name": "Antsiranana Province",
+ "country_id": 130,
+ "country_code": "MG",
+ "country_name": "Madagascar",
+ "state_code": "D",
+ "type": null,
+ "latitude": "-13.77153900",
+ "longitude": "49.52799960"
+ },
+ {
+ "id": 2948,
+ "name": "Fianarantsoa Province",
+ "country_id": 130,
+ "country_code": "MG",
+ "country_name": "Madagascar",
+ "state_code": "F",
+ "type": null,
+ "latitude": "-22.35362400",
+ "longitude": "46.82528380"
+ },
+ {
+ "id": 2953,
+ "name": "Mahajanga Province",
+ "country_id": 130,
+ "country_code": "MG",
+ "country_name": "Madagascar",
+ "state_code": "M",
+ "type": null,
+ "latitude": "-16.52388300",
+ "longitude": "46.51626200"
+ },
+ {
+ "id": 2952,
+ "name": "Toamasina Province",
+ "country_id": 130,
+ "country_code": "MG",
+ "country_name": "Madagascar",
+ "state_code": "A",
+ "type": null,
+ "latitude": "-18.14428110",
+ "longitude": "49.39578360"
+ },
+ {
+ "id": 2949,
+ "name": "Toliara Province",
+ "country_id": 130,
+ "country_code": "MG",
+ "country_name": "Madagascar",
+ "state_code": "U",
+ "type": null,
+ "latitude": "-23.35161910",
+ "longitude": "43.68549360"
+ },
+ {
+ "id": 3096,
+ "name": "Balaka District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "-15.05065950",
+ "longitude": "35.08285880"
+ },
+ {
+ "id": 3102,
+ "name": "Blantyre District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "BL",
+ "type": null,
+ "latitude": "-15.67785410",
+ "longitude": "34.95066250"
+ },
+ {
+ "id": 3092,
+ "name": "Central Region",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "C",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3107,
+ "name": "Chikwawa District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "CK",
+ "type": null,
+ "latitude": "-16.19584460",
+ "longitude": "34.77407930"
+ },
+ {
+ "id": 3109,
+ "name": "Chiradzulu District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "CR",
+ "type": null,
+ "latitude": "-15.74231510",
+ "longitude": "35.25879640"
+ },
+ {
+ "id": 3087,
+ "name": "Chitipa district",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "CT",
+ "type": null,
+ "latitude": "-9.70376550",
+ "longitude": "33.27002530"
+ },
+ {
+ "id": 3097,
+ "name": "Dedza District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "DE",
+ "type": null,
+ "latitude": "-14.18945850",
+ "longitude": "34.24215970"
+ },
+ {
+ "id": 3090,
+ "name": "Dowa District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "DO",
+ "type": null,
+ "latitude": "-13.60412560",
+ "longitude": "33.88577470"
+ },
+ {
+ "id": 3091,
+ "name": "Karonga District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "KR",
+ "type": null,
+ "latitude": "-9.90363650",
+ "longitude": "33.97500180"
+ },
+ {
+ "id": 3094,
+ "name": "Kasungu District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "KS",
+ "type": null,
+ "latitude": "-13.13670650",
+ "longitude": "33.25879300"
+ },
+ {
+ "id": 3093,
+ "name": "Likoma District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "LK",
+ "type": null,
+ "latitude": "-12.05840050",
+ "longitude": "34.73540310"
+ },
+ {
+ "id": 3101,
+ "name": "Lilongwe District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "LI",
+ "type": null,
+ "latitude": "-14.04752280",
+ "longitude": "33.61757700"
+ },
+ {
+ "id": 3082,
+ "name": "Machinga District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "MH",
+ "type": null,
+ "latitude": "-14.94072630",
+ "longitude": "35.47819260"
+ },
+ {
+ "id": 3110,
+ "name": "Mangochi District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "MG",
+ "type": null,
+ "latitude": "-14.13882480",
+ "longitude": "35.03881640"
+ },
+ {
+ "id": 3099,
+ "name": "Mchinji District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "MC",
+ "type": null,
+ "latitude": "-13.74015250",
+ "longitude": "32.98883190"
+ },
+ {
+ "id": 3103,
+ "name": "Mulanje District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "MU",
+ "type": null,
+ "latitude": "-15.93464340",
+ "longitude": "35.52200120"
+ },
+ {
+ "id": 3084,
+ "name": "Mwanza District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "MW",
+ "type": null,
+ "latitude": "-2.46711970",
+ "longitude": "32.89868120"
+ },
+ {
+ "id": 3104,
+ "name": "Mzimba District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "MZ",
+ "type": null,
+ "latitude": "-11.74754520",
+ "longitude": "33.52800720"
+ },
+ {
+ "id": 3095,
+ "name": "Nkhata Bay District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "NB",
+ "type": null,
+ "latitude": "-11.71850420",
+ "longitude": "34.33103640"
+ },
+ {
+ "id": 3100,
+ "name": "Nkhotakota District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "NK",
+ "type": null,
+ "latitude": "-12.75419610",
+ "longitude": "34.24215970"
+ },
+ {
+ "id": 3105,
+ "name": "Northern Region",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "N",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3085,
+ "name": "Nsanje District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "NS",
+ "type": null,
+ "latitude": "-16.72882020",
+ "longitude": "35.17087410"
+ },
+ {
+ "id": 3088,
+ "name": "Ntcheu District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "NU",
+ "type": null,
+ "latitude": "-14.90375380",
+ "longitude": "34.77407930"
+ },
+ {
+ "id": 3111,
+ "name": "Ntchisi District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "NI",
+ "type": null,
+ "latitude": "-13.28419920",
+ "longitude": "33.88577470"
+ },
+ {
+ "id": 3108,
+ "name": "Phalombe District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "PH",
+ "type": null,
+ "latitude": "-15.70920380",
+ "longitude": "35.65328480"
+ },
+ {
+ "id": 3089,
+ "name": "Rumphi District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "RU",
+ "type": null,
+ "latitude": "-10.78515370",
+ "longitude": "34.33103640"
+ },
+ {
+ "id": 3086,
+ "name": "Salima District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "-13.68095860",
+ "longitude": "34.41982430"
+ },
+ {
+ "id": 3106,
+ "name": "Southern Region",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "S",
+ "type": null,
+ "latitude": "32.75049570",
+ "longitude": "-97.33154760"
+ },
+ {
+ "id": 3098,
+ "name": "Thyolo District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "TH",
+ "type": null,
+ "latitude": "-16.12991770",
+ "longitude": "35.12687810"
+ },
+ {
+ "id": 3083,
+ "name": "Zomba District",
+ "country_id": 131,
+ "country_code": "MW",
+ "country_name": "Malawi",
+ "state_code": "ZO",
+ "type": null,
+ "latitude": "-15.37658570",
+ "longitude": "35.33565180"
+ },
+ {
+ "id": 1950,
+ "name": "Johor",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "01",
+ "type": null,
+ "latitude": "1.48536820",
+ "longitude": "103.76181540"
+ },
+ {
+ "id": 1947,
+ "name": "Kedah",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "02",
+ "type": null,
+ "latitude": "6.11839640",
+ "longitude": "100.36845950"
+ },
+ {
+ "id": 1946,
+ "name": "Kelantan",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "03",
+ "type": null,
+ "latitude": "6.12539690",
+ "longitude": "102.23807100"
+ },
+ {
+ "id": 1949,
+ "name": "Kuala Lumpur",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "14",
+ "type": null,
+ "latitude": "3.13900300",
+ "longitude": "101.68685500"
+ },
+ {
+ "id": 1935,
+ "name": "Labuan",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "15",
+ "type": null,
+ "latitude": "5.28314560",
+ "longitude": "115.23082500"
+ },
+ {
+ "id": 1941,
+ "name": "Malacca",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "04",
+ "type": null,
+ "latitude": "2.18959400",
+ "longitude": "102.25008680"
+ },
+ {
+ "id": 1948,
+ "name": "Negeri Sembilan",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "05",
+ "type": null,
+ "latitude": "2.72580580",
+ "longitude": "101.94237820"
+ },
+ {
+ "id": 1940,
+ "name": "Pahang",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "06",
+ "type": null,
+ "latitude": "3.81263180",
+ "longitude": "103.32562040"
+ },
+ {
+ "id": 1939,
+ "name": "Penang",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "07",
+ "type": null,
+ "latitude": "5.41639350",
+ "longitude": "100.33267860"
+ },
+ {
+ "id": 1943,
+ "name": "Perak",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "08",
+ "type": null,
+ "latitude": "4.59211260",
+ "longitude": "101.09010900"
+ },
+ {
+ "id": 1938,
+ "name": "Perlis",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "09",
+ "type": null,
+ "latitude": "29.92270940",
+ "longitude": "-90.12285590"
+ },
+ {
+ "id": 1945,
+ "name": "Putrajaya",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "16",
+ "type": null,
+ "latitude": "2.92636100",
+ "longitude": "101.69644500"
+ },
+ {
+ "id": 1936,
+ "name": "Sabah",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "12",
+ "type": null,
+ "latitude": "5.97883980",
+ "longitude": "116.07531990"
+ },
+ {
+ "id": 1937,
+ "name": "Sarawak",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "13",
+ "type": null,
+ "latitude": "1.55327830",
+ "longitude": "110.35921270"
+ },
+ {
+ "id": 1944,
+ "name": "Selangor",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "10",
+ "type": null,
+ "latitude": "3.07383790",
+ "longitude": "101.51834690"
+ },
+ {
+ "id": 1942,
+ "name": "Terengganu",
+ "country_id": 132,
+ "country_code": "MY",
+ "country_name": "Malaysia",
+ "state_code": "11",
+ "type": null,
+ "latitude": "5.31169160",
+ "longitude": "103.13241540"
+ },
+ {
+ "id": 2594,
+ "name": "Addu Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "01",
+ "type": null,
+ "latitude": "-0.63009950",
+ "longitude": "73.15856260"
+ },
+ {
+ "id": 2587,
+ "name": "Alif Alif Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "02",
+ "type": null,
+ "latitude": "4.08500000",
+ "longitude": "72.85154790"
+ },
+ {
+ "id": 2600,
+ "name": "Alif Dhaal Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "00",
+ "type": null,
+ "latitude": "3.65433020",
+ "longitude": "72.80427970"
+ },
+ {
+ "id": 2604,
+ "name": "Central Province",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "CE",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2590,
+ "name": "Dhaalu Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "17",
+ "type": null,
+ "latitude": "2.84685020",
+ "longitude": "72.94605660"
+ },
+ {
+ "id": 2599,
+ "name": "Faafu Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "14",
+ "type": null,
+ "latitude": "3.23094090",
+ "longitude": "72.94605660"
+ },
+ {
+ "id": 2598,
+ "name": "Gaafu Alif Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "27",
+ "type": null,
+ "latitude": "0.61248130",
+ "longitude": "73.32370800"
+ },
+ {
+ "id": 2603,
+ "name": "Gaafu Dhaalu Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "28",
+ "type": null,
+ "latitude": "0.35880400",
+ "longitude": "73.18216230"
+ },
+ {
+ "id": 2595,
+ "name": "Gnaviyani Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "29",
+ "type": null,
+ "latitude": "-0.30064250",
+ "longitude": "73.42391430"
+ },
+ {
+ "id": 2586,
+ "name": "Haa Alif Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "07",
+ "type": null,
+ "latitude": "6.99034880",
+ "longitude": "72.94605660"
+ },
+ {
+ "id": 2597,
+ "name": "Haa Dhaalu Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "23",
+ "type": null,
+ "latitude": "6.57827170",
+ "longitude": "72.94605660"
+ },
+ {
+ "id": 2596,
+ "name": "Kaafu Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "26",
+ "type": null,
+ "latitude": "4.45589790",
+ "longitude": "73.55941280"
+ },
+ {
+ "id": 2601,
+ "name": "Laamu Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "05",
+ "type": null,
+ "latitude": "1.94307370",
+ "longitude": "73.41802110"
+ },
+ {
+ "id": 2607,
+ "name": "Lhaviyani Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "03",
+ "type": null,
+ "latitude": "5.37470210",
+ "longitude": "73.51229280"
+ },
+ {
+ "id": 2609,
+ "name": "Malรฉ",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "MLE",
+ "type": null,
+ "latitude": "46.34888670",
+ "longitude": "10.90724890"
+ },
+ {
+ "id": 2608,
+ "name": "Meemu Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "12",
+ "type": null,
+ "latitude": "3.00903450",
+ "longitude": "73.51229280"
+ },
+ {
+ "id": 2592,
+ "name": "Noonu Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "25",
+ "type": null,
+ "latitude": "5.85512760",
+ "longitude": "73.32370800"
+ },
+ {
+ "id": 2589,
+ "name": "North Central Province",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "NC",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2588,
+ "name": "North Province",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "NO",
+ "type": null,
+ "latitude": "8.88550270",
+ "longitude": "80.27673270"
+ },
+ {
+ "id": 2602,
+ "name": "Raa Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "13",
+ "type": null,
+ "latitude": "5.60064570",
+ "longitude": "72.94605660"
+ },
+ {
+ "id": 2585,
+ "name": "Shaviyani Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "24",
+ "type": null,
+ "latitude": "6.17511000",
+ "longitude": "73.13496050"
+ },
+ {
+ "id": 2606,
+ "name": "South Central Province",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "SC",
+ "type": null,
+ "latitude": "7.25649960",
+ "longitude": "80.72144170"
+ },
+ {
+ "id": 2605,
+ "name": "South Province",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "SU",
+ "type": null,
+ "latitude": "-21.74820060",
+ "longitude": "166.17837390"
+ },
+ {
+ "id": 2591,
+ "name": "Thaa Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "08",
+ "type": null,
+ "latitude": "2.43111610",
+ "longitude": "73.18216230"
+ },
+ {
+ "id": 2593,
+ "name": "Upper South Province",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "US",
+ "type": null,
+ "latitude": "0.23070000",
+ "longitude": "73.27948460"
+ },
+ {
+ "id": 2584,
+ "name": "Vaavu Atoll",
+ "country_id": 133,
+ "country_code": "MV",
+ "country_name": "Maldives",
+ "state_code": "04",
+ "type": null,
+ "latitude": "3.39554380",
+ "longitude": "73.51229280"
+ },
+ {
+ "id": 253,
+ "name": "Bamako",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "BKO",
+ "type": null,
+ "latitude": "12.63923160",
+ "longitude": "-8.00288920"
+ },
+ {
+ "id": 258,
+ "name": "Gao Region",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "7",
+ "type": null,
+ "latitude": "16.90663320",
+ "longitude": "1.52086240"
+ },
+ {
+ "id": 252,
+ "name": "Kayes Region",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "1",
+ "type": null,
+ "latitude": "14.08183080",
+ "longitude": "-9.90181310"
+ },
+ {
+ "id": 257,
+ "name": "Kidal Region",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "8",
+ "type": null,
+ "latitude": "18.79868320",
+ "longitude": "1.83183340"
+ },
+ {
+ "id": 250,
+ "name": "Koulikoro Region",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "2",
+ "type": null,
+ "latitude": "13.80180740",
+ "longitude": "-7.43813550"
+ },
+ {
+ "id": 251,
+ "name": "Mรฉnaka Region",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "9",
+ "type": null,
+ "latitude": "15.91564210",
+ "longitude": "2.39617400"
+ },
+ {
+ "id": 255,
+ "name": "Mopti Region",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "5",
+ "type": null,
+ "latitude": "14.63380390",
+ "longitude": "-3.41955270"
+ },
+ {
+ "id": 249,
+ "name": "Sรฉgou Region",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "4",
+ "type": null,
+ "latitude": "13.83944560",
+ "longitude": "-6.06791940"
+ },
+ {
+ "id": 254,
+ "name": "Sikasso Region",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "3",
+ "type": null,
+ "latitude": "10.89051860",
+ "longitude": "-7.43813550"
+ },
+ {
+ "id": 256,
+ "name": "Taoudรฉnit Region",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "10",
+ "type": null,
+ "latitude": "22.67641320",
+ "longitude": "-3.97891430"
+ },
+ {
+ "id": 248,
+ "name": "Tombouctou Region",
+ "country_id": 134,
+ "country_code": "ML",
+ "country_name": "Mali",
+ "state_code": "6",
+ "type": null,
+ "latitude": "21.05267060",
+ "longitude": "-3.74350900"
+ },
+ {
+ "id": 110,
+ "name": "Attard",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "01",
+ "type": null,
+ "latitude": "35.89049670",
+ "longitude": "14.41993220"
+ },
+ {
+ "id": 108,
+ "name": "Balzan",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "02",
+ "type": null,
+ "latitude": "35.89574140",
+ "longitude": "14.45340650"
+ },
+ {
+ "id": 107,
+ "name": "Birgu",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "03",
+ "type": null,
+ "latitude": "35.88792140",
+ "longitude": "14.52256200"
+ },
+ {
+ "id": 97,
+ "name": "Birkirkara",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "04",
+ "type": null,
+ "latitude": "35.89547060",
+ "longitude": "14.46650720"
+ },
+ {
+ "id": 88,
+ "name": "Birลผebbuฤกa",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "05",
+ "type": null,
+ "latitude": "35.81359890",
+ "longitude": "14.52474630"
+ },
+ {
+ "id": 138,
+ "name": "Cospicua",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "06",
+ "type": null,
+ "latitude": "35.88067530",
+ "longitude": "14.52183380"
+ },
+ {
+ "id": 117,
+ "name": "Dingli",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "07",
+ "type": null,
+ "latitude": "35.86273090",
+ "longitude": "14.38501070"
+ },
+ {
+ "id": 129,
+ "name": "Fgura",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "08",
+ "type": null,
+ "latitude": "35.87382690",
+ "longitude": "14.52329010"
+ },
+ {
+ "id": 84,
+ "name": "Floriana",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "09",
+ "type": null,
+ "latitude": "45.49521850",
+ "longitude": "-73.71395760"
+ },
+ {
+ "id": 134,
+ "name": "Fontana",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "10",
+ "type": null,
+ "latitude": "34.09223350",
+ "longitude": "-117.43504800"
+ },
+ {
+ "id": 130,
+ "name": "Gฤงajnsielem",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "13",
+ "type": null,
+ "latitude": "36.02479660",
+ "longitude": "14.28029610"
+ },
+ {
+ "id": 92,
+ "name": "Gฤงarb",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "14",
+ "type": null,
+ "latitude": "36.06890900",
+ "longitude": "14.20180980"
+ },
+ {
+ "id": 120,
+ "name": "Gฤงargฤงur",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "15",
+ "type": null,
+ "latitude": "35.92205690",
+ "longitude": "14.45631760"
+ },
+ {
+ "id": 106,
+ "name": "Gฤงasri",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "16",
+ "type": null,
+ "latitude": "36.06680750",
+ "longitude": "14.21924750"
+ },
+ {
+ "id": 124,
+ "name": "Gฤงaxaq",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "17",
+ "type": null,
+ "latitude": "35.84403590",
+ "longitude": "14.51600900"
+ },
+ {
+ "id": 118,
+ "name": "Gudja",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "11",
+ "type": null,
+ "latitude": "35.84698030",
+ "longitude": "14.50290400"
+ },
+ {
+ "id": 113,
+ "name": "Gลผira",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "12",
+ "type": null,
+ "latitude": "35.90589700",
+ "longitude": "14.49533380"
+ },
+ {
+ "id": 105,
+ "name": "ฤฆamrun",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "18",
+ "type": null,
+ "latitude": "35.88612370",
+ "longitude": "14.48834420"
+ },
+ {
+ "id": 93,
+ "name": "Iklin",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "19",
+ "type": null,
+ "latitude": "35.90987740",
+ "longitude": "14.45777320"
+ },
+ {
+ "id": 99,
+ "name": "Kalkara",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "21",
+ "type": null,
+ "latitude": "35.89142420",
+ "longitude": "14.53202780"
+ },
+ {
+ "id": 91,
+ "name": "Kerฤem",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "22",
+ "type": null,
+ "latitude": "36.04479390",
+ "longitude": "14.22506050"
+ },
+ {
+ "id": 82,
+ "name": "Kirkop",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "23",
+ "type": null,
+ "latitude": "35.84378620",
+ "longitude": "14.48543240"
+ },
+ {
+ "id": 126,
+ "name": "Lija",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "24",
+ "type": null,
+ "latitude": "49.18007600",
+ "longitude": "-123.10331700"
+ },
+ {
+ "id": 77,
+ "name": "Luqa",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "25",
+ "type": null,
+ "latitude": "35.85828650",
+ "longitude": "14.48688830"
+ },
+ {
+ "id": 128,
+ "name": "Marsa",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "26",
+ "type": null,
+ "latitude": "34.03195870",
+ "longitude": "-118.44555350"
+ },
+ {
+ "id": 137,
+ "name": "Marsaskala",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "27",
+ "type": null,
+ "latitude": "35.86036400",
+ "longitude": "14.55678760"
+ },
+ {
+ "id": 78,
+ "name": "Marsaxlokk",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "28",
+ "type": null,
+ "latitude": "35.84116990",
+ "longitude": "14.53930970"
+ },
+ {
+ "id": 89,
+ "name": "Mdina",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "29",
+ "type": null,
+ "latitude": "35.88809300",
+ "longitude": "14.40683570"
+ },
+ {
+ "id": 102,
+ "name": "Mellieฤงa",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "30",
+ "type": null,
+ "latitude": "35.95235290",
+ "longitude": "14.35009750"
+ },
+ {
+ "id": 109,
+ "name": "Mฤกarr",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "31",
+ "type": null,
+ "latitude": "35.91893270",
+ "longitude": "14.36173430"
+ },
+ {
+ "id": 140,
+ "name": "Mosta",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "32",
+ "type": null,
+ "latitude": "35.91415040",
+ "longitude": "14.42284270"
+ },
+ {
+ "id": 74,
+ "name": "Mqabba",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "33",
+ "type": null,
+ "latitude": "35.84441430",
+ "longitude": "14.46941860"
+ },
+ {
+ "id": 96,
+ "name": "Msida",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "34",
+ "type": null,
+ "latitude": "35.89563880",
+ "longitude": "14.48688830"
+ },
+ {
+ "id": 131,
+ "name": "Mtarfa",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "35",
+ "type": null,
+ "latitude": "35.88951250",
+ "longitude": "14.39519530"
+ },
+ {
+ "id": 132,
+ "name": "Munxar",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "36",
+ "type": null,
+ "latitude": "36.02880580",
+ "longitude": "14.22506050"
+ },
+ {
+ "id": 133,
+ "name": "Nadur",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "37",
+ "type": null,
+ "latitude": "36.04470190",
+ "longitude": "14.29192730"
+ },
+ {
+ "id": 112,
+ "name": "Naxxar",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "38",
+ "type": null,
+ "latitude": "35.93175180",
+ "longitude": "14.43157460"
+ },
+ {
+ "id": 115,
+ "name": "Paola",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "39",
+ "type": null,
+ "latitude": "38.57223530",
+ "longitude": "-94.87912940"
+ },
+ {
+ "id": 125,
+ "name": "Pembroke",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "40",
+ "type": null,
+ "latitude": "34.68016260",
+ "longitude": "-79.19503730"
+ },
+ {
+ "id": 127,
+ "name": "Pietร ",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "41",
+ "type": null,
+ "latitude": "42.21862000",
+ "longitude": "-83.73464700"
+ },
+ {
+ "id": 79,
+ "name": "Qala",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "42",
+ "type": null,
+ "latitude": "36.03886280",
+ "longitude": "14.31810100"
+ },
+ {
+ "id": 119,
+ "name": "Qormi",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "43",
+ "type": null,
+ "latitude": "35.87643880",
+ "longitude": "14.46941860"
+ },
+ {
+ "id": 111,
+ "name": "Qrendi",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "44",
+ "type": null,
+ "latitude": "35.83284880",
+ "longitude": "14.45486210"
+ },
+ {
+ "id": 83,
+ "name": "Rabat",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "46",
+ "type": null,
+ "latitude": "33.97159040",
+ "longitude": "-6.84981290"
+ },
+ {
+ "id": 87,
+ "name": "Saint Lawrence",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "50",
+ "type": null,
+ "latitude": "38.95780560",
+ "longitude": "-95.25656890"
+ },
+ {
+ "id": 75,
+ "name": "San ฤ wann",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "49",
+ "type": null,
+ "latitude": "35.90773650",
+ "longitude": "14.47524160"
+ },
+ {
+ "id": 116,
+ "name": "Sannat",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "52",
+ "type": null,
+ "latitude": "36.01926430",
+ "longitude": "14.25994370"
+ },
+ {
+ "id": 94,
+ "name": "Santa Luฤija",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "53",
+ "type": null,
+ "latitude": "35.85614200",
+ "longitude": "14.50436000"
+ },
+ {
+ "id": 90,
+ "name": "Santa Venera",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "54",
+ "type": null,
+ "latitude": "35.89022010",
+ "longitude": "14.47669740"
+ },
+ {
+ "id": 136,
+ "name": "Senglea",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "20",
+ "type": null,
+ "latitude": "35.88730410",
+ "longitude": "14.51673710"
+ },
+ {
+ "id": 98,
+ "name": "Siฤกฤกiewi",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "55",
+ "type": null,
+ "latitude": "35.84637420",
+ "longitude": "14.43157460"
+ },
+ {
+ "id": 104,
+ "name": "Sliema",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "56",
+ "type": null,
+ "latitude": "35.91100810",
+ "longitude": "14.50290400"
+ },
+ {
+ "id": 100,
+ "name": "St. Julian's",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "48",
+ "type": null,
+ "latitude": "42.21225130",
+ "longitude": "-85.89171270"
+ },
+ {
+ "id": 139,
+ "name": "St. Paul's Bay",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "51",
+ "type": null,
+ "latitude": "35.93601700",
+ "longitude": "14.39665030"
+ },
+ {
+ "id": 86,
+ "name": "Swieqi",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "57",
+ "type": null,
+ "latitude": "35.91911820",
+ "longitude": "14.46941860"
+ },
+ {
+ "id": 122,
+ "name": "Ta' Xbiex",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "58",
+ "type": null,
+ "latitude": "35.89914480",
+ "longitude": "14.49635190"
+ },
+ {
+ "id": 103,
+ "name": "Tarxien",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "59",
+ "type": null,
+ "latitude": "35.86725520",
+ "longitude": "14.51164050"
+ },
+ {
+ "id": 95,
+ "name": "Valletta",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "60",
+ "type": null,
+ "latitude": "35.89890850",
+ "longitude": "14.51455280"
+ },
+ {
+ "id": 101,
+ "name": "Victoria",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "45",
+ "type": null,
+ "latitude": "28.80526740",
+ "longitude": "-97.00359820"
+ },
+ {
+ "id": 114,
+ "name": "Xagฤงra",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "61",
+ "type": null,
+ "latitude": "36.05084500",
+ "longitude": "14.26748200"
+ },
+ {
+ "id": 121,
+ "name": "Xewkija",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "62",
+ "type": null,
+ "latitude": "36.02992360",
+ "longitude": "14.25994370"
+ },
+ {
+ "id": 81,
+ "name": "Xgฤงajra",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "63",
+ "type": null,
+ "latitude": "35.88682820",
+ "longitude": "14.54723910"
+ },
+ {
+ "id": 123,
+ "name": "ลปabbar",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "64",
+ "type": null,
+ "latitude": "35.87247150",
+ "longitude": "14.54513540"
+ },
+ {
+ "id": 85,
+ "name": "ลปebbuฤก Gozo",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "65",
+ "type": null,
+ "latitude": "36.07164030",
+ "longitude": "14.24540800"
+ },
+ {
+ "id": 80,
+ "name": "ลปebbuฤก Malta",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "66",
+ "type": null,
+ "latitude": "35.87646480",
+ "longitude": "14.43908400"
+ },
+ {
+ "id": 135,
+ "name": "ลปejtun",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "67",
+ "type": null,
+ "latitude": "35.85487140",
+ "longitude": "14.53639690"
+ },
+ {
+ "id": 76,
+ "name": "ลปurrieq",
+ "country_id": 135,
+ "country_code": "MT",
+ "country_name": "Malta",
+ "state_code": "68",
+ "type": null,
+ "latitude": "35.82163060",
+ "longitude": "14.48106480"
+ },
+ {
+ "id": 2574,
+ "name": "Ralik Chain",
+ "country_id": 137,
+ "country_code": "MH",
+ "country_name": "Marshall Islands",
+ "state_code": "L",
+ "type": null,
+ "latitude": "8.13614600",
+ "longitude": "164.88679560"
+ },
+ {
+ "id": 2573,
+ "name": "Ratak Chain",
+ "country_id": 137,
+ "country_code": "MH",
+ "country_name": "Marshall Islands",
+ "state_code": "T",
+ "type": null,
+ "latitude": "10.27632760",
+ "longitude": "170.55009370"
+ },
+ {
+ "id": 3344,
+ "name": "Adrar",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "07",
+ "type": "region",
+ "latitude": "19.86521760",
+ "longitude": "-12.80547530"
+ },
+ {
+ "id": 3349,
+ "name": "Assaba",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "03",
+ "type": "region",
+ "latitude": "16.77595580",
+ "longitude": "-11.52480550"
+ },
+ {
+ "id": 3339,
+ "name": "Brakna",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "05",
+ "type": "region",
+ "latitude": "17.23175610",
+ "longitude": "-13.17403480"
+ },
+ {
+ "id": 3346,
+ "name": "Dakhlet Nouadhibou",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "08",
+ "type": "region",
+ "latitude": "20.59855880",
+ "longitude": "-16.25221430"
+ },
+ {
+ "id": 3341,
+ "name": "Gorgol",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "04",
+ "type": "region",
+ "latitude": "15.97173570",
+ "longitude": "-12.62162110"
+ },
+ {
+ "id": 3350,
+ "name": "Guidimaka",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "10",
+ "type": "region",
+ "latitude": "15.25573310",
+ "longitude": "-12.25479190"
+ },
+ {
+ "id": 3338,
+ "name": "Hodh Ech Chargui",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "01",
+ "type": "region",
+ "latitude": "18.67370260",
+ "longitude": "-7.09287700"
+ },
+ {
+ "id": 3351,
+ "name": "Hodh El Gharbi",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "02",
+ "type": "region",
+ "latitude": "16.69121490",
+ "longitude": "-9.54509740"
+ },
+ {
+ "id": 3342,
+ "name": "Inchiri",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "12",
+ "type": "region",
+ "latitude": "20.02805610",
+ "longitude": "-15.40680790"
+ },
+ {
+ "id": 3343,
+ "name": "Nouakchott-Nord",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "14",
+ "type": "region",
+ "latitude": "18.11302050",
+ "longitude": "-15.89949560"
+ },
+ {
+ "id": 3352,
+ "name": "Nouakchott-Ouest",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "13",
+ "type": "region",
+ "latitude": "18.15113570",
+ "longitude": "-15.99349100"
+ },
+ {
+ "id": 3347,
+ "name": "Nouakchott-Sud",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "15",
+ "type": "region",
+ "latitude": "17.97092880",
+ "longitude": "-15.94648740"
+ },
+ {
+ "id": 3345,
+ "name": "Tagant",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "09",
+ "type": "region",
+ "latitude": "18.54675270",
+ "longitude": "-9.90181310"
+ },
+ {
+ "id": 3340,
+ "name": "Tiris Zemmour",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "11",
+ "type": "region",
+ "latitude": "24.57737640",
+ "longitude": "-9.90181310"
+ },
+ {
+ "id": 3348,
+ "name": "Trarza",
+ "country_id": 139,
+ "country_code": "MR",
+ "country_name": "Mauritania",
+ "state_code": "06",
+ "type": "region",
+ "latitude": "17.86649640",
+ "longitude": "-14.65878210"
+ },
+ {
+ "id": 3248,
+ "name": "Agalega Islands",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "AG",
+ "type": "dependency",
+ "latitude": "-10.40000000",
+ "longitude": "56.61666670"
+ },
+ {
+ "id": 3259,
+ "name": "Black River",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "BL",
+ "type": "district",
+ "latitude": "-20.37084920",
+ "longitude": "57.39486490"
+ },
+ {
+ "id": 3254,
+ "name": "Flacq",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "FL",
+ "type": "district",
+ "latitude": "-20.22578360",
+ "longitude": "57.71192740"
+ },
+ {
+ "id": 3264,
+ "name": "Grand Port",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "GP",
+ "type": "district",
+ "latitude": "-20.38515460",
+ "longitude": "57.66657420"
+ },
+ {
+ "id": 3253,
+ "name": "Moka",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "MO",
+ "type": "district",
+ "latitude": "-20.23997820",
+ "longitude": "57.57592600"
+ },
+ {
+ "id": 3250,
+ "name": "Pamplemousses",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "PA",
+ "type": "district",
+ "latitude": "-20.11360080",
+ "longitude": "57.57592600"
+ },
+ {
+ "id": 3263,
+ "name": "Plaines Wilhems",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "PW",
+ "type": "district",
+ "latitude": "-20.30548720",
+ "longitude": "57.48535610"
+ },
+ {
+ "id": 3260,
+ "name": "Port Louis",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "PL",
+ "type": "district",
+ "latitude": "-20.16089120",
+ "longitude": "57.50122220"
+ },
+ {
+ "id": 3261,
+ "name": "Riviรจre du Rempart",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "RR",
+ "type": "district",
+ "latitude": "-20.05609830",
+ "longitude": "57.65523890"
+ },
+ {
+ "id": 3249,
+ "name": "Rodrigues Island",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "RO",
+ "type": "dependency",
+ "latitude": "-19.72453850",
+ "longitude": "63.42721850"
+ },
+ {
+ "id": 3251,
+ "name": "Saint Brandon Islands",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "CC",
+ "type": "dependency",
+ "latitude": "-16.58333300",
+ "longitude": "59.61666700"
+ },
+ {
+ "id": 3257,
+ "name": "Savanne",
+ "country_id": 140,
+ "country_code": "MU",
+ "country_name": "Mauritius",
+ "state_code": "SA",
+ "type": "district",
+ "latitude": "-20.47395300",
+ "longitude": "57.48535610"
+ },
+ {
+ "id": 3456,
+ "name": "Aguascalientes",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "AGU",
+ "type": "state",
+ "latitude": "21.88525620",
+ "longitude": "-102.29156770"
+ },
+ {
+ "id": 3457,
+ "name": "Baja California",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "BCN",
+ "type": "state",
+ "latitude": "30.84063380",
+ "longitude": "-115.28375850"
+ },
+ {
+ "id": 3460,
+ "name": "Baja California Sur",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "BCS",
+ "type": "state",
+ "latitude": "26.04444460",
+ "longitude": "-111.66607250"
+ },
+ {
+ "id": 3475,
+ "name": "Campeche",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "CAM",
+ "type": "state",
+ "latitude": "19.83012510",
+ "longitude": "-90.53490870"
+ },
+ {
+ "id": 3451,
+ "name": "Chiapas",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "CHP",
+ "type": "state",
+ "latitude": "16.75693180",
+ "longitude": "-93.12923530"
+ },
+ {
+ "id": 3447,
+ "name": "Chihuahua",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "CHH",
+ "type": "state",
+ "latitude": "28.63299570",
+ "longitude": "-106.06910040"
+ },
+ {
+ "id": 3473,
+ "name": "Ciudad de Mรฉxico",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "CDMX",
+ "type": "federal district",
+ "latitude": "19.43260770",
+ "longitude": "-99.13320800"
+ },
+ {
+ "id": 3471,
+ "name": "Coahuila de Zaragoza",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "COA",
+ "type": "state",
+ "latitude": "27.05867600",
+ "longitude": "-101.70682940"
+ },
+ {
+ "id": 3472,
+ "name": "Colima",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "COL",
+ "type": "state",
+ "latitude": "19.24523420",
+ "longitude": "-103.72408680"
+ },
+ {
+ "id": 3453,
+ "name": "Durango",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "DUR",
+ "type": "state",
+ "latitude": "37.27528000",
+ "longitude": "-107.88006670"
+ },
+ {
+ "id": 3450,
+ "name": "Estado de Mรฉxico",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "MEX",
+ "type": "state",
+ "latitude": "23.63450100",
+ "longitude": "-102.55278400"
+ },
+ {
+ "id": 3469,
+ "name": "Guanajuato",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "GUA",
+ "type": "state",
+ "latitude": "21.01901450",
+ "longitude": "-101.25735860"
+ },
+ {
+ "id": 3459,
+ "name": "Guerrero",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "GRO",
+ "type": "state",
+ "latitude": "17.43919260",
+ "longitude": "-99.54509740"
+ },
+ {
+ "id": 3470,
+ "name": "Hidalgo",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "HID",
+ "type": "state",
+ "latitude": "26.10035470",
+ "longitude": "-98.26306840"
+ },
+ {
+ "id": 4857,
+ "name": "Jalisco",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "JAL",
+ "type": "state",
+ "latitude": "20.65953820",
+ "longitude": "-103.34943760"
+ },
+ {
+ "id": 3474,
+ "name": "Michoacรกn de Ocampo",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "MIC",
+ "type": "state",
+ "latitude": "19.56651920",
+ "longitude": "-101.70682940"
+ },
+ {
+ "id": 3465,
+ "name": "Morelos",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "MOR",
+ "type": "state",
+ "latitude": "18.68130490",
+ "longitude": "-99.10134980"
+ },
+ {
+ "id": 3477,
+ "name": "Nayarit",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "NAY",
+ "type": "state",
+ "latitude": "21.75138440",
+ "longitude": "-104.84546190"
+ },
+ {
+ "id": 3452,
+ "name": "Nuevo Leรณn",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "NLE",
+ "type": "state",
+ "latitude": "25.59217200",
+ "longitude": "-99.99619470"
+ },
+ {
+ "id": 3448,
+ "name": "Oaxaca",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "OAX",
+ "type": "state",
+ "latitude": "17.07318420",
+ "longitude": "-96.72658890"
+ },
+ {
+ "id": 3476,
+ "name": "Puebla",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "PUE",
+ "type": "state",
+ "latitude": "19.04143980",
+ "longitude": "-98.20627270"
+ },
+ {
+ "id": 3455,
+ "name": "Querรฉtaro",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "QUE",
+ "type": "state",
+ "latitude": "20.58879320",
+ "longitude": "-100.38988810"
+ },
+ {
+ "id": 3467,
+ "name": "Quintana Roo",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "ROO",
+ "type": "state",
+ "latitude": "19.18173930",
+ "longitude": "-88.47913760"
+ },
+ {
+ "id": 3461,
+ "name": "San Luis Potosรญ",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "SLP",
+ "type": "state",
+ "latitude": "22.15646990",
+ "longitude": "-100.98554090"
+ },
+ {
+ "id": 3449,
+ "name": "Sinaloa",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "SIN",
+ "type": "state",
+ "latitude": "25.17210910",
+ "longitude": "-107.47951730"
+ },
+ {
+ "id": 3468,
+ "name": "Sonora",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "SON",
+ "type": "state",
+ "latitude": "37.98294960",
+ "longitude": "-120.38217240"
+ },
+ {
+ "id": 3454,
+ "name": "Tabasco",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "TAB",
+ "type": "state",
+ "latitude": "17.84091730",
+ "longitude": "-92.61892730"
+ },
+ {
+ "id": 3463,
+ "name": "Tamaulipas",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "TAM",
+ "type": "state",
+ "latitude": "24.26694000",
+ "longitude": "-98.83627550"
+ },
+ {
+ "id": 3458,
+ "name": "Tlaxcala",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "TLA",
+ "type": "state",
+ "latitude": "19.31815400",
+ "longitude": "-98.23749540"
+ },
+ {
+ "id": 3464,
+ "name": "Veracruz de Ignacio de la Llave",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "VER",
+ "type": "state",
+ "latitude": "19.17377300",
+ "longitude": "-96.13422410"
+ },
+ {
+ "id": 3466,
+ "name": "Yucatรกn",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "YUC",
+ "type": "state",
+ "latitude": "20.70987860",
+ "longitude": "-89.09433770"
+ },
+ {
+ "id": 3462,
+ "name": "Zacatecas",
+ "country_id": 142,
+ "country_code": "MX",
+ "country_name": "Mexico",
+ "state_code": "ZAC",
+ "type": "state",
+ "latitude": "22.77085550",
+ "longitude": "-102.58324260"
+ },
+ {
+ "id": 2580,
+ "name": "Chuuk State",
+ "country_id": 143,
+ "country_code": "FM",
+ "country_name": "Micronesia",
+ "state_code": "TRK",
+ "type": null,
+ "latitude": "7.13867590",
+ "longitude": "151.55930650"
+ },
+ {
+ "id": 2583,
+ "name": "Kosrae State",
+ "country_id": 143,
+ "country_code": "FM",
+ "country_name": "Micronesia",
+ "state_code": "KSA",
+ "type": null,
+ "latitude": "5.30956180",
+ "longitude": "162.98148770"
+ },
+ {
+ "id": 2581,
+ "name": "Pohnpei State",
+ "country_id": 143,
+ "country_code": "FM",
+ "country_name": "Micronesia",
+ "state_code": "PNI",
+ "type": null,
+ "latitude": "6.85412540",
+ "longitude": "158.26238220"
+ },
+ {
+ "id": 2582,
+ "name": "Yap State",
+ "country_id": 143,
+ "country_code": "FM",
+ "country_name": "Micronesia",
+ "state_code": "YAP",
+ "type": null,
+ "latitude": "8.67164900",
+ "longitude": "142.84393350"
+ },
+ {
+ "id": 4368,
+ "name": "Anenii Noi District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "AN",
+ "type": null,
+ "latitude": "46.87956630",
+ "longitude": "29.23121750"
+ },
+ {
+ "id": 4393,
+ "name": "Bฤlศi Municipality",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "47.75399470",
+ "longitude": "27.91841480"
+ },
+ {
+ "id": 4379,
+ "name": "Basarabeasca District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "BS",
+ "type": null,
+ "latitude": "46.42370600",
+ "longitude": "28.89354920"
+ },
+ {
+ "id": 4362,
+ "name": "Bender Municipality",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "BD",
+ "type": null,
+ "latitude": "46.82275510",
+ "longitude": "29.46201010"
+ },
+ {
+ "id": 4375,
+ "name": "Briceni District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "BR",
+ "type": null,
+ "latitude": "48.36320220",
+ "longitude": "27.07503980"
+ },
+ {
+ "id": 4391,
+ "name": "Cahul District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "CA",
+ "type": null,
+ "latitude": "45.89394040",
+ "longitude": "28.18902750"
+ },
+ {
+ "id": 4366,
+ "name": "Cฤlฤraศi District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "CL",
+ "type": null,
+ "latitude": "47.28694600",
+ "longitude": "28.27453100"
+ },
+ {
+ "id": 4380,
+ "name": "Cantemir District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "CT",
+ "type": null,
+ "latitude": "46.27717420",
+ "longitude": "28.20096530"
+ },
+ {
+ "id": 4365,
+ "name": "Cฤuศeni District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "CS",
+ "type": null,
+ "latitude": "46.65547150",
+ "longitude": "29.40912220"
+ },
+ {
+ "id": 4373,
+ "name": "Chiศinฤu Municipality",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "CU",
+ "type": null,
+ "latitude": "47.01045290",
+ "longitude": "28.86381020"
+ },
+ {
+ "id": 4360,
+ "name": "Cimiศlia District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "CM",
+ "type": null,
+ "latitude": "46.52508510",
+ "longitude": "28.77218350"
+ },
+ {
+ "id": 4390,
+ "name": "Criuleni District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "CR",
+ "type": null,
+ "latitude": "47.21361140",
+ "longitude": "29.15575190"
+ },
+ {
+ "id": 4384,
+ "name": "Donduศeni District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "DO",
+ "type": null,
+ "latitude": "48.23383050",
+ "longitude": "27.59980870"
+ },
+ {
+ "id": 4392,
+ "name": "Drochia District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "DR",
+ "type": null,
+ "latitude": "48.07977880",
+ "longitude": "27.86041140"
+ },
+ {
+ "id": 4383,
+ "name": "Dubฤsari District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "DU",
+ "type": null,
+ "latitude": "47.26439420",
+ "longitude": "29.15503480"
+ },
+ {
+ "id": 4387,
+ "name": "Edineศ District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "ED",
+ "type": null,
+ "latitude": "48.16789910",
+ "longitude": "27.29361430"
+ },
+ {
+ "id": 4381,
+ "name": "Fฤleศti District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "FA",
+ "type": null,
+ "latitude": "47.56477250",
+ "longitude": "27.72655930"
+ },
+ {
+ "id": 4370,
+ "name": "Floreศti District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "FL",
+ "type": null,
+ "latitude": "47.86678490",
+ "longitude": "28.33918640"
+ },
+ {
+ "id": 4385,
+ "name": "Gagauzia",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "GA",
+ "type": null,
+ "latitude": "46.09794350",
+ "longitude": "28.63846450"
+ },
+ {
+ "id": 4367,
+ "name": "Glodeni District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "GL",
+ "type": null,
+ "latitude": "47.77901560",
+ "longitude": "27.51680100"
+ },
+ {
+ "id": 4382,
+ "name": "Hรฎnceศti District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "HI",
+ "type": null,
+ "latitude": "46.82811470",
+ "longitude": "28.58508890"
+ },
+ {
+ "id": 4369,
+ "name": "Ialoveni District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "IA",
+ "type": null,
+ "latitude": "46.86308600",
+ "longitude": "28.82342180"
+ },
+ {
+ "id": 4363,
+ "name": "Nisporeni District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "NI",
+ "type": null,
+ "latitude": "47.07513490",
+ "longitude": "28.17681550"
+ },
+ {
+ "id": 4389,
+ "name": "Ocniศa District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "OC",
+ "type": null,
+ "latitude": "48.41104350",
+ "longitude": "27.47680920"
+ },
+ {
+ "id": 4361,
+ "name": "Orhei District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "OR",
+ "type": null,
+ "latitude": "47.38604000",
+ "longitude": "28.83030820"
+ },
+ {
+ "id": 4394,
+ "name": "Rezina District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "RE",
+ "type": null,
+ "latitude": "47.71804470",
+ "longitude": "28.88710240"
+ },
+ {
+ "id": 4376,
+ "name": "Rรฎศcani District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "RI",
+ "type": null,
+ "latitude": "47.90701530",
+ "longitude": "27.53749960"
+ },
+ {
+ "id": 4364,
+ "name": "Sรฎngerei District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "SI",
+ "type": null,
+ "latitude": "47.63891340",
+ "longitude": "28.13718160"
+ },
+ {
+ "id": 4388,
+ "name": "ศoldฤneศti District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "SD",
+ "type": null,
+ "latitude": "47.81473890",
+ "longitude": "28.78895860"
+ },
+ {
+ "id": 4374,
+ "name": "Soroca District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "SO",
+ "type": null,
+ "latitude": "48.15497430",
+ "longitude": "28.28707830"
+ },
+ {
+ "id": 4378,
+ "name": "ศtefan Vodฤ District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "SV",
+ "type": null,
+ "latitude": "46.55404880",
+ "longitude": "29.70224200"
+ },
+ {
+ "id": 4377,
+ "name": "Strฤศeni District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "ST",
+ "type": null,
+ "latitude": "47.14502670",
+ "longitude": "28.61367360"
+ },
+ {
+ "id": 4372,
+ "name": "Taraclia District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "45.89865100",
+ "longitude": "28.66716440"
+ },
+ {
+ "id": 4371,
+ "name": "Teleneศti District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "TE",
+ "type": null,
+ "latitude": "47.49839620",
+ "longitude": "28.36760190"
+ },
+ {
+ "id": 4395,
+ "name": "Transnistria autonomous territorial unit",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "SN",
+ "type": null,
+ "latitude": "47.21529720",
+ "longitude": "29.46380540"
+ },
+ {
+ "id": 4386,
+ "name": "Ungheni District",
+ "country_id": 144,
+ "country_code": "MD",
+ "country_name": "Moldova",
+ "state_code": "UN",
+ "type": null,
+ "latitude": "47.23057670",
+ "longitude": "27.78926610"
+ },
+ {
+ "id": 4917,
+ "name": "La Colle",
+ "country_id": 145,
+ "country_code": "MC",
+ "country_name": "Monaco",
+ "state_code": "CL",
+ "type": null,
+ "latitude": "43.73274650",
+ "longitude": "7.41372760"
+ },
+ {
+ "id": 4918,
+ "name": "La Condamine",
+ "country_id": 145,
+ "country_code": "MC",
+ "country_name": "Monaco",
+ "state_code": "CO",
+ "type": null,
+ "latitude": "43.73506650",
+ "longitude": "7.41990600"
+ },
+ {
+ "id": 4919,
+ "name": "Moneghetti",
+ "country_id": 145,
+ "country_code": "MC",
+ "country_name": "Monaco",
+ "state_code": "MG",
+ "type": null,
+ "latitude": "43.73649270",
+ "longitude": "7.41533830"
+ },
+ {
+ "id": 1973,
+ "name": "Arkhangai Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "073",
+ "type": null,
+ "latitude": "47.89711010",
+ "longitude": "100.72401650"
+ },
+ {
+ "id": 1969,
+ "name": "Bayan-รlgii Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "071",
+ "type": null,
+ "latitude": "48.39832540",
+ "longitude": "89.66259150"
+ },
+ {
+ "id": 1976,
+ "name": "Bayankhongor Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "069",
+ "type": null,
+ "latitude": "45.15267070",
+ "longitude": "100.10736670"
+ },
+ {
+ "id": 1961,
+ "name": "Bulgan Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "067",
+ "type": null,
+ "latitude": "48.96909130",
+ "longitude": "102.88317230"
+ },
+ {
+ "id": 1962,
+ "name": "Darkhan-Uul Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "037",
+ "type": null,
+ "latitude": "49.46484340",
+ "longitude": "105.97459190"
+ },
+ {
+ "id": 1963,
+ "name": "Dornod Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "061",
+ "type": null,
+ "latitude": "47.46581540",
+ "longitude": "115.39271200"
+ },
+ {
+ "id": 1981,
+ "name": "Dornogovi Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "063",
+ "type": null,
+ "latitude": "43.96538890",
+ "longitude": "109.17734590"
+ },
+ {
+ "id": 1970,
+ "name": "Dundgovi Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "059",
+ "type": null,
+ "latitude": "45.58227860",
+ "longitude": "106.76442090"
+ },
+ {
+ "id": 1972,
+ "name": "Govi-Altai Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "065",
+ "type": null,
+ "latitude": "45.45112270",
+ "longitude": "95.85057660"
+ },
+ {
+ "id": 1978,
+ "name": "Govisรผmber Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "064",
+ "type": null,
+ "latitude": "46.47627540",
+ "longitude": "108.55706270"
+ },
+ {
+ "id": 1974,
+ "name": "Khentii Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "039",
+ "type": null,
+ "latitude": "47.60812090",
+ "longitude": "109.93728560"
+ },
+ {
+ "id": 1964,
+ "name": "Khovd Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "043",
+ "type": null,
+ "latitude": "47.11296540",
+ "longitude": "92.31107520"
+ },
+ {
+ "id": 1975,
+ "name": "Khรถvsgรถl Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "041",
+ "type": null,
+ "latitude": "50.22044840",
+ "longitude": "100.32137680"
+ },
+ {
+ "id": 1967,
+ "name": "รmnรถgovi Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "053",
+ "type": null,
+ "latitude": "43.50002400",
+ "longitude": "104.28611160"
+ },
+ {
+ "id": 1966,
+ "name": "Orkhon Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "035",
+ "type": null,
+ "latitude": "49.00470500",
+ "longitude": "104.30165270"
+ },
+ {
+ "id": 1965,
+ "name": "รvรถrkhangai Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "055",
+ "type": null,
+ "latitude": "45.76243920",
+ "longitude": "103.09170320"
+ },
+ {
+ "id": 1980,
+ "name": "Selenge Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "049",
+ "type": null,
+ "latitude": "50.00592730",
+ "longitude": "106.44341080"
+ },
+ {
+ "id": 1977,
+ "name": "Sรผkhbaatar Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "051",
+ "type": null,
+ "latitude": "46.56531630",
+ "longitude": "113.53808360"
+ },
+ {
+ "id": 1968,
+ "name": "Tรถv Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "047",
+ "type": null,
+ "latitude": "47.21240560",
+ "longitude": "106.41541000"
+ },
+ {
+ "id": 1971,
+ "name": "Uvs Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "046",
+ "type": null,
+ "latitude": "49.64497070",
+ "longitude": "93.27365760"
+ },
+ {
+ "id": 1979,
+ "name": "Zavkhan Province",
+ "country_id": 146,
+ "country_code": "MN",
+ "country_name": "Mongolia",
+ "state_code": "057",
+ "type": null,
+ "latitude": "48.23881470",
+ "longitude": "96.07030190"
+ },
+ {
+ "id": 23,
+ "name": "Andrijevica Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "01",
+ "type": null,
+ "latitude": "42.73624770",
+ "longitude": "19.78595560"
+ },
+ {
+ "id": 13,
+ "name": "Bar Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "02",
+ "type": null,
+ "latitude": "42.12781190",
+ "longitude": "19.14043800"
+ },
+ {
+ "id": 21,
+ "name": "Berane Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "03",
+ "type": null,
+ "latitude": "42.82572890",
+ "longitude": "19.90205090"
+ },
+ {
+ "id": 25,
+ "name": "Bijelo Polje Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "04",
+ "type": null,
+ "latitude": "43.08465260",
+ "longitude": "19.71154720"
+ },
+ {
+ "id": 30,
+ "name": "Budva Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "05",
+ "type": null,
+ "latitude": "42.31407200",
+ "longitude": "18.83138320"
+ },
+ {
+ "id": 14,
+ "name": "Danilovgrad Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "07",
+ "type": null,
+ "latitude": "42.58357000",
+ "longitude": "19.14043800"
+ },
+ {
+ "id": 24,
+ "name": "Gusinje Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "22",
+ "type": null,
+ "latitude": "42.55634550",
+ "longitude": "19.83060510"
+ },
+ {
+ "id": 31,
+ "name": "Kolaลกin Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "09",
+ "type": null,
+ "latitude": "42.76019160",
+ "longitude": "19.42591140"
+ },
+ {
+ "id": 26,
+ "name": "Kotor Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "10",
+ "type": null,
+ "latitude": "42.57402610",
+ "longitude": "18.64131450"
+ },
+ {
+ "id": 22,
+ "name": "Mojkovac Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "11",
+ "type": null,
+ "latitude": "42.96880180",
+ "longitude": "19.52110630"
+ },
+ {
+ "id": 17,
+ "name": "Nikลกiฤ Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "12",
+ "type": null,
+ "latitude": "42.79971840",
+ "longitude": "18.76009630"
+ },
+ {
+ "id": 28,
+ "name": "Old Royal Capital Cetinje",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "06",
+ "type": null,
+ "latitude": "42.39309590",
+ "longitude": "18.91159640"
+ },
+ {
+ "id": 12,
+ "name": "Petnjica Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "23",
+ "type": null,
+ "latitude": "42.93534800",
+ "longitude": "20.02114490"
+ },
+ {
+ "id": 19,
+ "name": "Plav Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "13",
+ "type": null,
+ "latitude": "42.60013370",
+ "longitude": "19.94075410"
+ },
+ {
+ "id": 20,
+ "name": "Pljevlja Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "14",
+ "type": null,
+ "latitude": "43.27233830",
+ "longitude": "19.28315310"
+ },
+ {
+ "id": 16,
+ "name": "Pluลพine Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "15",
+ "type": null,
+ "latitude": "43.15933840",
+ "longitude": "18.85514840"
+ },
+ {
+ "id": 27,
+ "name": "Podgorica Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "16",
+ "type": null,
+ "latitude": "42.36938340",
+ "longitude": "19.28315310"
+ },
+ {
+ "id": 15,
+ "name": "Roลพaje Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "17",
+ "type": null,
+ "latitude": "42.84083890",
+ "longitude": "20.16706280"
+ },
+ {
+ "id": 18,
+ "name": "ล avnik Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "18",
+ "type": null,
+ "latitude": "42.96037560",
+ "longitude": "19.14043800"
+ },
+ {
+ "id": 29,
+ "name": "Tivat Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "19",
+ "type": null,
+ "latitude": "42.42348000",
+ "longitude": "18.71851840"
+ },
+ {
+ "id": 33,
+ "name": "Ulcinj Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "20",
+ "type": null,
+ "latitude": "41.96527950",
+ "longitude": "19.30694320"
+ },
+ {
+ "id": 32,
+ "name": "ลฝabljak Municipality",
+ "country_id": 147,
+ "country_code": "ME",
+ "country_name": "Montenegro",
+ "state_code": "21",
+ "type": null,
+ "latitude": "43.15551520",
+ "longitude": "19.12260180"
+ },
+ {
+ "id": 4928,
+ "name": "Agadir-Ida-Ou-Tanane",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "AGD",
+ "type": "prefecture",
+ "latitude": "30.64620910",
+ "longitude": "-9.83390610"
+ },
+ {
+ "id": 3320,
+ "name": "Al Haouz",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "HAO",
+ "type": "province",
+ "latitude": "31.29567290",
+ "longitude": "-7.87216000"
+ },
+ {
+ "id": 3267,
+ "name": "Al Hoceรฏma",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "HOC",
+ "type": "province",
+ "latitude": "35.24455890",
+ "longitude": "-3.93174680"
+ },
+ {
+ "id": 3266,
+ "name": "Aousserd (EH)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "AOU",
+ "type": "province",
+ "latitude": "22.55215380",
+ "longitude": "-14.32973530"
+ },
+ {
+ "id": 3297,
+ "name": "Assa-Zag (EH-partial)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "ASZ",
+ "type": "province",
+ "latitude": "28.14023950",
+ "longitude": "-9.72326730"
+ },
+ {
+ "id": 3321,
+ "name": "Azilal",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "AZI",
+ "type": "province",
+ "latitude": "32.00426200",
+ "longitude": "-6.57833870"
+ },
+ {
+ "id": 3272,
+ "name": "Bรฉni Mellal",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "BEM",
+ "type": "province",
+ "latitude": "32.34244300",
+ "longitude": "-6.37579900"
+ },
+ {
+ "id": 3278,
+ "name": "Bรฉni Mellal-Khรฉnifra",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "05",
+ "type": "region",
+ "latitude": "32.57191840",
+ "longitude": "-6.06791940"
+ },
+ {
+ "id": 3304,
+ "name": "Benslimane",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "BES",
+ "type": "province",
+ "latitude": "33.61896980",
+ "longitude": "-7.13055360"
+ },
+ {
+ "id": 3285,
+ "name": "Berkane",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "BER",
+ "type": "province",
+ "latitude": "34.88408760",
+ "longitude": "-2.34188700"
+ },
+ {
+ "id": 4929,
+ "name": "Berrechid",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "BRR",
+ "type": "province",
+ "latitude": "33.26025230",
+ "longitude": "-7.59848370"
+ },
+ {
+ "id": 3275,
+ "name": "Boujdour (EH)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "BOD",
+ "type": "province",
+ "latitude": "26.12524930",
+ "longitude": "-14.48473470"
+ },
+ {
+ "id": 3270,
+ "name": "Boulemane",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "BOM",
+ "type": "province",
+ "latitude": "33.36251590",
+ "longitude": "-4.73033970"
+ },
+ {
+ "id": 4930,
+ "name": "Casablanca",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "CAS",
+ "type": "prefecture",
+ "latitude": "33.57226780",
+ "longitude": "-7.65703260"
+ },
+ {
+ "id": 3303,
+ "name": "Casablanca-Settat",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "06",
+ "type": "region",
+ "latitude": "33.21608720",
+ "longitude": "-7.43813550"
+ },
+ {
+ "id": 3310,
+ "name": "Chefchaouen",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "CHE",
+ "type": "province",
+ "latitude": "35.01817200",
+ "longitude": "-5.14320680"
+ },
+ {
+ "id": 3274,
+ "name": "Chichaoua",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "CHI",
+ "type": "province",
+ "latitude": "31.53835810",
+ "longitude": "-8.76463880"
+ },
+ {
+ "id": 3302,
+ "name": "Chtouka-Ait Baha",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "CHT",
+ "type": "province",
+ "latitude": "30.10724220",
+ "longitude": "-9.27855830"
+ },
+ {
+ "id": 3306,
+ "name": "Dakhla-Oued Ed-Dahab (EH)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "12",
+ "type": "region",
+ "latitude": "22.73378920",
+ "longitude": "-14.28611160"
+ },
+ {
+ "id": 3290,
+ "name": "Drรขa-Tafilalet",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "08",
+ "type": "region",
+ "latitude": "31.14995380",
+ "longitude": "-5.39395510"
+ },
+ {
+ "id": 4931,
+ "name": "Driouch",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "DRI",
+ "type": "province",
+ "latitude": "34.97603200",
+ "longitude": "-3.39644930"
+ },
+ {
+ "id": 3291,
+ "name": "El Hajeb",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "HAJ",
+ "type": "province",
+ "latitude": "33.68573500",
+ "longitude": "-5.36778440"
+ },
+ {
+ "id": 3280,
+ "name": "El Jadida",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "JDI",
+ "type": "province",
+ "latitude": "33.23163260",
+ "longitude": "-8.50071160"
+ },
+ {
+ "id": 3309,
+ "name": "El Kelรขa des Sraghna",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "KES",
+ "type": "province",
+ "latitude": "32.05227670",
+ "longitude": "-7.35165580"
+ },
+ {
+ "id": 3299,
+ "name": "Errachidia",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "ERR",
+ "type": "province",
+ "latitude": "31.90512750",
+ "longitude": "-4.72775280"
+ },
+ {
+ "id": 3292,
+ "name": "Es-Semara (EH-partial)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "ESM",
+ "type": "province",
+ "latitude": "26.74185600",
+ "longitude": "-11.67836710"
+ },
+ {
+ "id": 3316,
+ "name": "Essaouira",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "ESI",
+ "type": "province",
+ "latitude": "31.50849260",
+ "longitude": "-9.75950410"
+ },
+ {
+ "id": 3300,
+ "name": "Fahs-Anjra",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "FAH",
+ "type": "province",
+ "latitude": "35.76019920",
+ "longitude": "-5.66683060"
+ },
+ {
+ "id": 4932,
+ "name": "Fรจs",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "FES",
+ "type": "prefecture",
+ "latitude": "34.02395790",
+ "longitude": "-5.03675990"
+ },
+ {
+ "id": 3313,
+ "name": "Fรจs-Meknรจs",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "03",
+ "type": "region",
+ "latitude": "34.06252900",
+ "longitude": "-4.72775280"
+ },
+ {
+ "id": 3301,
+ "name": "Figuig",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "FIG",
+ "type": "province",
+ "latitude": "32.10926130",
+ "longitude": "-1.22980600"
+ },
+ {
+ "id": 4933,
+ "name": "Fquih Ben Salah",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "FQH",
+ "type": "province",
+ "latitude": "32.50016800",
+ "longitude": "-6.71007170"
+ },
+ {
+ "id": 3265,
+ "name": "Guelmim",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "GUE",
+ "type": "province",
+ "latitude": "28.98836590",
+ "longitude": "-10.05274980"
+ },
+ {
+ "id": 3305,
+ "name": "Guelmim-Oued Noun (EH-partial)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "10",
+ "type": "region",
+ "latitude": "28.48442810",
+ "longitude": "-10.08072980"
+ },
+ {
+ "id": 4934,
+ "name": "Guercif",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "GUF",
+ "type": "province",
+ "latitude": "34.23450360",
+ "longitude": "-3.38130050"
+ },
+ {
+ "id": 3325,
+ "name": "Ifrane",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "IFR",
+ "type": "province",
+ "latitude": "33.52280620",
+ "longitude": "-5.11095520"
+ },
+ {
+ "id": 3294,
+ "name": "Inezgane-Ait Melloul",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "INE",
+ "type": "prefecture",
+ "latitude": "30.35090980",
+ "longitude": "-9.38951100"
+ },
+ {
+ "id": 3307,
+ "name": "Jerada",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "JRA",
+ "type": "province",
+ "latitude": "34.30617910",
+ "longitude": "-2.17941360"
+ },
+ {
+ "id": 3308,
+ "name": "Kรฉnitra",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "KEN",
+ "type": "province",
+ "latitude": "34.25405030",
+ "longitude": "-6.58901660"
+ },
+ {
+ "id": 3276,
+ "name": "Khรฉmisset",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "KHE",
+ "type": "province",
+ "latitude": "33.81537040",
+ "longitude": "-6.05733020"
+ },
+ {
+ "id": 3317,
+ "name": "Khรฉnifra",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "KHN",
+ "type": "province",
+ "latitude": "32.93404710",
+ "longitude": "-5.66157100"
+ },
+ {
+ "id": 3326,
+ "name": "Khouribga",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "KHO",
+ "type": "province",
+ "latitude": "32.88602300",
+ "longitude": "-6.92086550"
+ },
+ {
+ "id": 3271,
+ "name": "L'Oriental",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "02",
+ "type": "region",
+ "latitude": "37.06968300",
+ "longitude": "-94.51227700"
+ },
+ {
+ "id": 3293,
+ "name": "Laรขyoune (EH)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "LAA",
+ "type": "province",
+ "latitude": "27.15003840",
+ "longitude": "-13.19907580"
+ },
+ {
+ "id": 3298,
+ "name": "Laรขyoune-Sakia El Hamra (EH-partial)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "11",
+ "type": "region",
+ "latitude": "27.86831940",
+ "longitude": "-11.98046130"
+ },
+ {
+ "id": 3268,
+ "name": "Larache",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "LAR",
+ "type": "province",
+ "latitude": "35.17442710",
+ "longitude": "-6.14739640"
+ },
+ {
+ "id": 4936,
+ "name": "Mโdiq-Fnideq",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "MDF",
+ "type": "prefecture",
+ "latitude": "35.77330190",
+ "longitude": "-5.51433000"
+ },
+ {
+ "id": 4935,
+ "name": "Marrakech",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "MAR",
+ "type": "prefecture",
+ "latitude": "31.63460230",
+ "longitude": "-8.07789320"
+ },
+ {
+ "id": 3288,
+ "name": "Marrakesh-Safi",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "07",
+ "type": "region",
+ "latitude": "31.73308330",
+ "longitude": "-8.13385580"
+ },
+ {
+ "id": 3284,
+ "name": "Mรฉdiouna",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "MED",
+ "type": "province",
+ "latitude": "33.45409390",
+ "longitude": "-7.51660200"
+ },
+ {
+ "id": 4937,
+ "name": "Meknรจs",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "MEK",
+ "type": "prefecture",
+ "latitude": "33.88100000",
+ "longitude": "-5.57303970"
+ },
+ {
+ "id": 4938,
+ "name": "Midelt",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "MID",
+ "type": "province",
+ "latitude": "32.68550790",
+ "longitude": "-4.75017090"
+ },
+ {
+ "id": 4939,
+ "name": "Mohammadia",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "MOH",
+ "type": "prefecture",
+ "latitude": "33.68737490",
+ "longitude": "-7.42391420"
+ },
+ {
+ "id": 3315,
+ "name": "Moulay Yacoub",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "MOU",
+ "type": "province",
+ "latitude": "34.08744790",
+ "longitude": "-5.17840190"
+ },
+ {
+ "id": 3281,
+ "name": "Nador",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "NAD",
+ "type": "province",
+ "latitude": "34.91719260",
+ "longitude": "-2.85771050"
+ },
+ {
+ "id": 3287,
+ "name": "Nouaceur",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "NOU",
+ "type": "province",
+ "latitude": "33.36703930",
+ "longitude": "-7.57325370"
+ },
+ {
+ "id": 3269,
+ "name": "Ouarzazate",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "OUA",
+ "type": "province",
+ "latitude": "30.93354360",
+ "longitude": "-6.93701600"
+ },
+ {
+ "id": 3319,
+ "name": "Oued Ed-Dahab (EH)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "OUD",
+ "type": "province",
+ "latitude": "22.73378920",
+ "longitude": "-14.28611160"
+ },
+ {
+ "id": 4941,
+ "name": "Ouezzane",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "OUZ",
+ "type": "province",
+ "latitude": "34.80634500",
+ "longitude": "-5.59145050"
+ },
+ {
+ "id": 4940,
+ "name": "Oujda-Angad",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "OUJ",
+ "type": "prefecture",
+ "latitude": "34.68375040",
+ "longitude": "-2.29932390"
+ },
+ {
+ "id": 4942,
+ "name": "Rabat",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "RAB",
+ "type": "prefecture",
+ "latitude": "33.96919900",
+ "longitude": "-6.92730290"
+ },
+ {
+ "id": 4927,
+ "name": "Rabat-Salรฉ-Kรฉnitra",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "04",
+ "type": "region",
+ "latitude": "34.07686400",
+ "longitude": "-7.34544760"
+ },
+ {
+ "id": 4943,
+ "name": "Rehamna",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "REH",
+ "type": "province",
+ "latitude": "32.20329050",
+ "longitude": "-8.56896710"
+ },
+ {
+ "id": 3311,
+ "name": "Safi",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "SAF",
+ "type": "province",
+ "latitude": "32.29898720",
+ "longitude": "-9.10134980"
+ },
+ {
+ "id": 4944,
+ "name": "Salรฉ",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "SAL",
+ "type": "prefecture",
+ "latitude": "34.03775700",
+ "longitude": "-6.84270730"
+ },
+ {
+ "id": 3289,
+ "name": "Sefrou",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "SEF",
+ "type": "province",
+ "latitude": "33.83052440",
+ "longitude": "-4.83531540"
+ },
+ {
+ "id": 3282,
+ "name": "Settat",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "SET",
+ "type": "province",
+ "latitude": "32.99242420",
+ "longitude": "-7.62226650"
+ },
+ {
+ "id": 4945,
+ "name": "Sidi Bennour",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "SIB",
+ "type": "province",
+ "latitude": "32.64926020",
+ "longitude": "-8.44714530"
+ },
+ {
+ "id": 4946,
+ "name": "Sidi Ifni",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "SIF",
+ "type": "province",
+ "latitude": "29.36657970",
+ "longitude": "-10.21084850"
+ },
+ {
+ "id": 3279,
+ "name": "Sidi Kacem",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "SIK",
+ "type": "province",
+ "latitude": "34.22601720",
+ "longitude": "-5.71291640"
+ },
+ {
+ "id": 4952,
+ "name": "Sidi Slimane",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "SIL",
+ "type": "province",
+ "latitude": "34.27378280",
+ "longitude": "-5.98059720"
+ },
+ {
+ "id": 4947,
+ "name": "Skhirate-Tรฉmara",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "SKH",
+ "type": "prefecture",
+ "latitude": "33.76224250",
+ "longitude": "-7.04190520"
+ },
+ {
+ "id": 3295,
+ "name": "Souss-Massa",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "09",
+ "type": "region",
+ "latitude": "30.27506110",
+ "longitude": "-8.13385580"
+ },
+ {
+ "id": 3286,
+ "name": "Tan-Tan (EH-partial)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TNT",
+ "type": "province",
+ "latitude": "28.03012000",
+ "longitude": "-11.16173560"
+ },
+ {
+ "id": 4950,
+ "name": "Tanger-Assilah",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TNG",
+ "type": "prefecture",
+ "latitude": "35.76325390",
+ "longitude": "-5.90450980"
+ },
+ {
+ "id": 3324,
+ "name": "Tanger-Tรฉtouan-Al Hoceรฏma",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "01",
+ "type": "region",
+ "latitude": "35.26295580",
+ "longitude": "-5.56172790"
+ },
+ {
+ "id": 3323,
+ "name": "Taounate",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TAO",
+ "type": "province",
+ "latitude": "34.53691700",
+ "longitude": "-4.63986930"
+ },
+ {
+ "id": 3322,
+ "name": "Taourirt",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TAI",
+ "type": "province",
+ "latitude": "34.21259800",
+ "longitude": "-2.69838680"
+ },
+ {
+ "id": 4948,
+ "name": "Tarfaya (EH-partial)",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TAF",
+ "type": "province",
+ "latitude": "27.93777010",
+ "longitude": "-12.92940630"
+ },
+ {
+ "id": 3314,
+ "name": "Taroudannt",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TAR",
+ "type": "province",
+ "latitude": "30.47271260",
+ "longitude": "-8.87487650"
+ },
+ {
+ "id": 3312,
+ "name": "Tata",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TAT",
+ "type": "province",
+ "latitude": "29.75087700",
+ "longitude": "-7.97563430"
+ },
+ {
+ "id": 3296,
+ "name": "Taza",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TAZ",
+ "type": "province",
+ "latitude": "34.27889530",
+ "longitude": "-3.58126920"
+ },
+ {
+ "id": 3318,
+ "name": "Tรฉtouan",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TET",
+ "type": "province",
+ "latitude": "35.58889950",
+ "longitude": "-5.36255160"
+ },
+ {
+ "id": 4949,
+ "name": "Tinghir",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TIN",
+ "type": "province",
+ "latitude": "31.48507940",
+ "longitude": "-6.20192980"
+ },
+ {
+ "id": 3277,
+ "name": "Tiznit",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "TIZ",
+ "type": "province",
+ "latitude": "29.69339200",
+ "longitude": "-9.73215700"
+ },
+ {
+ "id": 4951,
+ "name": "Youssoufia",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "YUS",
+ "type": "province",
+ "latitude": "32.02006790",
+ "longitude": "-8.86926480"
+ },
+ {
+ "id": 3283,
+ "name": "Zagora",
+ "country_id": 149,
+ "country_code": "MA",
+ "country_name": "Morocco",
+ "state_code": "ZAG",
+ "type": "province",
+ "latitude": "30.57860930",
+ "longitude": "-5.89871390"
+ },
+ {
+ "id": 3327,
+ "name": "Cabo Delgado Province",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "P",
+ "type": null,
+ "latitude": "-12.33354740",
+ "longitude": "39.32062410"
+ },
+ {
+ "id": 3329,
+ "name": "Gaza Province",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "G",
+ "type": null,
+ "latitude": "-23.02219280",
+ "longitude": "32.71813750"
+ },
+ {
+ "id": 3330,
+ "name": "Inhambane Province",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "I",
+ "type": null,
+ "latitude": "-22.85279970",
+ "longitude": "34.55087580"
+ },
+ {
+ "id": 3337,
+ "name": "Manica Province",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "B",
+ "type": null,
+ "latitude": "-19.50597870",
+ "longitude": "33.43835300"
+ },
+ {
+ "id": 3335,
+ "name": "Maputo",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "MPM",
+ "type": null,
+ "latitude": "-25.96924800",
+ "longitude": "32.57317460"
+ },
+ {
+ "id": 3332,
+ "name": "Maputo Province",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "L",
+ "type": null,
+ "latitude": "-25.25698760",
+ "longitude": "32.53727410"
+ },
+ {
+ "id": 3336,
+ "name": "Nampula Province",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "N",
+ "type": null,
+ "latitude": "-14.76049310",
+ "longitude": "39.32062410"
+ },
+ {
+ "id": 3333,
+ "name": "Niassa Province",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "A",
+ "type": null,
+ "latitude": "-12.78262020",
+ "longitude": "36.60939260"
+ },
+ {
+ "id": 3331,
+ "name": "Sofala Province",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "S",
+ "type": null,
+ "latitude": "-19.20390730",
+ "longitude": "34.86241660"
+ },
+ {
+ "id": 3334,
+ "name": "Tete Province",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "T",
+ "type": null,
+ "latitude": "-15.65960560",
+ "longitude": "32.71813750"
+ },
+ {
+ "id": 3328,
+ "name": "Zambezia Province",
+ "country_id": 150,
+ "country_code": "MZ",
+ "country_name": "Mozambique",
+ "state_code": "Q",
+ "type": null,
+ "latitude": "-16.56389870",
+ "longitude": "36.60939260"
+ },
+ {
+ "id": 2142,
+ "name": "Ayeyarwady Region",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "07",
+ "type": null,
+ "latitude": "17.03421250",
+ "longitude": "95.22666750"
+ },
+ {
+ "id": 2141,
+ "name": "Bago",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "02",
+ "type": null,
+ "latitude": "17.32207110",
+ "longitude": "96.46632860"
+ },
+ {
+ "id": 2137,
+ "name": "Chin State",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "14",
+ "type": null,
+ "latitude": "22.00869780",
+ "longitude": "93.58126920"
+ },
+ {
+ "id": 2143,
+ "name": "Kachin State",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "11",
+ "type": null,
+ "latitude": "25.85090400",
+ "longitude": "97.43813550"
+ },
+ {
+ "id": 2144,
+ "name": "Kayah State",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "12",
+ "type": null,
+ "latitude": "19.23420610",
+ "longitude": "97.26528580"
+ },
+ {
+ "id": 2133,
+ "name": "Kayin State",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "13",
+ "type": null,
+ "latitude": "16.94593460",
+ "longitude": "97.95928630"
+ },
+ {
+ "id": 2136,
+ "name": "Magway Region",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "03",
+ "type": null,
+ "latitude": "19.88713860",
+ "longitude": "94.72775280"
+ },
+ {
+ "id": 2134,
+ "name": "Mandalay Region",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "04",
+ "type": null,
+ "latitude": "21.56190580",
+ "longitude": "95.89871390"
+ },
+ {
+ "id": 2147,
+ "name": "Mon State",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "15",
+ "type": null,
+ "latitude": "16.30031330",
+ "longitude": "97.69822720"
+ },
+ {
+ "id": 2146,
+ "name": "Naypyidaw Union Territory",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "18",
+ "type": null,
+ "latitude": "19.93862450",
+ "longitude": "96.15269850"
+ },
+ {
+ "id": 2138,
+ "name": "Rakhine State",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "16",
+ "type": null,
+ "latitude": "20.10408180",
+ "longitude": "93.58126920"
+ },
+ {
+ "id": 2145,
+ "name": "Sagaing Region",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "01",
+ "type": null,
+ "latitude": "24.42838100",
+ "longitude": "95.39395510"
+ },
+ {
+ "id": 2139,
+ "name": "Shan State",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "17",
+ "type": null,
+ "latitude": "22.03619850",
+ "longitude": "98.13385580"
+ },
+ {
+ "id": 2140,
+ "name": "Tanintharyi Region",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "05",
+ "type": null,
+ "latitude": "12.47068760",
+ "longitude": "99.01289260"
+ },
+ {
+ "id": 2135,
+ "name": "Yangon Region",
+ "country_id": 151,
+ "country_code": "MM",
+ "country_name": "Myanmar",
+ "state_code": "06",
+ "type": null,
+ "latitude": "16.91434880",
+ "longitude": "96.15269850"
+ },
+ {
+ "id": 43,
+ "name": "Erongo Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "ER",
+ "type": null,
+ "latitude": "-22.25656820",
+ "longitude": "15.40680790"
+ },
+ {
+ "id": 38,
+ "name": "Hardap Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "HA",
+ "type": null,
+ "latitude": "-24.23101340",
+ "longitude": "17.66888700"
+ },
+ {
+ "id": 45,
+ "name": "Karas Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "KA",
+ "type": null,
+ "latitude": "-26.84296450",
+ "longitude": "17.29028390"
+ },
+ {
+ "id": 36,
+ "name": "Kavango East Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "KE",
+ "type": null,
+ "latitude": "-18.27104800",
+ "longitude": "18.42760470"
+ },
+ {
+ "id": 35,
+ "name": "Kavango West Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "KW",
+ "type": null,
+ "latitude": "-18.27104800",
+ "longitude": "18.42760470"
+ },
+ {
+ "id": 44,
+ "name": "Khomas Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "KH",
+ "type": null,
+ "latitude": "-22.63778540",
+ "longitude": "17.10119310"
+ },
+ {
+ "id": 34,
+ "name": "Kunene Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "KU",
+ "type": null,
+ "latitude": "-19.40863170",
+ "longitude": "13.91439900"
+ },
+ {
+ "id": 40,
+ "name": "Ohangwena Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "OW",
+ "type": null,
+ "latitude": "-17.59792910",
+ "longitude": "16.81783770"
+ },
+ {
+ "id": 41,
+ "name": "Omaheke Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "OH",
+ "type": null,
+ "latitude": "-21.84666510",
+ "longitude": "19.18800470"
+ },
+ {
+ "id": 39,
+ "name": "Omusati Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "OS",
+ "type": null,
+ "latitude": "-18.40702940",
+ "longitude": "14.84546190"
+ },
+ {
+ "id": 37,
+ "name": "Oshana Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "ON",
+ "type": null,
+ "latitude": "-18.43050640",
+ "longitude": "15.68817880"
+ },
+ {
+ "id": 42,
+ "name": "Oshikoto Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "OT",
+ "type": null,
+ "latitude": "-18.41525750",
+ "longitude": "16.91225100"
+ },
+ {
+ "id": 46,
+ "name": "Otjozondjupa Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "OD",
+ "type": null,
+ "latitude": "-20.54869160",
+ "longitude": "17.66888700"
+ },
+ {
+ "id": 47,
+ "name": "Zambezi Region",
+ "country_id": 152,
+ "country_code": "NA",
+ "country_name": "Namibia",
+ "state_code": "CA",
+ "type": null,
+ "latitude": "-17.81934190",
+ "longitude": "23.95364660"
+ },
+ {
+ "id": 4656,
+ "name": "Aiwo District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "01",
+ "type": null,
+ "latitude": "-0.53400120",
+ "longitude": "166.91388730"
+ },
+ {
+ "id": 4658,
+ "name": "Anabar District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "02",
+ "type": null,
+ "latitude": "-0.51335170",
+ "longitude": "166.94846240"
+ },
+ {
+ "id": 4667,
+ "name": "Anetan District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "03",
+ "type": null,
+ "latitude": "-0.50643430",
+ "longitude": "166.94270060"
+ },
+ {
+ "id": 4663,
+ "name": "Anibare District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "04",
+ "type": null,
+ "latitude": "-0.52947580",
+ "longitude": "166.95134320"
+ },
+ {
+ "id": 4660,
+ "name": "Baiti District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "05",
+ "type": null,
+ "latitude": "-0.51043100",
+ "longitude": "166.92757440"
+ },
+ {
+ "id": 4665,
+ "name": "Boe District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "06",
+ "type": null,
+ "latitude": "39.07327760",
+ "longitude": "-94.57104980"
+ },
+ {
+ "id": 4662,
+ "name": "Buada District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "07",
+ "type": null,
+ "latitude": "-0.53287770",
+ "longitude": "166.92685410"
+ },
+ {
+ "id": 4666,
+ "name": "Denigomodu District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "08",
+ "type": null,
+ "latitude": "-0.52479640",
+ "longitude": "166.91676890"
+ },
+ {
+ "id": 4654,
+ "name": "Ewa District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "09",
+ "type": null,
+ "latitude": "-0.50872410",
+ "longitude": "166.93693840"
+ },
+ {
+ "id": 4661,
+ "name": "Ijuw District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "10",
+ "type": null,
+ "latitude": "-0.52027670",
+ "longitude": "166.95710460"
+ },
+ {
+ "id": 4657,
+ "name": "Meneng District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "11",
+ "type": null,
+ "latitude": "-0.54672400",
+ "longitude": "166.93837900"
+ },
+ {
+ "id": 4659,
+ "name": "Nibok District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "12",
+ "type": null,
+ "latitude": "-0.51962080",
+ "longitude": "166.91893010"
+ },
+ {
+ "id": 4655,
+ "name": "Uaboe District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "13",
+ "type": null,
+ "latitude": "-0.52022220",
+ "longitude": "166.93117610"
+ },
+ {
+ "id": 4664,
+ "name": "Yaren District",
+ "country_id": 153,
+ "country_code": "NR",
+ "country_name": "Nauru",
+ "state_code": "14",
+ "type": null,
+ "latitude": "-0.54668570",
+ "longitude": "166.92109130"
+ },
+ {
+ "id": 2082,
+ "name": "Bagmati Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "28.03675770",
+ "longitude": "85.43755740"
+ },
+ {
+ "id": 2071,
+ "name": "Bheri Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "BH",
+ "type": null,
+ "latitude": "28.51745600",
+ "longitude": "81.77870210"
+ },
+ {
+ "id": 2073,
+ "name": "Central Region",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "1",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2080,
+ "name": "Dhaulagiri Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "DH",
+ "type": null,
+ "latitude": "28.61117600",
+ "longitude": "83.50702030"
+ },
+ {
+ "id": 2069,
+ "name": "Eastern Development Region",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "4",
+ "type": null,
+ "latitude": "27.33090720",
+ "longitude": "87.06242610"
+ },
+ {
+ "id": 2068,
+ "name": "Far-Western Development Region",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "5",
+ "type": null,
+ "latitude": "29.29878710",
+ "longitude": "80.98710740"
+ },
+ {
+ "id": 2081,
+ "name": "Gandaki Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "GA",
+ "type": null,
+ "latitude": "28.37320370",
+ "longitude": "84.43827210"
+ },
+ {
+ "id": 2076,
+ "name": "Janakpur Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "JA",
+ "type": null,
+ "latitude": "27.21108990",
+ "longitude": "86.01215730"
+ },
+ {
+ "id": 2079,
+ "name": "Karnali Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "KA",
+ "type": null,
+ "latitude": "29.38625550",
+ "longitude": "82.38857830"
+ },
+ {
+ "id": 2072,
+ "name": "Kosi Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "KO",
+ "type": null,
+ "latitude": "27.05365240",
+ "longitude": "87.30161320"
+ },
+ {
+ "id": 2074,
+ "name": "Lumbini Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "LU",
+ "type": null,
+ "latitude": "27.45000000",
+ "longitude": "83.25000000"
+ },
+ {
+ "id": 2083,
+ "name": "Mahakali Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "29.36010790",
+ "longitude": "80.54384500"
+ },
+ {
+ "id": 2070,
+ "name": "Mechi Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "ME",
+ "type": null,
+ "latitude": "26.87600070",
+ "longitude": "87.93348030"
+ },
+ {
+ "id": 2066,
+ "name": "Mid-Western Region",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "2",
+ "type": null,
+ "latitude": "38.41118410",
+ "longitude": "-90.38320980"
+ },
+ {
+ "id": 2075,
+ "name": "Narayani Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "NA",
+ "type": null,
+ "latitude": "27.36117660",
+ "longitude": "84.85679320"
+ },
+ {
+ "id": 2077,
+ "name": "Rapti Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "RA",
+ "type": null,
+ "latitude": "28.27434700",
+ "longitude": "82.38857830"
+ },
+ {
+ "id": 2084,
+ "name": "Sagarmatha Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "27.32382630",
+ "longitude": "86.74163740"
+ },
+ {
+ "id": 2078,
+ "name": "Seti Zone",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "SE",
+ "type": null,
+ "latitude": "29.69054270",
+ "longitude": "81.33994140"
+ },
+ {
+ "id": 2067,
+ "name": "Western Region",
+ "country_id": 154,
+ "country_code": "NP",
+ "country_name": "Nepal",
+ "state_code": "3",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2624,
+ "name": "Bonaire",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "BQ1",
+ "type": "special municipality",
+ "latitude": "12.20189020",
+ "longitude": "-68.26238220"
+ },
+ {
+ "id": 2613,
+ "name": "Drenthe",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "DR",
+ "type": "province",
+ "latitude": "52.94760120",
+ "longitude": "6.62305860"
+ },
+ {
+ "id": 2619,
+ "name": "Flevoland",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "FL",
+ "type": "province",
+ "latitude": "52.52797810",
+ "longitude": "5.59535080"
+ },
+ {
+ "id": 2622,
+ "name": "Friesland",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "FR",
+ "type": "province",
+ "latitude": "53.16416420",
+ "longitude": "5.78175420"
+ },
+ {
+ "id": 2611,
+ "name": "Gelderland",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "GE",
+ "type": "province",
+ "latitude": "52.04515500",
+ "longitude": "5.87182350"
+ },
+ {
+ "id": 2617,
+ "name": "Groningen",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "GR",
+ "type": "province",
+ "latitude": "53.21938350",
+ "longitude": "6.56650170"
+ },
+ {
+ "id": 2615,
+ "name": "Limburg",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "LI",
+ "type": "province",
+ "latitude": "51.44272380",
+ "longitude": "6.06087260"
+ },
+ {
+ "id": 2623,
+ "name": "North Brabant",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "NB",
+ "type": "province",
+ "latitude": "51.48265370",
+ "longitude": "5.23216870"
+ },
+ {
+ "id": 2612,
+ "name": "North Holland",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "NH",
+ "type": "province",
+ "latitude": "52.52058690",
+ "longitude": "4.78847400"
+ },
+ {
+ "id": 2618,
+ "name": "Overijssel",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "OV",
+ "type": "province",
+ "latitude": "52.43878140",
+ "longitude": "6.50164110"
+ },
+ {
+ "id": 2621,
+ "name": "Saba",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "BQ2",
+ "type": "special municipality",
+ "latitude": "17.63546420",
+ "longitude": "-63.23267630"
+ },
+ {
+ "id": 2616,
+ "name": "Sint Eustatius",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "BQ3",
+ "type": "special municipality",
+ "latitude": "17.48903060",
+ "longitude": "-62.97355500"
+ },
+ {
+ "id": 2614,
+ "name": "South Holland",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "ZH",
+ "type": "province",
+ "latitude": "51.99667920",
+ "longitude": "4.55973970"
+ },
+ {
+ "id": 2610,
+ "name": "Utrecht",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "UT",
+ "type": "province",
+ "latitude": "52.09073740",
+ "longitude": "5.12142010"
+ },
+ {
+ "id": 2620,
+ "name": "Zeeland",
+ "country_id": 156,
+ "country_code": "NL",
+ "country_name": "Netherlands",
+ "state_code": "ZE",
+ "type": "province",
+ "latitude": "51.49403090",
+ "longitude": "3.84968150"
+ },
+ {
+ "id": 4072,
+ "name": "Auckland Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "AUK",
+ "type": null,
+ "latitude": "-36.66753280",
+ "longitude": "174.77333250"
+ },
+ {
+ "id": 4074,
+ "name": "Bay of Plenty Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "BOP",
+ "type": null,
+ "latitude": "-37.42339170",
+ "longitude": "176.74163740"
+ },
+ {
+ "id": 4066,
+ "name": "Canterbury Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "CAN",
+ "type": null,
+ "latitude": "-43.75422750",
+ "longitude": "171.16372450"
+ },
+ {
+ "id": 4067,
+ "name": "Chatham Islands",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "CIT",
+ "type": null,
+ "latitude": "-44.00575230",
+ "longitude": "-176.54006740"
+ },
+ {
+ "id": 4068,
+ "name": "Gisborne District",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "GIS",
+ "type": null,
+ "latitude": "-38.13581740",
+ "longitude": "178.32393090"
+ },
+ {
+ "id": 4075,
+ "name": "Hawke's Bay Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "HKB",
+ "type": null,
+ "latitude": "-39.60165970",
+ "longitude": "176.58044730"
+ },
+ {
+ "id": 4060,
+ "name": "Manawatu-Wanganui Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "MWT",
+ "type": null,
+ "latitude": "-39.72733560",
+ "longitude": "175.43755740"
+ },
+ {
+ "id": 4063,
+ "name": "Marlborough Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "MBH",
+ "type": null,
+ "latitude": "-41.59168830",
+ "longitude": "173.76240530"
+ },
+ {
+ "id": 4070,
+ "name": "Nelson Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "NSN",
+ "type": null,
+ "latitude": "-41.29853970",
+ "longitude": "173.24414910"
+ },
+ {
+ "id": 4059,
+ "name": "Northland Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "NTL",
+ "type": null,
+ "latitude": "-35.41361720",
+ "longitude": "173.93208060"
+ },
+ {
+ "id": 4062,
+ "name": "Otago Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "OTA",
+ "type": null,
+ "latitude": "-45.47906710",
+ "longitude": "170.15475670"
+ },
+ {
+ "id": 4071,
+ "name": "Southland Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "STL",
+ "type": null,
+ "latitude": "-45.84891590",
+ "longitude": "167.67553870"
+ },
+ {
+ "id": 4069,
+ "name": "Taranaki Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "TKI",
+ "type": null,
+ "latitude": "-39.35381490",
+ "longitude": "174.43827210"
+ },
+ {
+ "id": 4073,
+ "name": "Tasman District",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "TAS",
+ "type": null,
+ "latitude": "-41.45711840",
+ "longitude": "172.82097400"
+ },
+ {
+ "id": 4061,
+ "name": "Waikato Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "WKO",
+ "type": null,
+ "latitude": "-37.61908620",
+ "longitude": "175.02334600"
+ },
+ {
+ "id": 4065,
+ "name": "Wellington Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "WGN",
+ "type": null,
+ "latitude": "-41.02993230",
+ "longitude": "175.43755740"
+ },
+ {
+ "id": 4064,
+ "name": "West Coast Region",
+ "country_id": 158,
+ "country_code": "NZ",
+ "country_name": "New Zealand",
+ "state_code": "WTC",
+ "type": null,
+ "latitude": "62.41136340",
+ "longitude": "-149.07297140"
+ },
+ {
+ "id": 946,
+ "name": "Boaco",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "BO",
+ "type": "department",
+ "latitude": "12.46928400",
+ "longitude": "-85.66146820"
+ },
+ {
+ "id": 950,
+ "name": "Carazo",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "CA",
+ "type": "department",
+ "latitude": "11.72747290",
+ "longitude": "-86.21584970"
+ },
+ {
+ "id": 954,
+ "name": "Chinandega",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "CI",
+ "type": "department",
+ "latitude": "12.88200620",
+ "longitude": "-87.14228950"
+ },
+ {
+ "id": 940,
+ "name": "Chontales",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "CO",
+ "type": "department",
+ "latitude": "11.93947170",
+ "longitude": "-85.18940450"
+ },
+ {
+ "id": 945,
+ "name": "Estelรญ",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "ES",
+ "type": "department",
+ "latitude": "13.08511390",
+ "longitude": "-86.36301970"
+ },
+ {
+ "id": 943,
+ "name": "Granada",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "GR",
+ "type": "department",
+ "latitude": "11.93440730",
+ "longitude": "-85.95600050"
+ },
+ {
+ "id": 955,
+ "name": "Jinotega",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "JI",
+ "type": "department",
+ "latitude": "13.08839070",
+ "longitude": "-85.99939970"
+ },
+ {
+ "id": 944,
+ "name": "Leรณn",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "LE",
+ "type": "department",
+ "latitude": "12.50920370",
+ "longitude": "-86.66110830"
+ },
+ {
+ "id": 948,
+ "name": "Madriz",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "MD",
+ "type": "department",
+ "latitude": "13.47260050",
+ "longitude": "-86.45920910"
+ },
+ {
+ "id": 941,
+ "name": "Managua",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "MN",
+ "type": "department",
+ "latitude": "12.13916990",
+ "longitude": "-86.33767610"
+ },
+ {
+ "id": 953,
+ "name": "Masaya",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "MS",
+ "type": "department",
+ "latitude": "11.97593280",
+ "longitude": "-86.07334980"
+ },
+ {
+ "id": 947,
+ "name": "Matagalpa",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "MT",
+ "type": "department",
+ "latitude": "12.94984360",
+ "longitude": "-85.43755740"
+ },
+ {
+ "id": 951,
+ "name": "North Caribbean Coast",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "AN",
+ "type": "autonomous region",
+ "latitude": "13.83944560",
+ "longitude": "-83.93208060"
+ },
+ {
+ "id": 4964,
+ "name": "Nueva Segovia",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "NS",
+ "type": "department",
+ "latitude": "13.76570610",
+ "longitude": "-86.53700390"
+ },
+ {
+ "id": 949,
+ "name": "Rรญo San Juan",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "SJ",
+ "type": "department",
+ "latitude": "11.47816100",
+ "longitude": "-84.77333250"
+ },
+ {
+ "id": 942,
+ "name": "Rivas",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "RI",
+ "type": "department",
+ "latitude": "11.40234900",
+ "longitude": "-85.68457800"
+ },
+ {
+ "id": 952,
+ "name": "South Caribbean Coast",
+ "country_id": 159,
+ "country_code": "NI",
+ "country_name": "Nicaragua",
+ "state_code": "AS",
+ "type": "autonomous region",
+ "latitude": "12.19185020",
+ "longitude": "-84.10128610"
+ },
+ {
+ "id": 71,
+ "name": "Agadez Region",
+ "country_id": 160,
+ "country_code": "NE",
+ "country_name": "Niger",
+ "state_code": "1",
+ "type": null,
+ "latitude": "20.66707520",
+ "longitude": "12.07182810"
+ },
+ {
+ "id": 72,
+ "name": "Diffa Region",
+ "country_id": 160,
+ "country_code": "NE",
+ "country_name": "Niger",
+ "state_code": "2",
+ "type": null,
+ "latitude": "13.67686470",
+ "longitude": "12.71351210"
+ },
+ {
+ "id": 68,
+ "name": "Dosso Region",
+ "country_id": 160,
+ "country_code": "NE",
+ "country_name": "Niger",
+ "state_code": "3",
+ "type": null,
+ "latitude": "13.15139470",
+ "longitude": "3.41955270"
+ },
+ {
+ "id": 70,
+ "name": "Maradi Region",
+ "country_id": 160,
+ "country_code": "NE",
+ "country_name": "Niger",
+ "state_code": "4",
+ "type": null,
+ "latitude": "13.80180740",
+ "longitude": "7.43813550"
+ },
+ {
+ "id": 73,
+ "name": "Tahoua Region",
+ "country_id": 160,
+ "country_code": "NE",
+ "country_name": "Niger",
+ "state_code": "5",
+ "type": null,
+ "latitude": "16.09025430",
+ "longitude": "5.39395510"
+ },
+ {
+ "id": 67,
+ "name": "Tillabรฉri Region",
+ "country_id": 160,
+ "country_code": "NE",
+ "country_name": "Niger",
+ "state_code": "6",
+ "type": null,
+ "latitude": "14.64895250",
+ "longitude": "2.14502450"
+ },
+ {
+ "id": 69,
+ "name": "Zinder Region",
+ "country_id": 160,
+ "country_code": "NE",
+ "country_name": "Niger",
+ "state_code": "7",
+ "type": null,
+ "latitude": "15.17188810",
+ "longitude": "10.26001250"
+ },
+ {
+ "id": 303,
+ "name": "Abia",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "AB",
+ "type": "state",
+ "latitude": "5.45273540",
+ "longitude": "7.52484140"
+ },
+ {
+ "id": 293,
+ "name": "Abuja Federal Capital Territory",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "FC",
+ "type": "capital territory",
+ "latitude": "8.89406910",
+ "longitude": "7.18604020"
+ },
+ {
+ "id": 320,
+ "name": "Adamawa",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "AD",
+ "type": "state",
+ "latitude": "9.32647510",
+ "longitude": "12.39838530"
+ },
+ {
+ "id": 304,
+ "name": "Akwa Ibom",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "AK",
+ "type": "state",
+ "latitude": "4.90573710",
+ "longitude": "7.85366750"
+ },
+ {
+ "id": 315,
+ "name": "Anambra",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "AN",
+ "type": "state",
+ "latitude": "6.22089970",
+ "longitude": "6.93695590"
+ },
+ {
+ "id": 312,
+ "name": "Bauchi",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "BA",
+ "type": "state",
+ "latitude": "10.77606240",
+ "longitude": "9.99919430"
+ },
+ {
+ "id": 305,
+ "name": "Bayelsa",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "BY",
+ "type": "state",
+ "latitude": "4.77190710",
+ "longitude": "6.06985260"
+ },
+ {
+ "id": 291,
+ "name": "Benue",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "BE",
+ "type": "state",
+ "latitude": "7.33690240",
+ "longitude": "8.74036870"
+ },
+ {
+ "id": 307,
+ "name": "Borno",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "BO",
+ "type": "state",
+ "latitude": "11.88463560",
+ "longitude": "13.15196650"
+ },
+ {
+ "id": 314,
+ "name": "Cross River",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "CR",
+ "type": "state",
+ "latitude": "5.87017240",
+ "longitude": "8.59880140"
+ },
+ {
+ "id": 316,
+ "name": "Delta",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "DE",
+ "type": "state",
+ "latitude": "33.74537840",
+ "longitude": "-90.73545080"
+ },
+ {
+ "id": 311,
+ "name": "Ebonyi",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "EB",
+ "type": "state",
+ "latitude": "6.26492320",
+ "longitude": "8.01373020"
+ },
+ {
+ "id": 318,
+ "name": "Edo",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "ED",
+ "type": "state",
+ "latitude": "6.63418310",
+ "longitude": "5.93040560"
+ },
+ {
+ "id": 309,
+ "name": "Ekiti",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "EK",
+ "type": "state",
+ "latitude": "7.71898620",
+ "longitude": "5.31095050"
+ },
+ {
+ "id": 289,
+ "name": "Enugu",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "EN",
+ "type": "state",
+ "latitude": "6.53635300",
+ "longitude": "7.43561940"
+ },
+ {
+ "id": 310,
+ "name": "Gombe",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "GO",
+ "type": "state",
+ "latitude": "10.36377950",
+ "longitude": "11.19275870"
+ },
+ {
+ "id": 308,
+ "name": "Imo",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "IM",
+ "type": "state",
+ "latitude": "5.57201220",
+ "longitude": "7.05882190"
+ },
+ {
+ "id": 288,
+ "name": "Jigawa",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "JI",
+ "type": "state",
+ "latitude": "12.22801200",
+ "longitude": "9.56158670"
+ },
+ {
+ "id": 294,
+ "name": "Kaduna",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "KD",
+ "type": "state",
+ "latitude": "10.37640060",
+ "longitude": "7.70945370"
+ },
+ {
+ "id": 300,
+ "name": "Kano",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "KN",
+ "type": "state",
+ "latitude": "11.74706980",
+ "longitude": "8.52471070"
+ },
+ {
+ "id": 313,
+ "name": "Katsina",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "KT",
+ "type": "state",
+ "latitude": "12.37967070",
+ "longitude": "7.63057480"
+ },
+ {
+ "id": 290,
+ "name": "Kebbi",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "KE",
+ "type": "state",
+ "latitude": "11.49420030",
+ "longitude": "4.23333550"
+ },
+ {
+ "id": 298,
+ "name": "Kogi",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "KO",
+ "type": "state",
+ "latitude": "7.73373250",
+ "longitude": "6.69058360"
+ },
+ {
+ "id": 295,
+ "name": "Kwara",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "KW",
+ "type": "state",
+ "latitude": "8.96689610",
+ "longitude": "4.38740510"
+ },
+ {
+ "id": 306,
+ "name": "Lagos",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "LA",
+ "type": "state",
+ "latitude": "6.52437930",
+ "longitude": "3.37920570"
+ },
+ {
+ "id": 301,
+ "name": "Nasarawa",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "NA",
+ "type": "state",
+ "latitude": "8.49979080",
+ "longitude": "8.19969370"
+ },
+ {
+ "id": 317,
+ "name": "Niger",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "NI",
+ "type": "state",
+ "latitude": "9.93092240",
+ "longitude": "5.59832100"
+ },
+ {
+ "id": 323,
+ "name": "Ogun",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "OG",
+ "type": "state",
+ "latitude": "6.99797470",
+ "longitude": "3.47373780"
+ },
+ {
+ "id": 321,
+ "name": "Ondo",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "ON",
+ "type": "state",
+ "latitude": "6.91486820",
+ "longitude": "5.14781440"
+ },
+ {
+ "id": 322,
+ "name": "Osun",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "OS",
+ "type": "state",
+ "latitude": "7.56289640",
+ "longitude": "4.51995930"
+ },
+ {
+ "id": 296,
+ "name": "Oyo",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "OY",
+ "type": "state",
+ "latitude": "8.15738090",
+ "longitude": "3.61465340"
+ },
+ {
+ "id": 302,
+ "name": "Plateau",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "PL",
+ "type": "state",
+ "latitude": "9.21820930",
+ "longitude": "9.51794880"
+ },
+ {
+ "id": 4926,
+ "name": "Rivers",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "RI",
+ "type": "state",
+ "latitude": "5.02134200",
+ "longitude": "6.43760220"
+ },
+ {
+ "id": 292,
+ "name": "Sokoto",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "SO",
+ "type": "state",
+ "latitude": "13.05331430",
+ "longitude": "5.32227220"
+ },
+ {
+ "id": 319,
+ "name": "Taraba",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "TA",
+ "type": "state",
+ "latitude": "7.99936160",
+ "longitude": "10.77398630"
+ },
+ {
+ "id": 297,
+ "name": "Yobe",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "YO",
+ "type": "state",
+ "latitude": "12.29387600",
+ "longitude": "11.43904110"
+ },
+ {
+ "id": 299,
+ "name": "Zamfara",
+ "country_id": 161,
+ "country_code": "NG",
+ "country_name": "Nigeria",
+ "state_code": "ZA",
+ "type": "state",
+ "latitude": "12.12218050",
+ "longitude": "6.22358190"
+ },
+ {
+ "id": 3998,
+ "name": "Chagang Province",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "04",
+ "type": null,
+ "latitude": "40.72028090",
+ "longitude": "126.56211370"
+ },
+ {
+ "id": 3999,
+ "name": "Kangwon Province",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "07",
+ "type": null,
+ "latitude": "38.84323930",
+ "longitude": "127.55970670"
+ },
+ {
+ "id": 3995,
+ "name": "North Hamgyong Province",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "09",
+ "type": null,
+ "latitude": "41.81487580",
+ "longitude": "129.45819550"
+ },
+ {
+ "id": 4004,
+ "name": "North Hwanghae Province",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "06",
+ "type": null,
+ "latitude": "38.37860850",
+ "longitude": "126.43643630"
+ },
+ {
+ "id": 4002,
+ "name": "North Pyongan Province",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "03",
+ "type": null,
+ "latitude": "39.92556180",
+ "longitude": "125.39280250"
+ },
+ {
+ "id": 4005,
+ "name": "Pyongyang",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "01",
+ "type": null,
+ "latitude": "39.03921930",
+ "longitude": "125.76252410"
+ },
+ {
+ "id": 4001,
+ "name": "Rason",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "13",
+ "type": null,
+ "latitude": "42.25690630",
+ "longitude": "130.29771860"
+ },
+ {
+ "id": 3996,
+ "name": "Ryanggang Province",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "10",
+ "type": null,
+ "latitude": "41.23189210",
+ "longitude": "128.50763590"
+ },
+ {
+ "id": 4000,
+ "name": "South Hamgyong Province",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "08",
+ "type": null,
+ "latitude": "40.37253390",
+ "longitude": "128.29888400"
+ },
+ {
+ "id": 4003,
+ "name": "South Hwanghae Province",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "05",
+ "type": null,
+ "latitude": "38.20072150",
+ "longitude": "125.47819260"
+ },
+ {
+ "id": 3997,
+ "name": "South Pyongan Province",
+ "country_id": 115,
+ "country_code": "KP",
+ "country_name": "North Korea",
+ "state_code": "02",
+ "type": null,
+ "latitude": "39.35391780",
+ "longitude": "126.16827100"
+ },
+ {
+ "id": 703,
+ "name": "Aerodrom Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "01",
+ "type": null,
+ "latitude": "41.94643630",
+ "longitude": "21.49317130"
+ },
+ {
+ "id": 656,
+ "name": "Araฤinovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "02",
+ "type": null,
+ "latitude": "42.02473810",
+ "longitude": "21.57664070"
+ },
+ {
+ "id": 716,
+ "name": "Berovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "03",
+ "type": null,
+ "latitude": "41.66619290",
+ "longitude": "22.76288300"
+ },
+ {
+ "id": 679,
+ "name": "Bitola Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "04",
+ "type": null,
+ "latitude": "41.03633020",
+ "longitude": "21.33219740"
+ },
+ {
+ "id": 649,
+ "name": "Bogdanci Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "05",
+ "type": null,
+ "latitude": "41.18696160",
+ "longitude": "22.59602680"
+ },
+ {
+ "id": 721,
+ "name": "Bogovinje Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "06",
+ "type": null,
+ "latitude": "41.92363710",
+ "longitude": "20.91638870"
+ },
+ {
+ "id": 652,
+ "name": "Bosilovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "07",
+ "type": null,
+ "latitude": "41.49048640",
+ "longitude": "22.78671740"
+ },
+ {
+ "id": 660,
+ "name": "Brvenica Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "08",
+ "type": null,
+ "latitude": "41.96814820",
+ "longitude": "20.98195860"
+ },
+ {
+ "id": 694,
+ "name": "Butel Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "09",
+ "type": null,
+ "latitude": "42.08950680",
+ "longitude": "21.46336100"
+ },
+ {
+ "id": 704,
+ "name": "ฤair Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "79",
+ "type": null,
+ "latitude": "41.99303550",
+ "longitude": "21.43653180"
+ },
+ {
+ "id": 676,
+ "name": "ฤaลกka Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "80",
+ "type": null,
+ "latitude": "41.64743800",
+ "longitude": "21.69141150"
+ },
+ {
+ "id": 702,
+ "name": "Centar Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "77",
+ "type": null,
+ "latitude": "41.96989340",
+ "longitude": "21.42162670"
+ },
+ {
+ "id": 720,
+ "name": "Centar ลฝupa Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "78",
+ "type": null,
+ "latitude": "41.46522590",
+ "longitude": "20.59305480"
+ },
+ {
+ "id": 644,
+ "name": "ฤeลกinovo-Obleลกevo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "81",
+ "type": null,
+ "latitude": "41.86393160",
+ "longitude": "22.26224600"
+ },
+ {
+ "id": 715,
+ "name": "ฤuฤer-Sandevo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "82",
+ "type": null,
+ "latitude": "42.14839460",
+ "longitude": "21.40374070"
+ },
+ {
+ "id": 645,
+ "name": "Debarca Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "22",
+ "type": null,
+ "latitude": "41.35840770",
+ "longitude": "20.85529190"
+ },
+ {
+ "id": 695,
+ "name": "Delฤevo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "23",
+ "type": null,
+ "latitude": "41.96843870",
+ "longitude": "22.76288300"
+ },
+ {
+ "id": 687,
+ "name": "Demir Hisar Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "25",
+ "type": null,
+ "latitude": "41.22708300",
+ "longitude": "21.14142260"
+ },
+ {
+ "id": 655,
+ "name": "Demir Kapija Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "24",
+ "type": null,
+ "latitude": "41.37955380",
+ "longitude": "22.21455710"
+ },
+ {
+ "id": 697,
+ "name": "Dojran Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "26",
+ "type": null,
+ "latitude": "41.24366720",
+ "longitude": "22.69137640"
+ },
+ {
+ "id": 675,
+ "name": "Dolneni Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "27",
+ "type": null,
+ "latitude": "41.46409350",
+ "longitude": "21.40374070"
+ },
+ {
+ "id": 657,
+ "name": "Drugovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "28",
+ "type": null,
+ "latitude": "41.44081530",
+ "longitude": "20.92682010"
+ },
+ {
+ "id": 707,
+ "name": "Gazi Baba Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "17",
+ "type": null,
+ "latitude": "42.01629610",
+ "longitude": "21.49913340"
+ },
+ {
+ "id": 648,
+ "name": "Gevgelija Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "18",
+ "type": null,
+ "latitude": "41.21186060",
+ "longitude": "22.38146240"
+ },
+ {
+ "id": 722,
+ "name": "Gjorฤe Petrov Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "29",
+ "type": null,
+ "latitude": "42.06063740",
+ "longitude": "21.32027360"
+ },
+ {
+ "id": 693,
+ "name": "Gostivar Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "19",
+ "type": null,
+ "latitude": "41.80255410",
+ "longitude": "20.90893780"
+ },
+ {
+ "id": 708,
+ "name": "Gradsko Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "20",
+ "type": null,
+ "latitude": "41.59916080",
+ "longitude": "21.88070640"
+ },
+ {
+ "id": 684,
+ "name": "Greater Skopje",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "85",
+ "type": null,
+ "latitude": "41.99812940",
+ "longitude": "21.42543550"
+ },
+ {
+ "id": 690,
+ "name": "Ilinden Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "34",
+ "type": null,
+ "latitude": "41.99574430",
+ "longitude": "21.56769750"
+ },
+ {
+ "id": 678,
+ "name": "Jegunovce Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "35",
+ "type": null,
+ "latitude": "42.07407200",
+ "longitude": "21.12204780"
+ },
+ {
+ "id": 674,
+ "name": "Karbinci",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "37",
+ "type": null,
+ "latitude": "41.81801590",
+ "longitude": "22.23247580"
+ },
+ {
+ "id": 681,
+ "name": "Karpoลก Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "38",
+ "type": null,
+ "latitude": "41.97096610",
+ "longitude": "21.39181680"
+ },
+ {
+ "id": 713,
+ "name": "Kavadarci Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "36",
+ "type": null,
+ "latitude": "41.28900680",
+ "longitude": "21.99994350"
+ },
+ {
+ "id": 688,
+ "name": "Kiฤevo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "40",
+ "type": null,
+ "latitude": "41.51291120",
+ "longitude": "20.95250650"
+ },
+ {
+ "id": 686,
+ "name": "Kisela Voda Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "39",
+ "type": null,
+ "latitude": "41.92748000",
+ "longitude": "21.49317130"
+ },
+ {
+ "id": 723,
+ "name": "Koฤani Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "42",
+ "type": null,
+ "latitude": "41.98583740",
+ "longitude": "22.40530460"
+ },
+ {
+ "id": 665,
+ "name": "Konฤe Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "41",
+ "type": null,
+ "latitude": "41.51710110",
+ "longitude": "22.38146240"
+ },
+ {
+ "id": 641,
+ "name": "Kratovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "43",
+ "type": null,
+ "latitude": "42.05371410",
+ "longitude": "22.07148350"
+ },
+ {
+ "id": 677,
+ "name": "Kriva Palanka Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "44",
+ "type": null,
+ "latitude": "42.20584540",
+ "longitude": "22.33079650"
+ },
+ {
+ "id": 647,
+ "name": "Krivogaลกtani Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "45",
+ "type": null,
+ "latitude": "41.30823060",
+ "longitude": "21.36796890"
+ },
+ {
+ "id": 714,
+ "name": "Kruลกevo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "46",
+ "type": null,
+ "latitude": "41.37693310",
+ "longitude": "21.26065540"
+ },
+ {
+ "id": 683,
+ "name": "Kumanovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "47",
+ "type": null,
+ "latitude": "42.07326130",
+ "longitude": "21.78531430"
+ },
+ {
+ "id": 659,
+ "name": "Lipkovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "48",
+ "type": null,
+ "latitude": "42.20066260",
+ "longitude": "21.61837550"
+ },
+ {
+ "id": 705,
+ "name": "Lozovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "49",
+ "type": null,
+ "latitude": "41.78181390",
+ "longitude": "21.90008270"
+ },
+ {
+ "id": 701,
+ "name": "Makedonska Kamenica Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "51",
+ "type": null,
+ "latitude": "42.06946040",
+ "longitude": "22.54834900"
+ },
+ {
+ "id": 692,
+ "name": "Makedonski Brod Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "52",
+ "type": null,
+ "latitude": "41.51330880",
+ "longitude": "21.21743290"
+ },
+ {
+ "id": 669,
+ "name": "Mavrovo and Rostuลกa Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "50",
+ "type": null,
+ "latitude": "41.60924270",
+ "longitude": "20.60124880"
+ },
+ {
+ "id": 653,
+ "name": "Mogila Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "53",
+ "type": null,
+ "latitude": "41.14796450",
+ "longitude": "21.45143690"
+ },
+ {
+ "id": 664,
+ "name": "Negotino Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "54",
+ "type": null,
+ "latitude": "41.49899850",
+ "longitude": "22.09532970"
+ },
+ {
+ "id": 696,
+ "name": "Novaci Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "55",
+ "type": null,
+ "latitude": "41.04426610",
+ "longitude": "21.45888940"
+ },
+ {
+ "id": 718,
+ "name": "Novo Selo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "56",
+ "type": null,
+ "latitude": "41.43255800",
+ "longitude": "22.88204890"
+ },
+ {
+ "id": 699,
+ "name": "Ohrid Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "58",
+ "type": null,
+ "latitude": "41.06820880",
+ "longitude": "20.75992660"
+ },
+ {
+ "id": 682,
+ "name": "Oslomej Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "57",
+ "type": null,
+ "latitude": "41.57583910",
+ "longitude": "21.02219600"
+ },
+ {
+ "id": 685,
+ "name": "Pehฤevo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "60",
+ "type": null,
+ "latitude": "41.77371320",
+ "longitude": "22.88204890"
+ },
+ {
+ "id": 698,
+ "name": "Petrovec Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "59",
+ "type": null,
+ "latitude": "41.90298970",
+ "longitude": "21.68992100"
+ },
+ {
+ "id": 670,
+ "name": "Plasnica Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "61",
+ "type": null,
+ "latitude": "41.45463490",
+ "longitude": "21.10565390"
+ },
+ {
+ "id": 666,
+ "name": "Prilep Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "62",
+ "type": null,
+ "latitude": "41.26931420",
+ "longitude": "21.71376940"
+ },
+ {
+ "id": 646,
+ "name": "Probiลกtip Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "63",
+ "type": null,
+ "latitude": "41.95891460",
+ "longitude": "22.16686700"
+ },
+ {
+ "id": 709,
+ "name": "Radoviลก Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "64",
+ "type": null,
+ "latitude": "41.64955310",
+ "longitude": "22.47682870"
+ },
+ {
+ "id": 717,
+ "name": "Rankovce Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "65",
+ "type": null,
+ "latitude": "42.18081410",
+ "longitude": "22.09532970"
+ },
+ {
+ "id": 712,
+ "name": "Resen Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "66",
+ "type": null,
+ "latitude": "40.93680930",
+ "longitude": "21.04604070"
+ },
+ {
+ "id": 691,
+ "name": "Rosoman Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "67",
+ "type": null,
+ "latitude": "41.48480060",
+ "longitude": "21.88070640"
+ },
+ {
+ "id": 667,
+ "name": "Saraj Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "68",
+ "type": null,
+ "latitude": "41.98694960",
+ "longitude": "21.26065540"
+ },
+ {
+ "id": 719,
+ "name": "Sopiลกte Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "70",
+ "type": null,
+ "latitude": "41.86384920",
+ "longitude": "21.30834990"
+ },
+ {
+ "id": 643,
+ "name": "Staro Nagoriฤane Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "71",
+ "type": null,
+ "latitude": "42.21916920",
+ "longitude": "21.90455410"
+ },
+ {
+ "id": 661,
+ "name": "ล tip Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "83",
+ "type": null,
+ "latitude": "41.70792970",
+ "longitude": "22.19071220"
+ },
+ {
+ "id": 700,
+ "name": "Struga Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "72",
+ "type": null,
+ "latitude": "41.31737440",
+ "longitude": "20.66456830"
+ },
+ {
+ "id": 710,
+ "name": "Strumica Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "73",
+ "type": null,
+ "latitude": "41.43780040",
+ "longitude": "22.64274280"
+ },
+ {
+ "id": 711,
+ "name": "Studeniฤani Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "74",
+ "type": null,
+ "latitude": "41.92256390",
+ "longitude": "21.53639650"
+ },
+ {
+ "id": 680,
+ "name": "ล uto Orizari Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "84",
+ "type": null,
+ "latitude": "42.02904160",
+ "longitude": "21.40970270"
+ },
+ {
+ "id": 640,
+ "name": "Sveti Nikole Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "69",
+ "type": null,
+ "latitude": "41.89803120",
+ "longitude": "21.99994350"
+ },
+ {
+ "id": 654,
+ "name": "Tearce Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "75",
+ "type": null,
+ "latitude": "42.07775110",
+ "longitude": "21.05349230"
+ },
+ {
+ "id": 663,
+ "name": "Tetovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "76",
+ "type": null,
+ "latitude": "42.02748600",
+ "longitude": "20.95066360"
+ },
+ {
+ "id": 671,
+ "name": "Valandovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "10",
+ "type": null,
+ "latitude": "41.32119090",
+ "longitude": "22.50066930"
+ },
+ {
+ "id": 658,
+ "name": "Vasilevo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "11",
+ "type": null,
+ "latitude": "41.47416990",
+ "longitude": "22.64221280"
+ },
+ {
+ "id": 651,
+ "name": "Veles Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "13",
+ "type": null,
+ "latitude": "41.72744260",
+ "longitude": "21.71376940"
+ },
+ {
+ "id": 662,
+ "name": "Vevฤani Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "12",
+ "type": null,
+ "latitude": "41.24075430",
+ "longitude": "20.59156490"
+ },
+ {
+ "id": 672,
+ "name": "Vinica Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "14",
+ "type": null,
+ "latitude": "41.85710200",
+ "longitude": "22.57218810"
+ },
+ {
+ "id": 650,
+ "name": "Vraneลกtica Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "15",
+ "type": null,
+ "latitude": "41.48290870",
+ "longitude": "21.05796320"
+ },
+ {
+ "id": 689,
+ "name": "Vrapฤiลกte Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "16",
+ "type": null,
+ "latitude": "41.87911600",
+ "longitude": "20.83145000"
+ },
+ {
+ "id": 642,
+ "name": "Zajas Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "31",
+ "type": null,
+ "latitude": "41.60303280",
+ "longitude": "20.87913430"
+ },
+ {
+ "id": 706,
+ "name": "Zelenikovo Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "32",
+ "type": null,
+ "latitude": "41.87338120",
+ "longitude": "21.60272500"
+ },
+ {
+ "id": 668,
+ "name": "ลฝelino Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "30",
+ "type": null,
+ "latitude": "41.90065310",
+ "longitude": "21.11757670"
+ },
+ {
+ "id": 673,
+ "name": "Zrnovci Municipality",
+ "country_id": 129,
+ "country_code": "MK",
+ "country_name": "North Macedonia",
+ "state_code": "33",
+ "type": null,
+ "latitude": "41.82282210",
+ "longitude": "22.41722560"
+ },
+ {
+ "id": 1014,
+ "name": "Agder",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "42",
+ "type": "county",
+ "latitude": "58.74069340",
+ "longitude": "6.75315210"
+ },
+ {
+ "id": 1009,
+ "name": "Innlandet",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "34",
+ "type": "county",
+ "latitude": "61.19357870",
+ "longitude": "5.50832660"
+ },
+ {
+ "id": 1026,
+ "name": "Jan Mayen",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "22",
+ "type": "arctic region",
+ "latitude": "71.03181800",
+ "longitude": "-8.29203460"
+ },
+ {
+ "id": 1020,
+ "name": "Mรธre og Romsdal",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "15",
+ "type": "county",
+ "latitude": "62.84068330",
+ "longitude": "7.00714300"
+ },
+ {
+ "id": 1025,
+ "name": "Nordland",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "18",
+ "type": "county",
+ "latitude": "67.69305800",
+ "longitude": "12.70739360"
+ },
+ {
+ "id": 1007,
+ "name": "Oslo",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "03",
+ "type": "county",
+ "latitude": "59.91386880",
+ "longitude": "10.75224540"
+ },
+ {
+ "id": 1021,
+ "name": "Rogaland",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "11",
+ "type": "county",
+ "latitude": "59.14895440",
+ "longitude": "6.01434320"
+ },
+ {
+ "id": 1013,
+ "name": "Svalbard",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "21",
+ "type": "arctic region",
+ "latitude": "77.87497250",
+ "longitude": "20.97518210"
+ },
+ {
+ "id": 1015,
+ "name": "Troms og Finnmark",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "54",
+ "type": "county",
+ "latitude": "69.77890670",
+ "longitude": "18.99401840"
+ },
+ {
+ "id": 1006,
+ "name": "Trรธndelag",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "50",
+ "type": "county",
+ "latitude": "63.54201250",
+ "longitude": "10.93692670"
+ },
+ {
+ "id": 1024,
+ "name": "Vestfold og Telemark",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "38",
+ "type": "county",
+ "latitude": "59.41174820",
+ "longitude": "7.76471750"
+ },
+ {
+ "id": 1018,
+ "name": "Vestland",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "46",
+ "type": "county",
+ "latitude": "60.90694420",
+ "longitude": "3.96270810"
+ },
+ {
+ "id": 1011,
+ "name": "Viken",
+ "country_id": 165,
+ "country_code": "NO",
+ "country_name": "Norway",
+ "state_code": "30",
+ "type": "county",
+ "latitude": "59.96530050",
+ "longitude": "7.45051440"
+ },
+ {
+ "id": 3058,
+ "name": "Ad Dakhiliyah",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "DA",
+ "type": null,
+ "latitude": "22.85887580",
+ "longitude": "57.53943560"
+ },
+ {
+ "id": 3047,
+ "name": "Ad Dhahirah",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "ZA",
+ "type": null,
+ "latitude": "23.21616740",
+ "longitude": "56.49074440"
+ },
+ {
+ "id": 3048,
+ "name": "Al Batinah North",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "BS",
+ "type": null,
+ "latitude": "24.34198460",
+ "longitude": "56.72989040"
+ },
+ {
+ "id": 3050,
+ "name": "Al Batinah Region",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "24.34198460",
+ "longitude": "56.72989040"
+ },
+ {
+ "id": 3049,
+ "name": "Al Batinah South",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "BJ",
+ "type": null,
+ "latitude": "23.43149030",
+ "longitude": "57.42397960"
+ },
+ {
+ "id": 3059,
+ "name": "Al Buraimi",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "BU",
+ "type": null,
+ "latitude": "24.16714130",
+ "longitude": "56.11422530"
+ },
+ {
+ "id": 3056,
+ "name": "Al Wusta",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "WU",
+ "type": null,
+ "latitude": "19.95710780",
+ "longitude": "56.27568460"
+ },
+ {
+ "id": 3053,
+ "name": "Ash Sharqiyah North",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "SS",
+ "type": null,
+ "latitude": "22.71411960",
+ "longitude": "58.53080640"
+ },
+ {
+ "id": 3051,
+ "name": "Ash Sharqiyah Region",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "SH",
+ "type": null,
+ "latitude": "22.71411960",
+ "longitude": "58.53080640"
+ },
+ {
+ "id": 3054,
+ "name": "Ash Sharqiyah South",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "SJ",
+ "type": null,
+ "latitude": "22.01582490",
+ "longitude": "59.32519220"
+ },
+ {
+ "id": 3057,
+ "name": "Dhofar",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "ZU",
+ "type": null,
+ "latitude": "17.03221210",
+ "longitude": "54.14252140"
+ },
+ {
+ "id": 3052,
+ "name": "Musandam",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "MU",
+ "type": null,
+ "latitude": "26.19861440",
+ "longitude": "56.24609490"
+ },
+ {
+ "id": 3055,
+ "name": "Muscat",
+ "country_id": 166,
+ "country_code": "OM",
+ "country_name": "Oman",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "23.58803070",
+ "longitude": "58.38287170"
+ },
+ {
+ "id": 3172,
+ "name": "Azad Kashmir",
+ "country_id": 167,
+ "country_code": "PK",
+ "country_name": "Pakistan",
+ "state_code": "JK",
+ "type": null,
+ "latitude": "33.92590550",
+ "longitude": "73.78103340"
+ },
+ {
+ "id": 3174,
+ "name": "Balochistan",
+ "country_id": 167,
+ "country_code": "PK",
+ "country_name": "Pakistan",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "28.49073320",
+ "longitude": "65.09577920"
+ },
+ {
+ "id": 3173,
+ "name": "Federally Administered Tribal Areas",
+ "country_id": 167,
+ "country_code": "PK",
+ "country_name": "Pakistan",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "32.66747600",
+ "longitude": "69.85974060"
+ },
+ {
+ "id": 3170,
+ "name": "Gilgit-Baltistan",
+ "country_id": 167,
+ "country_code": "PK",
+ "country_name": "Pakistan",
+ "state_code": "GB",
+ "type": null,
+ "latitude": "35.80256670",
+ "longitude": "74.98318080"
+ },
+ {
+ "id": 3169,
+ "name": "Islamabad Capital Territory",
+ "country_id": 167,
+ "country_code": "PK",
+ "country_name": "Pakistan",
+ "state_code": "IS",
+ "type": null,
+ "latitude": "33.72049970",
+ "longitude": "73.04052770"
+ },
+ {
+ "id": 3171,
+ "name": "Khyber Pakhtunkhwa",
+ "country_id": 167,
+ "country_code": "PK",
+ "country_name": "Pakistan",
+ "state_code": "KP",
+ "type": null,
+ "latitude": "34.95262050",
+ "longitude": "72.33111300"
+ },
+ {
+ "id": 3176,
+ "name": "Punjab",
+ "country_id": 167,
+ "country_code": "PK",
+ "country_name": "Pakistan",
+ "state_code": "PB",
+ "type": null,
+ "latitude": "31.14713050",
+ "longitude": "75.34121790"
+ },
+ {
+ "id": 3175,
+ "name": "Sindh",
+ "country_id": 167,
+ "country_code": "PK",
+ "country_name": "Pakistan",
+ "state_code": "SD",
+ "type": null,
+ "latitude": "25.89430180",
+ "longitude": "68.52471490"
+ },
+ {
+ "id": 4540,
+ "name": "Aimeliik",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "002",
+ "type": null,
+ "latitude": "7.44558590",
+ "longitude": "134.50308780"
+ },
+ {
+ "id": 4528,
+ "name": "Airai",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "004",
+ "type": null,
+ "latitude": "7.39661180",
+ "longitude": "134.56902250"
+ },
+ {
+ "id": 4538,
+ "name": "Angaur",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "010",
+ "type": null,
+ "latitude": "6.90922300",
+ "longitude": "134.13879340"
+ },
+ {
+ "id": 4529,
+ "name": "Hatohobei",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "050",
+ "type": null,
+ "latitude": "3.00706580",
+ "longitude": "131.12377810"
+ },
+ {
+ "id": 4539,
+ "name": "Kayangel",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "100",
+ "type": null,
+ "latitude": "8.07000000",
+ "longitude": "134.70277800"
+ },
+ {
+ "id": 4532,
+ "name": "Koror",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "150",
+ "type": null,
+ "latitude": "7.33756460",
+ "longitude": "134.48894690"
+ },
+ {
+ "id": 4530,
+ "name": "Melekeok",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "212",
+ "type": null,
+ "latitude": "7.51502860",
+ "longitude": "134.59725180"
+ },
+ {
+ "id": 4537,
+ "name": "Ngaraard",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "214",
+ "type": null,
+ "latitude": "7.60794000",
+ "longitude": "134.63486450"
+ },
+ {
+ "id": 4533,
+ "name": "Ngarchelong",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "218",
+ "type": null,
+ "latitude": "7.71054690",
+ "longitude": "134.63016460"
+ },
+ {
+ "id": 4527,
+ "name": "Ngardmau",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "222",
+ "type": null,
+ "latitude": "7.58504860",
+ "longitude": "134.55960890"
+ },
+ {
+ "id": 4531,
+ "name": "Ngatpang",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "224",
+ "type": null,
+ "latitude": "7.47109940",
+ "longitude": "134.52664660"
+ },
+ {
+ "id": 4536,
+ "name": "Ngchesar",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "226",
+ "type": null,
+ "latitude": "7.45232800",
+ "longitude": "134.57843420"
+ },
+ {
+ "id": 4541,
+ "name": "Ngeremlengui",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "227",
+ "type": null,
+ "latitude": "7.51983970",
+ "longitude": "134.55960890"
+ },
+ {
+ "id": 4534,
+ "name": "Ngiwal",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "228",
+ "type": null,
+ "latitude": "7.56147640",
+ "longitude": "134.61606190"
+ },
+ {
+ "id": 4526,
+ "name": "Peleliu",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "350",
+ "type": null,
+ "latitude": "7.00229060",
+ "longitude": "134.24316280"
+ },
+ {
+ "id": 4535,
+ "name": "Sonsorol",
+ "country_id": 168,
+ "country_code": "PW",
+ "country_name": "Palau",
+ "state_code": "370",
+ "type": null,
+ "latitude": "5.32681190",
+ "longitude": "132.22391170"
+ },
+ {
+ "id": 5118,
+ "name": "Bethlehem",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "BTH",
+ "type": "governorate",
+ "latitude": "31.70539960",
+ "longitude": "35.19368770"
+ },
+ {
+ "id": 5119,
+ "name": "Deir El Balah",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "DEB",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5120,
+ "name": "Gaza",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "GZA",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5121,
+ "name": "Hebron",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "HBN",
+ "type": "governorate",
+ "latitude": "31.53260010",
+ "longitude": "35.06394750"
+ },
+ {
+ "id": 5122,
+ "name": "Jenin",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "JEN",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5123,
+ "name": "Jericho and Al Aghwar",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "JRH",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5124,
+ "name": "Jerusalem",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "JEM",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5125,
+ "name": "Khan Yunis",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "KYS",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5126,
+ "name": "Nablus",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "NBS",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5127,
+ "name": "North Gaza",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "NGZ",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5128,
+ "name": "Qalqilya",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "QQA",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5129,
+ "name": "Rafah",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "RFH",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5130,
+ "name": "Ramallah",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "RBH",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5131,
+ "name": "Salfit",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "SLT",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5132,
+ "name": "Tubas",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "TBS",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 5133,
+ "name": "Tulkarm",
+ "country_id": 169,
+ "country_code": "PS",
+ "country_name": "Palestinian Territory Occupied",
+ "state_code": "TKM",
+ "type": "governorate",
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 1393,
+ "name": "Bocas del Toro Province",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "1",
+ "type": null,
+ "latitude": "9.41655210",
+ "longitude": "-82.52077870"
+ },
+ {
+ "id": 1397,
+ "name": "Chiriquรญ Province",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "4",
+ "type": null,
+ "latitude": "8.58489800",
+ "longitude": "-82.38857830"
+ },
+ {
+ "id": 1387,
+ "name": "Coclรฉ Province",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "2",
+ "type": null,
+ "latitude": "8.62660680",
+ "longitude": "-80.36586500"
+ },
+ {
+ "id": 1386,
+ "name": "Colรณn Province",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "3",
+ "type": null,
+ "latitude": "9.18519890",
+ "longitude": "-80.05349230"
+ },
+ {
+ "id": 1385,
+ "name": "Dariรฉn Province",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "5",
+ "type": null,
+ "latitude": "7.86817130",
+ "longitude": "-77.83672820"
+ },
+ {
+ "id": 1396,
+ "name": "Emberรก-Wounaan Comarca",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "EM",
+ "type": null,
+ "latitude": "8.37669830",
+ "longitude": "-77.65361250"
+ },
+ {
+ "id": 1388,
+ "name": "Guna Yala",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "KY",
+ "type": null,
+ "latitude": "9.23443950",
+ "longitude": "-78.19262500"
+ },
+ {
+ "id": 1389,
+ "name": "Herrera Province",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "6",
+ "type": null,
+ "latitude": "7.77042820",
+ "longitude": "-80.72144170"
+ },
+ {
+ "id": 1390,
+ "name": "Los Santos Province",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "7",
+ "type": null,
+ "latitude": "7.59093020",
+ "longitude": "-80.36586500"
+ },
+ {
+ "id": 1391,
+ "name": "Ngรถbe-Buglรฉ Comarca",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "NB",
+ "type": null,
+ "latitude": "8.65958330",
+ "longitude": "-81.77870210"
+ },
+ {
+ "id": 1394,
+ "name": "Panamรก Oeste Province",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "10",
+ "type": null,
+ "latitude": "9.11967510",
+ "longitude": "-79.29021330"
+ },
+ {
+ "id": 1395,
+ "name": "Panamรก Province",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "8",
+ "type": null,
+ "latitude": "9.11967510",
+ "longitude": "-79.29021330"
+ },
+ {
+ "id": 1392,
+ "name": "Veraguas Province",
+ "country_id": 170,
+ "country_code": "PA",
+ "country_name": "Panama",
+ "state_code": "9",
+ "type": null,
+ "latitude": "8.12310330",
+ "longitude": "-81.07546570"
+ },
+ {
+ "id": 4831,
+ "name": "Bougainville",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "NSB",
+ "type": null,
+ "latitude": "-6.37539190",
+ "longitude": "155.38071010"
+ },
+ {
+ "id": 4847,
+ "name": "Central Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "CPM",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 4846,
+ "name": "Chimbu Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "CPK",
+ "type": null,
+ "latitude": "-6.30876820",
+ "longitude": "144.87312190"
+ },
+ {
+ "id": 4834,
+ "name": "East New Britain",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "EBR",
+ "type": null,
+ "latitude": "-4.61289430",
+ "longitude": "151.88773210"
+ },
+ {
+ "id": 4845,
+ "name": "Eastern Highlands Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "EHG",
+ "type": null,
+ "latitude": "-6.58616740",
+ "longitude": "145.66896360"
+ },
+ {
+ "id": 4848,
+ "name": "Enga Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "EPW",
+ "type": null,
+ "latitude": "-5.30058490",
+ "longitude": "143.56356370"
+ },
+ {
+ "id": 4839,
+ "name": "Gulf",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "GPK",
+ "type": null,
+ "latitude": "37.05483150",
+ "longitude": "-94.43704190"
+ },
+ {
+ "id": 4833,
+ "name": "Hela",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "HLA",
+ "type": null,
+ "latitude": "42.33295160",
+ "longitude": "-83.04826180"
+ },
+ {
+ "id": 4832,
+ "name": "Jiwaka Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "JWK",
+ "type": null,
+ "latitude": "-5.86911540",
+ "longitude": "144.69727740"
+ },
+ {
+ "id": 4843,
+ "name": "Madang Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "MPM",
+ "type": null,
+ "latitude": "-4.98497330",
+ "longitude": "145.13758340"
+ },
+ {
+ "id": 4842,
+ "name": "Manus Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "MRL",
+ "type": null,
+ "latitude": "-2.09411690",
+ "longitude": "146.87609510"
+ },
+ {
+ "id": 4849,
+ "name": "Milne Bay Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "MBA",
+ "type": null,
+ "latitude": "-9.52214510",
+ "longitude": "150.67496530"
+ },
+ {
+ "id": 4835,
+ "name": "Morobe Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "MPL",
+ "type": null,
+ "latitude": "-6.80137370",
+ "longitude": "146.56164700"
+ },
+ {
+ "id": 4841,
+ "name": "New Ireland Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "NIK",
+ "type": null,
+ "latitude": "-4.28532560",
+ "longitude": "152.92059180"
+ },
+ {
+ "id": 4838,
+ "name": "Oro Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "NPP",
+ "type": null,
+ "latitude": "-8.89880630",
+ "longitude": "148.18929210"
+ },
+ {
+ "id": 4837,
+ "name": "Port Moresby",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "NCD",
+ "type": null,
+ "latitude": "-9.44380040",
+ "longitude": "147.18026710"
+ },
+ {
+ "id": 4836,
+ "name": "Sandaun Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "SAN",
+ "type": null,
+ "latitude": "-3.71261790",
+ "longitude": "141.68342750"
+ },
+ {
+ "id": 4844,
+ "name": "Southern Highlands Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "SHM",
+ "type": null,
+ "latitude": "-6.41790830",
+ "longitude": "143.56356370"
+ },
+ {
+ "id": 4830,
+ "name": "West New Britain Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "WBK",
+ "type": null,
+ "latitude": "-5.70474320",
+ "longitude": "150.02594660"
+ },
+ {
+ "id": 4840,
+ "name": "Western Highlands Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "WHM",
+ "type": null,
+ "latitude": "-5.62681280",
+ "longitude": "144.25931180"
+ },
+ {
+ "id": 4850,
+ "name": "Western Province",
+ "country_id": 171,
+ "country_code": "PG",
+ "country_name": "Papua new Guinea",
+ "state_code": "WPD",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2785,
+ "name": "Alto Paraguay Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "16",
+ "type": null,
+ "latitude": "-20.08525080",
+ "longitude": "-59.47209040"
+ },
+ {
+ "id": 2784,
+ "name": "Alto Paranรก Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "10",
+ "type": null,
+ "latitude": "-25.60755460",
+ "longitude": "-54.96118360"
+ },
+ {
+ "id": 2782,
+ "name": "Amambay Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "13",
+ "type": null,
+ "latitude": "-22.55902720",
+ "longitude": "-56.02499820"
+ },
+ {
+ "id": 2780,
+ "name": "Boquerรณn Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "19",
+ "type": null,
+ "latitude": "-21.74492540",
+ "longitude": "-60.95400730"
+ },
+ {
+ "id": 2773,
+ "name": "Caaguazรบ",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "5",
+ "type": null,
+ "latitude": "-25.46458180",
+ "longitude": "-56.01385100"
+ },
+ {
+ "id": 2775,
+ "name": "Caazapรก",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "6",
+ "type": null,
+ "latitude": "-26.18277130",
+ "longitude": "-56.37123270"
+ },
+ {
+ "id": 2771,
+ "name": "Canindeyรบ",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "14",
+ "type": null,
+ "latitude": "-24.13787350",
+ "longitude": "-55.66896360"
+ },
+ {
+ "id": 2777,
+ "name": "Central Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "11",
+ "type": null,
+ "latitude": "36.15592290",
+ "longitude": "-95.96620750"
+ },
+ {
+ "id": 2779,
+ "name": "Concepciรณn Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "1",
+ "type": null,
+ "latitude": "-23.42142640",
+ "longitude": "-57.43444510"
+ },
+ {
+ "id": 2783,
+ "name": "Cordillera Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "3",
+ "type": null,
+ "latitude": "-25.22894910",
+ "longitude": "-57.01116810"
+ },
+ {
+ "id": 2772,
+ "name": "Guairรก Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "4",
+ "type": null,
+ "latitude": "-25.88109320",
+ "longitude": "-56.29293810"
+ },
+ {
+ "id": 2778,
+ "name": "Itapรบa",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "7",
+ "type": null,
+ "latitude": "-26.79236230",
+ "longitude": "-55.66896360"
+ },
+ {
+ "id": 2786,
+ "name": "Misiones Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "8",
+ "type": null,
+ "latitude": "-26.84335120",
+ "longitude": "-57.10131880"
+ },
+ {
+ "id": 2781,
+ "name": "รeembucรบ Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "12",
+ "type": null,
+ "latitude": "-27.02991140",
+ "longitude": "-57.82539500"
+ },
+ {
+ "id": 2774,
+ "name": "Paraguarรญ Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "9",
+ "type": null,
+ "latitude": "-25.62621740",
+ "longitude": "-57.15206420"
+ },
+ {
+ "id": 2770,
+ "name": "Presidente Hayes Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "15",
+ "type": null,
+ "latitude": "-23.35126050",
+ "longitude": "-58.73736340"
+ },
+ {
+ "id": 2776,
+ "name": "San Pedro Department",
+ "country_id": 172,
+ "country_code": "PY",
+ "country_name": "Paraguay",
+ "state_code": "2",
+ "type": null,
+ "latitude": "-24.19486680",
+ "longitude": "-56.56164700"
+ },
+ {
+ "id": 3685,
+ "name": "Amazonas",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "AMA",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3680,
+ "name": "รncash",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "ANC",
+ "type": null,
+ "latitude": "-9.32504970",
+ "longitude": "-77.56194190"
+ },
+ {
+ "id": 3699,
+ "name": "Apurรญmac",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "APU",
+ "type": null,
+ "latitude": "-14.05045330",
+ "longitude": "-73.08774900"
+ },
+ {
+ "id": 3681,
+ "name": "Arequipa",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "ARE",
+ "type": null,
+ "latitude": "-16.40904740",
+ "longitude": "-71.53745100"
+ },
+ {
+ "id": 3692,
+ "name": "Ayacucho",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "AYA",
+ "type": null,
+ "latitude": "-13.16387370",
+ "longitude": "-74.22356410"
+ },
+ {
+ "id": 3688,
+ "name": "Cajamarca",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "CAJ",
+ "type": null,
+ "latitude": "-7.16174650",
+ "longitude": "-78.51278550"
+ },
+ {
+ "id": 3701,
+ "name": "Callao",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "CAL",
+ "type": null,
+ "latitude": "-12.05084910",
+ "longitude": "-77.12598430"
+ },
+ {
+ "id": 3691,
+ "name": "Cusco",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "CUS",
+ "type": null,
+ "latitude": "-13.53195000",
+ "longitude": "-71.96746260"
+ },
+ {
+ "id": 3679,
+ "name": "Huancavelica",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "HUV",
+ "type": null,
+ "latitude": "-12.78619780",
+ "longitude": "-74.97640240"
+ },
+ {
+ "id": 3687,
+ "name": "Huanuco",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "HUC",
+ "type": null,
+ "latitude": "-9.92076480",
+ "longitude": "-76.24108430"
+ },
+ {
+ "id": 3700,
+ "name": "Ica",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "ICA",
+ "type": null,
+ "latitude": "42.35288320",
+ "longitude": "-71.04300970"
+ },
+ {
+ "id": 3693,
+ "name": "Junรญn",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "JUN",
+ "type": null,
+ "latitude": "-11.15819250",
+ "longitude": "-75.99263060"
+ },
+ {
+ "id": 3683,
+ "name": "La Libertad",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "LAL",
+ "type": null,
+ "latitude": "13.49069700",
+ "longitude": "-89.30846070"
+ },
+ {
+ "id": 3702,
+ "name": "Lambayeque",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "LAM",
+ "type": null,
+ "latitude": "-6.71976660",
+ "longitude": "-79.90807570"
+ },
+ {
+ "id": 3695,
+ "name": "Lima",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "LIM",
+ "type": null,
+ "latitude": "-12.04637310",
+ "longitude": "-77.04275400"
+ },
+ {
+ "id": 4922,
+ "name": "Loreto",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "LOR",
+ "type": null,
+ "latitude": "-4.37416430",
+ "longitude": "-76.13042640"
+ },
+ {
+ "id": 3678,
+ "name": "Madre de Dios",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "MDD",
+ "type": null,
+ "latitude": "-11.76687050",
+ "longitude": "-70.81199530"
+ },
+ {
+ "id": 3698,
+ "name": "Moquegua",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "MOQ",
+ "type": null,
+ "latitude": "-17.19273610",
+ "longitude": "-70.93281380"
+ },
+ {
+ "id": 3686,
+ "name": "Pasco",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "PAS",
+ "type": null,
+ "latitude": "46.23050490",
+ "longitude": "-119.09223160"
+ },
+ {
+ "id": 3697,
+ "name": "Piura",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "PIU",
+ "type": null,
+ "latitude": "-5.17828840",
+ "longitude": "-80.65488820"
+ },
+ {
+ "id": 3682,
+ "name": "Puno",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "PUN",
+ "type": null,
+ "latitude": "-15.84022180",
+ "longitude": "-70.02188050"
+ },
+ {
+ "id": 3694,
+ "name": "San Martรญn",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "SAM",
+ "type": null,
+ "latitude": "37.08494640",
+ "longitude": "-121.61022160"
+ },
+ {
+ "id": 3696,
+ "name": "Tacna",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "TAC",
+ "type": null,
+ "latitude": "-18.00656790",
+ "longitude": "-70.24627410"
+ },
+ {
+ "id": 3689,
+ "name": "Tumbes",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "TUM",
+ "type": null,
+ "latitude": "-3.55649210",
+ "longitude": "-80.42708850"
+ },
+ {
+ "id": 3684,
+ "name": "Ucayali",
+ "country_id": 173,
+ "country_code": "PE",
+ "country_name": "Peru",
+ "state_code": "UCA",
+ "type": null,
+ "latitude": "-9.82511830",
+ "longitude": "-73.08774900"
+ },
+ {
+ "id": 1324,
+ "name": "Abra",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ABR",
+ "type": "province",
+ "latitude": "42.49708300",
+ "longitude": "-96.38441000"
+ },
+ {
+ "id": 1323,
+ "name": "Agusan del Norte",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "AGN",
+ "type": "province",
+ "latitude": "8.94562590",
+ "longitude": "125.53192340"
+ },
+ {
+ "id": 1326,
+ "name": "Agusan del Sur",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "AGS",
+ "type": "province",
+ "latitude": "8.04638880",
+ "longitude": "126.06153840"
+ },
+ {
+ "id": 1331,
+ "name": "Aklan",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "AKL",
+ "type": "province",
+ "latitude": "11.81661090",
+ "longitude": "122.09415410"
+ },
+ {
+ "id": 1337,
+ "name": "Albay",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ALB",
+ "type": "province",
+ "latitude": "13.17748270",
+ "longitude": "123.52800720"
+ },
+ {
+ "id": 1336,
+ "name": "Antique",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ANT",
+ "type": "province",
+ "latitude": "37.03586950",
+ "longitude": "-95.63616940"
+ },
+ {
+ "id": 1334,
+ "name": "Apayao",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "APA",
+ "type": "province",
+ "latitude": "18.01203040",
+ "longitude": "121.17103890"
+ },
+ {
+ "id": 1341,
+ "name": "Aurora",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "AUR",
+ "type": "province",
+ "latitude": "36.97089100",
+ "longitude": "-93.71797900"
+ },
+ {
+ "id": 1316,
+ "name": "Autonomous Region in Muslim Mindanao",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "14",
+ "type": "region",
+ "latitude": "6.95683130",
+ "longitude": "124.24215970"
+ },
+ {
+ "id": 1346,
+ "name": "Basilan",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "BAS",
+ "type": "province",
+ "latitude": "6.42963490",
+ "longitude": "121.98701650"
+ },
+ {
+ "id": 1344,
+ "name": "Bataan",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "BAN",
+ "type": "province",
+ "latitude": "14.64168420",
+ "longitude": "120.48184460"
+ },
+ {
+ "id": 1352,
+ "name": "Batanes",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "BTN",
+ "type": "province",
+ "latitude": "20.44850740",
+ "longitude": "121.97081290"
+ },
+ {
+ "id": 1359,
+ "name": "Batangas",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "BTG",
+ "type": "province",
+ "latitude": "13.75646510",
+ "longitude": "121.05830760"
+ },
+ {
+ "id": 1363,
+ "name": "Benguet",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "BEN",
+ "type": "province",
+ "latitude": "16.55772570",
+ "longitude": "120.80394740"
+ },
+ {
+ "id": 1304,
+ "name": "Bicol",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "05",
+ "type": "region",
+ "latitude": "13.42098850",
+ "longitude": "123.41367360"
+ },
+ {
+ "id": 1274,
+ "name": "Biliran",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "BIL",
+ "type": "province",
+ "latitude": "11.58331520",
+ "longitude": "124.46418480"
+ },
+ {
+ "id": 1272,
+ "name": "Bohol",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "BOH",
+ "type": "province",
+ "latitude": "9.84999110",
+ "longitude": "124.14354270"
+ },
+ {
+ "id": 1270,
+ "name": "Bukidnon",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "BUK",
+ "type": "province",
+ "latitude": "8.05150540",
+ "longitude": "124.92299460"
+ },
+ {
+ "id": 1278,
+ "name": "Bulacan",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "BUL",
+ "type": "province",
+ "latitude": "14.79427350",
+ "longitude": "120.87990080"
+ },
+ {
+ "id": 1279,
+ "name": "Cagayan",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "CAG",
+ "type": "province",
+ "latitude": "18.24896290",
+ "longitude": "121.87878330"
+ },
+ {
+ "id": 1342,
+ "name": "Cagayan Valley",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "02",
+ "type": "region",
+ "latitude": "16.97537580",
+ "longitude": "121.81070790"
+ },
+ {
+ "id": 1294,
+ "name": "Calabarzon",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "40",
+ "type": "region",
+ "latitude": "14.10078030",
+ "longitude": "121.07937050"
+ },
+ {
+ "id": 1283,
+ "name": "Camarines Norte",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "CAN",
+ "type": "province",
+ "latitude": "14.13902650",
+ "longitude": "122.76330360"
+ },
+ {
+ "id": 1287,
+ "name": "Camarines Sur",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "CAS",
+ "type": "province",
+ "latitude": "13.52501970",
+ "longitude": "123.34861470"
+ },
+ {
+ "id": 1285,
+ "name": "Camiguin",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "CAM",
+ "type": "province",
+ "latitude": "9.17321640",
+ "longitude": "124.72987650"
+ },
+ {
+ "id": 1292,
+ "name": "Capiz",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "CAP",
+ "type": "province",
+ "latitude": "11.55288160",
+ "longitude": "122.74072300"
+ },
+ {
+ "id": 1314,
+ "name": "Caraga",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "13",
+ "type": "region",
+ "latitude": "8.80145620",
+ "longitude": "125.74068820"
+ },
+ {
+ "id": 1301,
+ "name": "Catanduanes",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "CAT",
+ "type": "province",
+ "latitude": "13.70886840",
+ "longitude": "124.24215970"
+ },
+ {
+ "id": 1307,
+ "name": "Cavite",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "CAV",
+ "type": "province",
+ "latitude": "14.47912970",
+ "longitude": "120.89696340"
+ },
+ {
+ "id": 1306,
+ "name": "Cebu",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "CEB",
+ "type": "province",
+ "latitude": "10.31569920",
+ "longitude": "123.88543660"
+ },
+ {
+ "id": 1345,
+ "name": "Central Luzon",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "03",
+ "type": "region",
+ "latitude": "15.48277220",
+ "longitude": "120.71200230"
+ },
+ {
+ "id": 1308,
+ "name": "Central Visayas",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "07",
+ "type": "region",
+ "latitude": "9.81687500",
+ "longitude": "124.06414190"
+ },
+ {
+ "id": 1311,
+ "name": "Compostela Valley",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "COM",
+ "type": "province",
+ "latitude": "7.51251500",
+ "longitude": "126.17626150"
+ },
+ {
+ "id": 1335,
+ "name": "Cordillera Administrative",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "15",
+ "type": "region",
+ "latitude": "17.35125420",
+ "longitude": "121.17188510"
+ },
+ {
+ "id": 1320,
+ "name": "Cotabato",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "NCO",
+ "type": "province",
+ "latitude": "7.20466680",
+ "longitude": "124.23104390"
+ },
+ {
+ "id": 1340,
+ "name": "Davao",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "11",
+ "type": "region",
+ "latitude": "7.30416220",
+ "longitude": "126.08934060"
+ },
+ {
+ "id": 1319,
+ "name": "Davao del Norte",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "DAV",
+ "type": "province",
+ "latitude": "7.56176990",
+ "longitude": "125.65328480"
+ },
+ {
+ "id": 1318,
+ "name": "Davao del Sur",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "DAS",
+ "type": "province",
+ "latitude": "6.76626870",
+ "longitude": "125.32842690"
+ },
+ {
+ "id": 1309,
+ "name": "Davao Occidental",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "DVO",
+ "type": "province",
+ "latitude": "6.09413960",
+ "longitude": "125.60954740"
+ },
+ {
+ "id": 1289,
+ "name": "Davao Oriental",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "DAO",
+ "type": "province",
+ "latitude": "7.31715850",
+ "longitude": "126.54198870"
+ },
+ {
+ "id": 1291,
+ "name": "Dinagat Islands",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "DIN",
+ "type": "province",
+ "latitude": "10.12818160",
+ "longitude": "125.60954740"
+ },
+ {
+ "id": 1290,
+ "name": "Eastern Samar",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "EAS",
+ "type": "province",
+ "latitude": "11.50007310",
+ "longitude": "125.49999080"
+ },
+ {
+ "id": 1322,
+ "name": "Eastern Visayas",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "08",
+ "type": "region",
+ "latitude": "12.24455330",
+ "longitude": "125.03881640"
+ },
+ {
+ "id": 1303,
+ "name": "Guimaras",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "GUI",
+ "type": "province",
+ "latitude": "10.59286610",
+ "longitude": "122.63250810"
+ },
+ {
+ "id": 1300,
+ "name": "Ifugao",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "IFU",
+ "type": "province",
+ "latitude": "16.83307920",
+ "longitude": "121.17103890"
+ },
+ {
+ "id": 1355,
+ "name": "Ilocos",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "01",
+ "type": "region",
+ "latitude": "16.08321440",
+ "longitude": "120.61998950"
+ },
+ {
+ "id": 1298,
+ "name": "Ilocos Norte",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ILN",
+ "type": "province",
+ "latitude": "18.16472810",
+ "longitude": "120.71155920"
+ },
+ {
+ "id": 1321,
+ "name": "Ilocos Sur",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ILS",
+ "type": "province",
+ "latitude": "17.22786640",
+ "longitude": "120.57395790"
+ },
+ {
+ "id": 1315,
+ "name": "Iloilo",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ILI",
+ "type": "province",
+ "latitude": "10.72015010",
+ "longitude": "122.56210630"
+ },
+ {
+ "id": 1313,
+ "name": "Isabela",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ISA",
+ "type": "province",
+ "latitude": "18.50077590",
+ "longitude": "-67.02434620"
+ },
+ {
+ "id": 1312,
+ "name": "Kalinga",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "KAL",
+ "type": "province",
+ "latitude": "17.47404220",
+ "longitude": "121.35416310"
+ },
+ {
+ "id": 1317,
+ "name": "La Union",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "LUN",
+ "type": "province",
+ "latitude": "38.87668780",
+ "longitude": "-77.12809120"
+ },
+ {
+ "id": 1328,
+ "name": "Laguna",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "LAG",
+ "type": "province",
+ "latitude": "33.54271890",
+ "longitude": "-117.78535680"
+ },
+ {
+ "id": 1327,
+ "name": "Lanao del Norte",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "LAN",
+ "type": "province",
+ "latitude": "7.87218110",
+ "longitude": "123.88577470"
+ },
+ {
+ "id": 1333,
+ "name": "Lanao del Sur",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "LAS",
+ "type": "province",
+ "latitude": "7.82317600",
+ "longitude": "124.41982430"
+ },
+ {
+ "id": 1332,
+ "name": "Leyte",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "LEY",
+ "type": "province",
+ "latitude": "10.86245360",
+ "longitude": "124.88111950"
+ },
+ {
+ "id": 1330,
+ "name": "Maguindanao",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "MAG",
+ "type": "province",
+ "latitude": "6.94225810",
+ "longitude": "124.41982430"
+ },
+ {
+ "id": 1329,
+ "name": "Marinduque",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "MAD",
+ "type": "province",
+ "latitude": "13.47671710",
+ "longitude": "121.90321920"
+ },
+ {
+ "id": 1338,
+ "name": "Masbate",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "MAS",
+ "type": "province",
+ "latitude": "12.35743460",
+ "longitude": "123.55040760"
+ },
+ {
+ "id": 1347,
+ "name": "Metro Manila",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "NCR",
+ "type": "province",
+ "latitude": "14.60905370",
+ "longitude": "121.02225650"
+ },
+ {
+ "id": 1299,
+ "name": "Mimaropa",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "41",
+ "type": "region",
+ "latitude": "9.84320650",
+ "longitude": "118.73647830"
+ },
+ {
+ "id": 1343,
+ "name": "Misamis Occidental",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "MSC",
+ "type": "province",
+ "latitude": "8.33749030",
+ "longitude": "123.70706190"
+ },
+ {
+ "id": 1348,
+ "name": "Misamis Oriental",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "MSR",
+ "type": "province",
+ "latitude": "8.50455580",
+ "longitude": "124.62195920"
+ },
+ {
+ "id": 1353,
+ "name": "Mountain Province",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "MOU",
+ "type": "province",
+ "latitude": "40.70754370",
+ "longitude": "-73.95010330"
+ },
+ {
+ "id": 1351,
+ "name": "Negros Occidental",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "NEC",
+ "type": "province",
+ "latitude": "10.29256090",
+ "longitude": "123.02465180"
+ },
+ {
+ "id": 1350,
+ "name": "Negros Oriental",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "NER",
+ "type": "province",
+ "latitude": "9.62820830",
+ "longitude": "122.98883190"
+ },
+ {
+ "id": 1339,
+ "name": "Northern Mindanao",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "10",
+ "type": "region",
+ "latitude": "8.02016350",
+ "longitude": "124.68565090"
+ },
+ {
+ "id": 1349,
+ "name": "Northern Samar",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "NSA",
+ "type": "province",
+ "latitude": "12.36131990",
+ "longitude": "124.77407930"
+ },
+ {
+ "id": 1360,
+ "name": "Nueva Ecija",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "NUE",
+ "type": "province",
+ "latitude": "15.57837500",
+ "longitude": "121.11126150"
+ },
+ {
+ "id": 1358,
+ "name": "Nueva Vizcaya",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "NUV",
+ "type": "province",
+ "latitude": "16.33011070",
+ "longitude": "121.17103890"
+ },
+ {
+ "id": 1356,
+ "name": "Occidental Mindoro",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "MDC",
+ "type": "province",
+ "latitude": "13.10241110",
+ "longitude": "120.76512840"
+ },
+ {
+ "id": 1354,
+ "name": "Oriental Mindoro",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "MDR",
+ "type": "province",
+ "latitude": "13.05645980",
+ "longitude": "121.40694170"
+ },
+ {
+ "id": 1361,
+ "name": "Palawan",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "PLW",
+ "type": "province",
+ "latitude": "9.83494930",
+ "longitude": "118.73836150"
+ },
+ {
+ "id": 1365,
+ "name": "Pampanga",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "PAM",
+ "type": "province",
+ "latitude": "15.07940900",
+ "longitude": "120.61998950"
+ },
+ {
+ "id": 1364,
+ "name": "Pangasinan",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "PAN",
+ "type": "province",
+ "latitude": "15.89490550",
+ "longitude": "120.28631830"
+ },
+ {
+ "id": 1275,
+ "name": "Quezon",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "QUE",
+ "type": "province",
+ "latitude": "14.03139060",
+ "longitude": "122.11309090"
+ },
+ {
+ "id": 1273,
+ "name": "Quirino",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "QUI",
+ "type": "province",
+ "latitude": "16.27004240",
+ "longitude": "121.53700030"
+ },
+ {
+ "id": 1271,
+ "name": "Rizal",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "RIZ",
+ "type": "province",
+ "latitude": "14.60374460",
+ "longitude": "121.30840880"
+ },
+ {
+ "id": 1269,
+ "name": "Romblon",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ROM",
+ "type": "province",
+ "latitude": "12.57780160",
+ "longitude": "122.26914600"
+ },
+ {
+ "id": 1277,
+ "name": "Sarangani",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "SAR",
+ "type": "province",
+ "latitude": "5.92671750",
+ "longitude": "124.99475100"
+ },
+ {
+ "id": 1276,
+ "name": "Siquijor",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "SIG",
+ "type": "province",
+ "latitude": "9.19987790",
+ "longitude": "123.59519250"
+ },
+ {
+ "id": 1310,
+ "name": "Soccsksargen",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "12",
+ "type": "region",
+ "latitude": "6.27069180",
+ "longitude": "124.68565090"
+ },
+ {
+ "id": 1281,
+ "name": "Sorsogon",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "SOR",
+ "type": "province",
+ "latitude": "12.99270950",
+ "longitude": "124.01474640"
+ },
+ {
+ "id": 1280,
+ "name": "South Cotabato",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "SCO",
+ "type": "province",
+ "latitude": "6.33575650",
+ "longitude": "124.77407930"
+ },
+ {
+ "id": 1284,
+ "name": "Southern Leyte",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "SLE",
+ "type": "province",
+ "latitude": "10.33462060",
+ "longitude": "125.17087410"
+ },
+ {
+ "id": 1282,
+ "name": "Sultan Kudarat",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "SUK",
+ "type": "province",
+ "latitude": "6.50694010",
+ "longitude": "124.41982430"
+ },
+ {
+ "id": 1288,
+ "name": "Sulu",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "SLU",
+ "type": "province",
+ "latitude": "5.97490110",
+ "longitude": "121.03351000"
+ },
+ {
+ "id": 1286,
+ "name": "Surigao del Norte",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "SUN",
+ "type": "province",
+ "latitude": "9.51482800",
+ "longitude": "125.69699840"
+ },
+ {
+ "id": 1296,
+ "name": "Surigao del Sur",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "SUR",
+ "type": "province",
+ "latitude": "8.54049060",
+ "longitude": "126.11447580"
+ },
+ {
+ "id": 1295,
+ "name": "Tarlac",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "TAR",
+ "type": "province",
+ "latitude": "15.47547860",
+ "longitude": "120.59634920"
+ },
+ {
+ "id": 1293,
+ "name": "Tawi-Tawi",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "TAW",
+ "type": "province",
+ "latitude": "5.13381100",
+ "longitude": "119.95092600"
+ },
+ {
+ "id": 5115,
+ "name": "Western Samar",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "WSA",
+ "type": "province",
+ "latitude": "12.00002060",
+ "longitude": "124.99124520"
+ },
+ {
+ "id": 1305,
+ "name": "Western Visayas",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "06",
+ "type": "region",
+ "latitude": "11.00498360",
+ "longitude": "122.53727410"
+ },
+ {
+ "id": 1297,
+ "name": "Zambales",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ZMB",
+ "type": "province",
+ "latitude": "15.50817660",
+ "longitude": "119.96978080"
+ },
+ {
+ "id": 1302,
+ "name": "Zamboanga del Norte",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ZAN",
+ "type": "province",
+ "latitude": "8.38862820",
+ "longitude": "123.16888830"
+ },
+ {
+ "id": 1357,
+ "name": "Zamboanga del Sur",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ZAS",
+ "type": "province",
+ "latitude": "7.83830540",
+ "longitude": "123.29666570"
+ },
+ {
+ "id": 1325,
+ "name": "Zamboanga Peninsula",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "09",
+ "type": "region",
+ "latitude": "8.15407700",
+ "longitude": "123.25879300"
+ },
+ {
+ "id": 1362,
+ "name": "Zamboanga Sibugay",
+ "country_id": 174,
+ "country_code": "PH",
+ "country_name": "Philippines",
+ "state_code": "ZSI",
+ "type": "province",
+ "latitude": "7.52252470",
+ "longitude": "122.31075170"
+ },
+ {
+ "id": 1634,
+ "name": "Greater Poland Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "WP",
+ "type": null,
+ "latitude": "52.27998600",
+ "longitude": "17.35229390"
+ },
+ {
+ "id": 1625,
+ "name": "Kuyavian-Pomeranian Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "KP",
+ "type": null,
+ "latitude": "53.16483630",
+ "longitude": "18.48342240"
+ },
+ {
+ "id": 1635,
+ "name": "Lesser Poland Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "49.72253060",
+ "longitude": "20.25033580"
+ },
+ {
+ "id": 1629,
+ "name": "Lower Silesian Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "DS",
+ "type": null,
+ "latitude": "51.13398610",
+ "longitude": "16.88419610"
+ },
+ {
+ "id": 1638,
+ "name": "Lublin Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "LU",
+ "type": null,
+ "latitude": "51.24935190",
+ "longitude": "23.10113920"
+ },
+ {
+ "id": 1631,
+ "name": "Lubusz Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "LB",
+ "type": null,
+ "latitude": "52.22746120",
+ "longitude": "15.25591030"
+ },
+ {
+ "id": 1636,
+ "name": "ลรณdลบ Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "LD",
+ "type": null,
+ "latitude": "51.46347710",
+ "longitude": "19.17269740"
+ },
+ {
+ "id": 1637,
+ "name": "Masovian Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "MZ",
+ "type": null,
+ "latitude": "51.89271820",
+ "longitude": "21.00216790"
+ },
+ {
+ "id": 1622,
+ "name": "Opole Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "OP",
+ "type": null,
+ "latitude": "50.80037610",
+ "longitude": "17.93798900"
+ },
+ {
+ "id": 1626,
+ "name": "Podkarpackie Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "PK",
+ "type": null,
+ "latitude": "50.05747490",
+ "longitude": "22.08956910"
+ },
+ {
+ "id": 1632,
+ "name": "Podlaskie Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "PD",
+ "type": null,
+ "latitude": "53.06971590",
+ "longitude": "22.96746390"
+ },
+ {
+ "id": 1624,
+ "name": "Pomeranian Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "PM",
+ "type": null,
+ "latitude": "54.29442520",
+ "longitude": "18.15311640"
+ },
+ {
+ "id": 1623,
+ "name": "Silesian Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "SL",
+ "type": null,
+ "latitude": "50.57165950",
+ "longitude": "19.32197680"
+ },
+ {
+ "id": 1630,
+ "name": "ลwiฤtokrzyskie Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "SK",
+ "type": null,
+ "latitude": "50.62610410",
+ "longitude": "20.94062790"
+ },
+ {
+ "id": 1628,
+ "name": "Warmian-Masurian Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "WN",
+ "type": null,
+ "latitude": "53.86711170",
+ "longitude": "20.70278610"
+ },
+ {
+ "id": 1633,
+ "name": "West Pomeranian Voivodeship",
+ "country_id": 176,
+ "country_code": "PL",
+ "country_name": "Poland",
+ "state_code": "ZP",
+ "type": null,
+ "latitude": "53.46578910",
+ "longitude": "15.18225810"
+ },
+ {
+ "id": 2233,
+ "name": "Aรงores",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "20",
+ "type": null,
+ "latitude": "37.74124880",
+ "longitude": "-25.67559440"
+ },
+ {
+ "id": 2235,
+ "name": "Aveiro",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "01",
+ "type": null,
+ "latitude": "40.72090230",
+ "longitude": "-8.57210160"
+ },
+ {
+ "id": 2230,
+ "name": "Beja",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "02",
+ "type": null,
+ "latitude": "37.96877860",
+ "longitude": "-7.87216000"
+ },
+ {
+ "id": 2244,
+ "name": "Braga",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "03",
+ "type": null,
+ "latitude": "41.55038800",
+ "longitude": "-8.42613010"
+ },
+ {
+ "id": 2229,
+ "name": "Braganรงa",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "04",
+ "type": null,
+ "latitude": "41.80616520",
+ "longitude": "-6.75674270"
+ },
+ {
+ "id": 2241,
+ "name": "Castelo Branco",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "05",
+ "type": null,
+ "latitude": "39.86313230",
+ "longitude": "-7.48141630"
+ },
+ {
+ "id": 2246,
+ "name": "Coimbra",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "06",
+ "type": null,
+ "latitude": "40.20579940",
+ "longitude": "-8.41369000"
+ },
+ {
+ "id": 2236,
+ "name": "รvora",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "07",
+ "type": null,
+ "latitude": "38.57444680",
+ "longitude": "-7.90765530"
+ },
+ {
+ "id": 2239,
+ "name": "Faro",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "08",
+ "type": null,
+ "latitude": "37.01935480",
+ "longitude": "-7.93043970"
+ },
+ {
+ "id": 4859,
+ "name": "Guarda",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "09",
+ "type": null,
+ "latitude": "40.53859720",
+ "longitude": "-7.26757720"
+ },
+ {
+ "id": 2240,
+ "name": "Leiria",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "10",
+ "type": null,
+ "latitude": "39.77095320",
+ "longitude": "-8.79218360"
+ },
+ {
+ "id": 2228,
+ "name": "Lisbon",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "11",
+ "type": null,
+ "latitude": "38.72232630",
+ "longitude": "-9.13927140"
+ },
+ {
+ "id": 2231,
+ "name": "Madeira",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "30",
+ "type": null,
+ "latitude": "32.76070740",
+ "longitude": "-16.95947230"
+ },
+ {
+ "id": 2232,
+ "name": "Portalegre",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "12",
+ "type": null,
+ "latitude": "39.29670860",
+ "longitude": "-7.42847550"
+ },
+ {
+ "id": 2243,
+ "name": "Porto",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "13",
+ "type": null,
+ "latitude": "41.14766290",
+ "longitude": "-8.60789730"
+ },
+ {
+ "id": 2238,
+ "name": "Santarรฉm",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "14",
+ "type": null,
+ "latitude": "39.23666870",
+ "longitude": "-8.68599440"
+ },
+ {
+ "id": 2242,
+ "name": "Setรบbal",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "15",
+ "type": null,
+ "latitude": "38.52409330",
+ "longitude": "-8.89258760"
+ },
+ {
+ "id": 2245,
+ "name": "Viana do Castelo",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "16",
+ "type": null,
+ "latitude": "41.69180460",
+ "longitude": "-8.83445100"
+ },
+ {
+ "id": 2234,
+ "name": "Vila Real",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "17",
+ "type": null,
+ "latitude": "41.30035270",
+ "longitude": "-7.74572740"
+ },
+ {
+ "id": 2237,
+ "name": "Viseu",
+ "country_id": 177,
+ "country_code": "PT",
+ "country_name": "Portugal",
+ "state_code": "18",
+ "type": null,
+ "latitude": "40.65884240",
+ "longitude": "-7.91475600"
+ },
+ {
+ "id": 5134,
+ "name": "Adjuntas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "001",
+ "type": "municipalities",
+ "latitude": "18.16348480",
+ "longitude": "-66.72315800"
+ },
+ {
+ "id": 5135,
+ "name": "Aguada",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "003",
+ "type": "municipalities",
+ "latitude": "18.38015790",
+ "longitude": "-67.18870400"
+ },
+ {
+ "id": 5136,
+ "name": "Aguadilla",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "005",
+ "type": "municipalities",
+ "latitude": "18.42744540",
+ "longitude": "-67.15406980"
+ },
+ {
+ "id": 5137,
+ "name": "Aguas Buenas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "007",
+ "type": "municipalities",
+ "latitude": "18.25689890",
+ "longitude": "-66.10294420"
+ },
+ {
+ "id": 5138,
+ "name": "Aibonito",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "009",
+ "type": "municipalities",
+ "latitude": "18.13995940",
+ "longitude": "-66.26600160"
+ },
+ {
+ "id": 5139,
+ "name": "Aรฑasco",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "011",
+ "type": "municipalities",
+ "latitude": "18.28544760",
+ "longitude": "-67.14029350"
+ },
+ {
+ "id": 5140,
+ "name": "Arecibo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "013",
+ "type": "municipalities",
+ "latitude": "18.47051370",
+ "longitude": "-66.72184720"
+ },
+ {
+ "id": 5081,
+ "name": "Arecibo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "AR",
+ "type": "region",
+ "latitude": "18.47055556",
+ "longitude": "-66.72083333"
+ },
+ {
+ "id": 5141,
+ "name": "Arroyo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "015",
+ "type": "municipalities",
+ "latitude": "17.99642200",
+ "longitude": "-66.09248790"
+ },
+ {
+ "id": 5142,
+ "name": "Barceloneta",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "017",
+ "type": "municipalities",
+ "latitude": "41.38010610",
+ "longitude": "2.18969570"
+ },
+ {
+ "id": 5143,
+ "name": "Barranquitas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "019",
+ "type": "municipalities",
+ "latitude": "18.18662420",
+ "longitude": "-66.30628020"
+ },
+ {
+ "id": 5076,
+ "name": "Bayamon",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "BY",
+ "type": "region",
+ "latitude": "18.17777778",
+ "longitude": "-66.11333333"
+ },
+ {
+ "id": 5144,
+ "name": "Bayamรณn",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "021",
+ "type": "municipalities",
+ "latitude": "18.38939600",
+ "longitude": "-66.16532240"
+ },
+ {
+ "id": 5145,
+ "name": "Cabo Rojo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "023",
+ "type": "municipalities",
+ "latitude": "18.08662650",
+ "longitude": "-67.14573470"
+ },
+ {
+ "id": 5079,
+ "name": "Caguas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "CG",
+ "type": "region",
+ "latitude": "18.23333333",
+ "longitude": "-66.03333333"
+ },
+ {
+ "id": 5146,
+ "name": "Caguas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "025",
+ "type": "municipalities",
+ "latitude": "18.23879950",
+ "longitude": "-66.03524900"
+ },
+ {
+ "id": 5147,
+ "name": "Camuy",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "027",
+ "type": "municipalities",
+ "latitude": "18.48383300",
+ "longitude": "-66.84489940"
+ },
+ {
+ "id": 5148,
+ "name": "Canรณvanas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "029",
+ "type": "municipalities",
+ "latitude": "18.37487480",
+ "longitude": "-65.89975330"
+ },
+ {
+ "id": 5077,
+ "name": "Carolina",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "CL",
+ "type": "region",
+ "latitude": "18.38888889",
+ "longitude": "-65.96666667"
+ },
+ {
+ "id": 5149,
+ "name": "Carolina",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "031",
+ "type": "municipalities",
+ "latitude": "18.36808770",
+ "longitude": "-66.04247340"
+ },
+ {
+ "id": 5150,
+ "name": "Cataรฑo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "033",
+ "type": "municipalities",
+ "latitude": "18.44653550",
+ "longitude": "-66.13557750"
+ },
+ {
+ "id": 5151,
+ "name": "Cayey",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "035",
+ "type": "municipalities",
+ "latitude": "18.11190510",
+ "longitude": "-66.16600000"
+ },
+ {
+ "id": 5152,
+ "name": "Ceiba",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "037",
+ "type": "municipalities",
+ "latitude": "18.24751770",
+ "longitude": "-65.90849530"
+ },
+ {
+ "id": 5153,
+ "name": "Ciales",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "039",
+ "type": "municipalities",
+ "latitude": "18.33606220",
+ "longitude": "-66.46878230"
+ },
+ {
+ "id": 5154,
+ "name": "Cidra",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "041",
+ "type": "municipalities",
+ "latitude": "18.17579140",
+ "longitude": "-66.16127790"
+ },
+ {
+ "id": 5155,
+ "name": "Coamo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "043",
+ "type": "municipalities",
+ "latitude": "18.07996160",
+ "longitude": "-66.35794730"
+ },
+ {
+ "id": 5156,
+ "name": "Comerรญo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "045",
+ "type": "municipalities",
+ "latitude": "18.21920010",
+ "longitude": "-66.22560220"
+ },
+ {
+ "id": 5157,
+ "name": "Corozal",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "047",
+ "type": "municipalities",
+ "latitude": "18.40308020",
+ "longitude": "-88.39675360"
+ },
+ {
+ "id": 5158,
+ "name": "Culebra",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "049",
+ "type": "municipalities",
+ "latitude": "18.31039400",
+ "longitude": "-65.30307050"
+ },
+ {
+ "id": 5159,
+ "name": "Dorado",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "051",
+ "type": "municipalities",
+ "latitude": "43.14805560",
+ "longitude": "-77.57722220"
+ },
+ {
+ "id": 5160,
+ "name": "Fajardo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "053",
+ "type": "municipalities",
+ "latitude": "18.32521480",
+ "longitude": "-65.65393560"
+ },
+ {
+ "id": 5161,
+ "name": "Florida",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "054",
+ "type": "municipalities",
+ "latitude": "27.66482740",
+ "longitude": "-81.51575350"
+ },
+ {
+ "id": 5162,
+ "name": "Guรกnica",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "055",
+ "type": "municipalities",
+ "latitude": "17.97251450",
+ "longitude": "-66.90862640"
+ },
+ {
+ "id": 5163,
+ "name": "Guayama",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "057",
+ "type": "municipalities",
+ "latitude": "17.98413280",
+ "longitude": "-66.11377670"
+ },
+ {
+ "id": 5164,
+ "name": "Guayanilla",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "059",
+ "type": "municipalities",
+ "latitude": "18.01913140",
+ "longitude": "-66.79184200"
+ },
+ {
+ "id": 5080,
+ "name": "Guaynabo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "GN",
+ "type": "region",
+ "latitude": "18.36666667",
+ "longitude": "-66.10000000"
+ },
+ {
+ "id": 5165,
+ "name": "Guaynabo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "061",
+ "type": "municipalities",
+ "latitude": "18.36129540",
+ "longitude": "-66.11029570"
+ },
+ {
+ "id": 5166,
+ "name": "Gurabo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "063",
+ "type": "municipalities",
+ "latitude": "18.25439870",
+ "longitude": "-65.97294210"
+ },
+ {
+ "id": 5167,
+ "name": "Hatillo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "065",
+ "type": "municipalities",
+ "latitude": "18.42846420",
+ "longitude": "-66.78753210"
+ },
+ {
+ "id": 5168,
+ "name": "Hormigueros",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "067",
+ "type": "municipalities",
+ "latitude": "18.13346380",
+ "longitude": "-67.11281230"
+ },
+ {
+ "id": 5169,
+ "name": "Humacao",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "069",
+ "type": "municipalities",
+ "latitude": "18.15157360",
+ "longitude": "-65.82485290"
+ },
+ {
+ "id": 5170,
+ "name": "Isabela",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "071",
+ "type": "municipalities",
+ "latitude": "16.97537580",
+ "longitude": "121.81070790"
+ },
+ {
+ "id": 5171,
+ "name": "Jayuya",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "073",
+ "type": "municipalities",
+ "latitude": "18.21856740",
+ "longitude": "-66.59156170"
+ },
+ {
+ "id": 5172,
+ "name": "Juana Dรญaz",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "075",
+ "type": "municipalities",
+ "latitude": "18.05343720",
+ "longitude": "-66.50750790"
+ },
+ {
+ "id": 5173,
+ "name": "Juncos",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "077",
+ "type": "municipalities",
+ "latitude": "18.22745580",
+ "longitude": "-65.92099700"
+ },
+ {
+ "id": 5174,
+ "name": "Lajas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "079",
+ "type": "municipalities",
+ "latitude": "18.04996200",
+ "longitude": "-67.05934490"
+ },
+ {
+ "id": 5175,
+ "name": "Lares",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "081",
+ "type": "municipalities",
+ "latitude": "34.02508020",
+ "longitude": "-118.45945930"
+ },
+ {
+ "id": 5176,
+ "name": "Las Marรญas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "083",
+ "type": "municipalities",
+ "latitude": "35.83822380",
+ "longitude": "-78.61035660"
+ },
+ {
+ "id": 5177,
+ "name": "Las Piedras",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "085",
+ "type": "municipalities",
+ "latitude": "18.18557530",
+ "longitude": "-65.87362450"
+ },
+ {
+ "id": 5178,
+ "name": "Loรญza",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "087",
+ "type": "municipalities",
+ "latitude": "18.43299040",
+ "longitude": "-65.87836000"
+ },
+ {
+ "id": 5179,
+ "name": "Luquillo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "089",
+ "type": "municipalities",
+ "latitude": "18.37245070",
+ "longitude": "-65.71655110"
+ },
+ {
+ "id": 5180,
+ "name": "Manatรญ",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "091",
+ "type": "municipalities",
+ "latitude": "18.41812150",
+ "longitude": "-66.52627830"
+ },
+ {
+ "id": 5181,
+ "name": "Maricao",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "093",
+ "type": "municipalities",
+ "latitude": "18.18079020",
+ "longitude": "-66.97990010"
+ },
+ {
+ "id": 5182,
+ "name": "Maunabo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "095",
+ "type": "municipalities",
+ "latitude": "18.00718850",
+ "longitude": "-65.89932890"
+ },
+ {
+ "id": 5083,
+ "name": "Mayagรผez",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "MG",
+ "type": "region",
+ "latitude": "18.20111111",
+ "longitude": "-67.13972222"
+ },
+ {
+ "id": 5183,
+ "name": "Mayagรผez",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "097",
+ "type": "municipalities",
+ "latitude": "18.20134520",
+ "longitude": "-67.14515490"
+ },
+ {
+ "id": 5184,
+ "name": "Moca",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "099",
+ "type": "municipalities",
+ "latitude": "18.39679290",
+ "longitude": "-67.14790350"
+ },
+ {
+ "id": 5185,
+ "name": "Morovis",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "101",
+ "type": "municipalities",
+ "latitude": "18.32578500",
+ "longitude": "-66.40655920"
+ },
+ {
+ "id": 5186,
+ "name": "Naguabo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "103",
+ "type": "municipalities",
+ "latitude": "18.21162470",
+ "longitude": "-65.73488410"
+ },
+ {
+ "id": 5187,
+ "name": "Naranjito",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "105",
+ "type": "municipalities",
+ "latitude": "18.30078610",
+ "longitude": "-66.24489040"
+ },
+ {
+ "id": 5188,
+ "name": "Orocovis",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "107",
+ "type": "municipalities",
+ "latitude": "18.22692240",
+ "longitude": "-66.39116860"
+ },
+ {
+ "id": 5189,
+ "name": "Patillas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "109",
+ "type": "municipalities",
+ "latitude": "18.00373810",
+ "longitude": "-66.01340590"
+ },
+ {
+ "id": 5190,
+ "name": "Peรฑuelas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "111",
+ "type": "municipalities",
+ "latitude": "18.06335770",
+ "longitude": "-66.72738960"
+ },
+ {
+ "id": 5078,
+ "name": "Ponce",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "PO",
+ "type": "region",
+ "latitude": "18.00000000",
+ "longitude": "-66.61666667"
+ },
+ {
+ "id": 5191,
+ "name": "Ponce",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "113",
+ "type": "municipalities",
+ "latitude": "18.01107680",
+ "longitude": "-66.61406160"
+ },
+ {
+ "id": 5192,
+ "name": "Quebradillas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "115",
+ "type": "municipalities",
+ "latitude": "18.47383300",
+ "longitude": "-66.93851200"
+ },
+ {
+ "id": 5193,
+ "name": "Rincรณn",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "117",
+ "type": "municipalities",
+ "latitude": "18.34015140",
+ "longitude": "-67.24994590"
+ },
+ {
+ "id": 5194,
+ "name": "Rรญo Grande",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "119",
+ "type": "municipalities",
+ "latitude": "28.81063826",
+ "longitude": "-101.83538780"
+ },
+ {
+ "id": 5195,
+ "name": "Sabana Grande",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "121",
+ "type": "municipalities",
+ "latitude": "18.07773920",
+ "longitude": "-66.96045490"
+ },
+ {
+ "id": 5196,
+ "name": "Salinas",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "123",
+ "type": "municipalities",
+ "latitude": "36.67773720",
+ "longitude": "-121.65550130"
+ },
+ {
+ "id": 5197,
+ "name": "San Germรกn",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "125",
+ "type": "municipalities",
+ "latitude": "18.08070820",
+ "longitude": "-67.04110960"
+ },
+ {
+ "id": 5198,
+ "name": "San Juan",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "127",
+ "type": "municipalities",
+ "latitude": "18.46320300",
+ "longitude": "-66.11475710"
+ },
+ {
+ "id": 5075,
+ "name": "San Juan",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "SJ",
+ "type": "region",
+ "latitude": "18.45000000",
+ "longitude": "-66.06666667"
+ },
+ {
+ "id": 5199,
+ "name": "San Lorenzo",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "129",
+ "type": "municipalities",
+ "latitude": "18.18869120",
+ "longitude": "-65.97658620"
+ },
+ {
+ "id": 5200,
+ "name": "San Sebastiรกn",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "131",
+ "type": "municipalities",
+ "latitude": "43.31833400",
+ "longitude": "-1.98123130"
+ },
+ {
+ "id": 5201,
+ "name": "Santa Isabel",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "133",
+ "type": "municipalities",
+ "latitude": "17.96607750",
+ "longitude": "-66.40489200"
+ },
+ {
+ "id": 5202,
+ "name": "Toa Alta",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "135",
+ "type": "municipalities",
+ "latitude": "18.38828230",
+ "longitude": "-66.24822370"
+ },
+ {
+ "id": 5082,
+ "name": "Toa Baja",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "TB",
+ "type": "region",
+ "latitude": "18.44388900",
+ "longitude": "-66.25972200"
+ },
+ {
+ "id": 5203,
+ "name": "Toa Baja",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "137",
+ "type": "municipalities",
+ "latitude": "18.44447090",
+ "longitude": "-66.25432930"
+ },
+ {
+ "id": 5084,
+ "name": "Trujillo Alto",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "TA",
+ "type": "region",
+ "latitude": "18.36277800",
+ "longitude": "-66.01750000"
+ },
+ {
+ "id": 5204,
+ "name": "Trujillo Alto",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "139",
+ "type": "municipalities",
+ "latitude": "18.35467190",
+ "longitude": "-66.00738760"
+ },
+ {
+ "id": 5205,
+ "name": "Utuado",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "141",
+ "type": "municipalities",
+ "latitude": "18.26550950",
+ "longitude": "-66.70045190"
+ },
+ {
+ "id": 5206,
+ "name": "Vega Alta",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "143",
+ "type": "municipalities",
+ "latitude": "18.41217030",
+ "longitude": "-66.33128050"
+ },
+ {
+ "id": 5207,
+ "name": "Vega Baja",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "145",
+ "type": "municipalities",
+ "latitude": "18.44614590",
+ "longitude": "-66.40419670"
+ },
+ {
+ "id": 5208,
+ "name": "Vieques",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "147",
+ "type": "municipalities",
+ "latitude": "18.12628540",
+ "longitude": "-65.44009850"
+ },
+ {
+ "id": 5209,
+ "name": "Villalba",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "149",
+ "type": "municipalities",
+ "latitude": "18.12175540",
+ "longitude": "-66.49857870"
+ },
+ {
+ "id": 5210,
+ "name": "Yabucoa",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "151",
+ "type": "municipalities",
+ "latitude": "18.05052010",
+ "longitude": "-65.87932880"
+ },
+ {
+ "id": 5211,
+ "name": "Yauco",
+ "country_id": 178,
+ "country_code": "PR",
+ "country_name": "Puerto Rico",
+ "state_code": "153",
+ "type": "municipalities",
+ "latitude": "18.03496400",
+ "longitude": "-66.84989830"
+ },
+ {
+ "id": 3182,
+ "name": "Al Daayen",
+ "country_id": 179,
+ "country_code": "QA",
+ "country_name": "Qatar",
+ "state_code": "ZA",
+ "type": null,
+ "latitude": "25.57845590",
+ "longitude": "51.48213870"
+ },
+ {
+ "id": 3183,
+ "name": "Al Khor",
+ "country_id": 179,
+ "country_code": "QA",
+ "country_name": "Qatar",
+ "state_code": "KH",
+ "type": null,
+ "latitude": "25.68040780",
+ "longitude": "51.49685020"
+ },
+ {
+ "id": 3177,
+ "name": "Al Rayyan Municipality",
+ "country_id": 179,
+ "country_code": "QA",
+ "country_name": "Qatar",
+ "state_code": "RA",
+ "type": null,
+ "latitude": "25.25225510",
+ "longitude": "51.43887130"
+ },
+ {
+ "id": 3179,
+ "name": "Al Wakrah",
+ "country_id": 179,
+ "country_code": "QA",
+ "country_name": "Qatar",
+ "state_code": "WA",
+ "type": null,
+ "latitude": "25.16593140",
+ "longitude": "51.59755240"
+ },
+ {
+ "id": 3178,
+ "name": "Al-Shahaniya",
+ "country_id": 179,
+ "country_code": "QA",
+ "country_name": "Qatar",
+ "state_code": "SH",
+ "type": null,
+ "latitude": "25.41063860",
+ "longitude": "51.18460250"
+ },
+ {
+ "id": 3181,
+ "name": "Doha",
+ "country_id": 179,
+ "country_code": "QA",
+ "country_name": "Qatar",
+ "state_code": "DA",
+ "type": null,
+ "latitude": "25.28544730",
+ "longitude": "51.53103980"
+ },
+ {
+ "id": 3180,
+ "name": "Madinat ash Shamal",
+ "country_id": 179,
+ "country_code": "QA",
+ "country_name": "Qatar",
+ "state_code": "MS",
+ "type": null,
+ "latitude": "26.11827430",
+ "longitude": "51.21572650"
+ },
+ {
+ "id": 3184,
+ "name": "Umm Salal Municipality",
+ "country_id": 179,
+ "country_code": "QA",
+ "country_name": "Qatar",
+ "state_code": "US",
+ "type": null,
+ "latitude": "25.48752420",
+ "longitude": "51.39656800"
+ },
+ {
+ "id": 4724,
+ "name": "Alba",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "AB",
+ "type": null,
+ "latitude": "44.70091530",
+ "longitude": "8.03569110"
+ },
+ {
+ "id": 4739,
+ "name": "Arad County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "AR",
+ "type": null,
+ "latitude": "46.22836510",
+ "longitude": "21.65978190"
+ },
+ {
+ "id": 4722,
+ "name": "Arges",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "AG",
+ "type": null,
+ "latitude": "45.07225270",
+ "longitude": "24.81427260"
+ },
+ {
+ "id": 4744,
+ "name": "Bacฤu County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "BC",
+ "type": null,
+ "latitude": "46.32581840",
+ "longitude": "26.66237800"
+ },
+ {
+ "id": 4723,
+ "name": "Bihor County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "BH",
+ "type": null,
+ "latitude": "47.01575160",
+ "longitude": "22.17226600"
+ },
+ {
+ "id": 4733,
+ "name": "Bistriศa-Nฤsฤud County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "BN",
+ "type": null,
+ "latitude": "47.24861070",
+ "longitude": "24.53228140"
+ },
+ {
+ "id": 4740,
+ "name": "Botoศani County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "BT",
+ "type": null,
+ "latitude": "47.89240420",
+ "longitude": "26.75917810"
+ },
+ {
+ "id": 4736,
+ "name": "Braila",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "BR",
+ "type": null,
+ "latitude": "45.26524630",
+ "longitude": "27.95947140"
+ },
+ {
+ "id": 4759,
+ "name": "Braศov County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "BV",
+ "type": null,
+ "latitude": "45.77818440",
+ "longitude": "25.22258000"
+ },
+ {
+ "id": 4730,
+ "name": "Bucharest",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "B",
+ "type": null,
+ "latitude": "44.42676740",
+ "longitude": "26.10253840"
+ },
+ {
+ "id": 4756,
+ "name": "Buzฤu County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "BZ",
+ "type": null,
+ "latitude": "45.33509120",
+ "longitude": "26.71075780"
+ },
+ {
+ "id": 4732,
+ "name": "Cฤlฤraศi County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "CL",
+ "type": null,
+ "latitude": "44.36587150",
+ "longitude": "26.75486070"
+ },
+ {
+ "id": 4753,
+ "name": "Caraศ-Severin County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "CS",
+ "type": null,
+ "latitude": "45.11396460",
+ "longitude": "22.07409930"
+ },
+ {
+ "id": 4734,
+ "name": "Cluj County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "CJ",
+ "type": null,
+ "latitude": "46.79417970",
+ "longitude": "23.61214920"
+ },
+ {
+ "id": 4737,
+ "name": "Constanศa County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "CT",
+ "type": null,
+ "latitude": "44.21298700",
+ "longitude": "28.25500550"
+ },
+ {
+ "id": 4754,
+ "name": "Covasna County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "CV",
+ "type": null,
+ "latitude": "45.94263470",
+ "longitude": "25.89189840"
+ },
+ {
+ "id": 4745,
+ "name": "Dรขmboviศa County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "DB",
+ "type": null,
+ "latitude": "44.92898930",
+ "longitude": "25.42538500"
+ },
+ {
+ "id": 4742,
+ "name": "Dolj County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "DJ",
+ "type": null,
+ "latitude": "44.16230220",
+ "longitude": "23.63250540"
+ },
+ {
+ "id": 4747,
+ "name": "Galaศi County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "GL",
+ "type": null,
+ "latitude": "45.78005690",
+ "longitude": "27.82515760"
+ },
+ {
+ "id": 4726,
+ "name": "Giurgiu County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "GR",
+ "type": null,
+ "latitude": "43.90370760",
+ "longitude": "25.96992650"
+ },
+ {
+ "id": 4750,
+ "name": "Gorj County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "GJ",
+ "type": null,
+ "latitude": "44.94855950",
+ "longitude": "23.24270790"
+ },
+ {
+ "id": 4749,
+ "name": "Harghita County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "HR",
+ "type": null,
+ "latitude": "46.49285070",
+ "longitude": "25.64566960"
+ },
+ {
+ "id": 4721,
+ "name": "Hunedoara County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "HD",
+ "type": null,
+ "latitude": "45.79363800",
+ "longitude": "22.99759930"
+ },
+ {
+ "id": 4743,
+ "name": "Ialomiศa County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "IL",
+ "type": null,
+ "latitude": "44.60313300",
+ "longitude": "27.37899140"
+ },
+ {
+ "id": 4735,
+ "name": "Iaศi County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "IS",
+ "type": null,
+ "latitude": "47.26796530",
+ "longitude": "27.21856620"
+ },
+ {
+ "id": 4725,
+ "name": "Ilfov County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "IF",
+ "type": null,
+ "latitude": "44.53554800",
+ "longitude": "26.23248860"
+ },
+ {
+ "id": 4760,
+ "name": "Maramureศ County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "MM",
+ "type": null,
+ "latitude": "46.55699040",
+ "longitude": "24.67232150"
+ },
+ {
+ "id": 4751,
+ "name": "Mehedinศi County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "MH",
+ "type": null,
+ "latitude": "44.55150530",
+ "longitude": "22.90441570"
+ },
+ {
+ "id": 4915,
+ "name": "Mureศ County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "MS",
+ "type": null,
+ "latitude": "46.55699040",
+ "longitude": "24.67232150"
+ },
+ {
+ "id": 4731,
+ "name": "Neamศ County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "NT",
+ "type": null,
+ "latitude": "46.97586850",
+ "longitude": "26.38187640"
+ },
+ {
+ "id": 4738,
+ "name": "Olt County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "OT",
+ "type": null,
+ "latitude": "44.20079700",
+ "longitude": "24.50229810"
+ },
+ {
+ "id": 4729,
+ "name": "Prahova County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "PH",
+ "type": null,
+ "latitude": "45.08919060",
+ "longitude": "26.08293130"
+ },
+ {
+ "id": 4741,
+ "name": "Sฤlaj County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "SJ",
+ "type": null,
+ "latitude": "47.20908130",
+ "longitude": "23.21219010"
+ },
+ {
+ "id": 4746,
+ "name": "Satu Mare County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "SM",
+ "type": null,
+ "latitude": "47.76689050",
+ "longitude": "22.92413770"
+ },
+ {
+ "id": 4755,
+ "name": "Sibiu County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "SB",
+ "type": null,
+ "latitude": "45.92691060",
+ "longitude": "24.22548070"
+ },
+ {
+ "id": 4720,
+ "name": "Suceava County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "SV",
+ "type": null,
+ "latitude": "47.55055480",
+ "longitude": "25.74106200"
+ },
+ {
+ "id": 4728,
+ "name": "Teleorman County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "TR",
+ "type": null,
+ "latitude": "44.01604910",
+ "longitude": "25.29866280"
+ },
+ {
+ "id": 4748,
+ "name": "Timiศ County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "TM",
+ "type": null,
+ "latitude": "45.81389020",
+ "longitude": "21.33310550"
+ },
+ {
+ "id": 4727,
+ "name": "Tulcea County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "TL",
+ "type": null,
+ "latitude": "45.04505650",
+ "longitude": "29.03249120"
+ },
+ {
+ "id": 4757,
+ "name": "Vรขlcea County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "VL",
+ "type": null,
+ "latitude": "45.07980510",
+ "longitude": "24.08352830"
+ },
+ {
+ "id": 4752,
+ "name": "Vaslui County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "VS",
+ "type": null,
+ "latitude": "46.46310590",
+ "longitude": "27.73980310"
+ },
+ {
+ "id": 4758,
+ "name": "Vrancea County",
+ "country_id": 181,
+ "country_code": "RO",
+ "country_name": "Romania",
+ "state_code": "VN",
+ "type": null,
+ "latitude": "45.81348760",
+ "longitude": "27.06575310"
+ },
+ {
+ "id": 1911,
+ "name": "Altai Krai",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "ALT",
+ "type": null,
+ "latitude": "51.79362980",
+ "longitude": "82.67585960"
+ },
+ {
+ "id": 1876,
+ "name": "Altai Republic",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "AL",
+ "type": null,
+ "latitude": "50.61819240",
+ "longitude": "86.21993080"
+ },
+ {
+ "id": 1858,
+ "name": "Amur Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "AMU",
+ "type": null,
+ "latitude": "54.60350650",
+ "longitude": "127.48017210"
+ },
+ {
+ "id": 1849,
+ "name": "Arkhangelsk",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "ARK",
+ "type": null,
+ "latitude": "64.54585490",
+ "longitude": "40.55057690"
+ },
+ {
+ "id": 1866,
+ "name": "Astrakhan Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "AST",
+ "type": null,
+ "latitude": "46.13211660",
+ "longitude": "48.06101150"
+ },
+ {
+ "id": 1903,
+ "name": "Belgorod Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "BEL",
+ "type": null,
+ "latitude": "50.71069260",
+ "longitude": "37.75333770"
+ },
+ {
+ "id": 1867,
+ "name": "Bryansk Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "BRY",
+ "type": null,
+ "latitude": "53.04085990",
+ "longitude": "33.26909000"
+ },
+ {
+ "id": 1893,
+ "name": "Chechen Republic",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "CE",
+ "type": null,
+ "latitude": "43.40233010",
+ "longitude": "45.71874680"
+ },
+ {
+ "id": 1845,
+ "name": "Chelyabinsk Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "CHE",
+ "type": null,
+ "latitude": "54.43194220",
+ "longitude": "60.87889630"
+ },
+ {
+ "id": 1859,
+ "name": "Chukotka Autonomous Okrug",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "CHU",
+ "type": null,
+ "latitude": "65.62983550",
+ "longitude": "171.69521590"
+ },
+ {
+ "id": 1914,
+ "name": "Chuvash Republic",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "CU",
+ "type": null,
+ "latitude": "55.55959920",
+ "longitude": "46.92835350"
+ },
+ {
+ "id": 1880,
+ "name": "Irkutsk",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "IRK",
+ "type": null,
+ "latitude": "52.28548340",
+ "longitude": "104.28902220"
+ },
+ {
+ "id": 1864,
+ "name": "Ivanovo Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "IVA",
+ "type": null,
+ "latitude": "57.10568540",
+ "longitude": "41.48300840"
+ },
+ {
+ "id": 1835,
+ "name": "Jewish Autonomous Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "YEV",
+ "type": null,
+ "latitude": "48.48081470",
+ "longitude": "131.76573670"
+ },
+ {
+ "id": 1892,
+ "name": "Kabardino-Balkar Republic",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KB",
+ "type": null,
+ "latitude": "43.39324690",
+ "longitude": "43.56284980"
+ },
+ {
+ "id": 1902,
+ "name": "Kaliningrad",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KGD",
+ "type": null,
+ "latitude": "54.71042640",
+ "longitude": "20.45221440"
+ },
+ {
+ "id": 1844,
+ "name": "Kaluga Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KLU",
+ "type": null,
+ "latitude": "54.38726660",
+ "longitude": "35.18890940"
+ },
+ {
+ "id": 1865,
+ "name": "Kamchatka Krai",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KAM",
+ "type": null,
+ "latitude": "61.43439810",
+ "longitude": "166.78841310"
+ },
+ {
+ "id": 1869,
+ "name": "Karachay-Cherkess Republic",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KC",
+ "type": null,
+ "latitude": "43.88451430",
+ "longitude": "41.73039390"
+ },
+ {
+ "id": 1897,
+ "name": "Kemerovo Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KEM",
+ "type": null,
+ "latitude": "54.75746480",
+ "longitude": "87.40552880"
+ },
+ {
+ "id": 1873,
+ "name": "Khabarovsk Krai",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KHA",
+ "type": null,
+ "latitude": "50.58884310",
+ "longitude": "135.00000000"
+ },
+ {
+ "id": 1838,
+ "name": "Khanty-Mansi Autonomous Okrug",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KHM",
+ "type": null,
+ "latitude": "62.22870620",
+ "longitude": "70.64100570"
+ },
+ {
+ "id": 1890,
+ "name": "Kirov Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KIR",
+ "type": null,
+ "latitude": "58.41985290",
+ "longitude": "50.20972480"
+ },
+ {
+ "id": 1899,
+ "name": "Komi Republic",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KO",
+ "type": null,
+ "latitude": "63.86305390",
+ "longitude": "54.83126900"
+ },
+ {
+ "id": 1910,
+ "name": "Kostroma Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KOS",
+ "type": null,
+ "latitude": "58.55010690",
+ "longitude": "43.95411020"
+ },
+ {
+ "id": 1891,
+ "name": "Krasnodar Krai",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KDA",
+ "type": null,
+ "latitude": "45.64152890",
+ "longitude": "39.70559770"
+ },
+ {
+ "id": 1840,
+ "name": "Krasnoyarsk Krai",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KYA",
+ "type": null,
+ "latitude": "64.24797580",
+ "longitude": "95.11041760"
+ },
+ {
+ "id": 1915,
+ "name": "Kurgan Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KGN",
+ "type": null,
+ "latitude": "55.44815480",
+ "longitude": "65.11809750"
+ },
+ {
+ "id": 1855,
+ "name": "Kursk Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KRS",
+ "type": null,
+ "latitude": "51.76340260",
+ "longitude": "35.38118120"
+ },
+ {
+ "id": 1896,
+ "name": "Leningrad Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "LEN",
+ "type": null,
+ "latitude": "60.07932080",
+ "longitude": "31.89266450"
+ },
+ {
+ "id": 1889,
+ "name": "Lipetsk Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "LIP",
+ "type": null,
+ "latitude": "52.52647020",
+ "longitude": "39.20322690"
+ },
+ {
+ "id": 1839,
+ "name": "Magadan Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "MAG",
+ "type": null,
+ "latitude": "62.66434170",
+ "longitude": "153.91499100"
+ },
+ {
+ "id": 1870,
+ "name": "Mari El Republic",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "ME",
+ "type": null,
+ "latitude": "56.43845700",
+ "longitude": "47.96077580"
+ },
+ {
+ "id": 1901,
+ "name": "Moscow",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "MOW",
+ "type": null,
+ "latitude": "55.75582600",
+ "longitude": "37.61729990"
+ },
+ {
+ "id": 1882,
+ "name": "Moscow Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "MOS",
+ "type": null,
+ "latitude": "55.34039600",
+ "longitude": "38.29176510"
+ },
+ {
+ "id": 1843,
+ "name": "Murmansk Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "MUR",
+ "type": null,
+ "latitude": "67.84426740",
+ "longitude": "35.08841020"
+ },
+ {
+ "id": 1836,
+ "name": "Nenets Autonomous Okrug",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "NEN",
+ "type": null,
+ "latitude": "67.60783370",
+ "longitude": "57.63383310"
+ },
+ {
+ "id": 1857,
+ "name": "Nizhny Novgorod Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "NIZ",
+ "type": null,
+ "latitude": "55.79951590",
+ "longitude": "44.02967690"
+ },
+ {
+ "id": 1834,
+ "name": "Novgorod Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "NGR",
+ "type": null,
+ "latitude": "58.24275520",
+ "longitude": "32.56651900"
+ },
+ {
+ "id": 1888,
+ "name": "Novosibirsk",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "NVS",
+ "type": null,
+ "latitude": "54.98326930",
+ "longitude": "82.89638310"
+ },
+ {
+ "id": 1846,
+ "name": "Omsk Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "OMS",
+ "type": null,
+ "latitude": "55.05546690",
+ "longitude": "73.31673420"
+ },
+ {
+ "id": 1886,
+ "name": "Orenburg Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "ORE",
+ "type": null,
+ "latitude": "51.76340260",
+ "longitude": "54.61881880"
+ },
+ {
+ "id": 1908,
+ "name": "Oryol Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "ORL",
+ "type": null,
+ "latitude": "52.78564140",
+ "longitude": "36.92423440"
+ },
+ {
+ "id": 1909,
+ "name": "Penza Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "PNZ",
+ "type": null,
+ "latitude": "53.14121050",
+ "longitude": "44.09400480"
+ },
+ {
+ "id": 1871,
+ "name": "Perm Krai",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "PER",
+ "type": null,
+ "latitude": "58.82319290",
+ "longitude": "56.58724810"
+ },
+ {
+ "id": 1833,
+ "name": "Primorsky Krai",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "PRI",
+ "type": null,
+ "latitude": "45.05256410",
+ "longitude": "135.00000000"
+ },
+ {
+ "id": 1863,
+ "name": "Pskov Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "PSK",
+ "type": null,
+ "latitude": "56.77085990",
+ "longitude": "29.09400900"
+ },
+ {
+ "id": 1852,
+ "name": "Republic of Adygea",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "AD",
+ "type": null,
+ "latitude": "44.82291550",
+ "longitude": "40.17544630"
+ },
+ {
+ "id": 1854,
+ "name": "Republic of Bashkortostan",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "54.23121720",
+ "longitude": "56.16452570"
+ },
+ {
+ "id": 1842,
+ "name": "Republic of Buryatia",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "BU",
+ "type": null,
+ "latitude": "54.83311460",
+ "longitude": "112.40605300"
+ },
+ {
+ "id": 1850,
+ "name": "Republic of Dagestan",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "DA",
+ "type": null,
+ "latitude": "42.14318860",
+ "longitude": "47.09497990"
+ },
+ {
+ "id": 1884,
+ "name": "Republic of Ingushetia",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "IN",
+ "type": null,
+ "latitude": "43.40516980",
+ "longitude": "44.82029990"
+ },
+ {
+ "id": 1883,
+ "name": "Republic of Kalmykia",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KL",
+ "type": null,
+ "latitude": "46.18671760",
+ "longitude": "45.00000000"
+ },
+ {
+ "id": 1841,
+ "name": "Republic of Karelia",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KR",
+ "type": null,
+ "latitude": "63.15587020",
+ "longitude": "32.99055520"
+ },
+ {
+ "id": 1877,
+ "name": "Republic of Khakassia",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "KK",
+ "type": null,
+ "latitude": "53.04522810",
+ "longitude": "90.39821450"
+ },
+ {
+ "id": 1898,
+ "name": "Republic of Mordovia",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "MO",
+ "type": null,
+ "latitude": "54.23694410",
+ "longitude": "44.06839700"
+ },
+ {
+ "id": 1853,
+ "name": "Republic of North Ossetia-Alania",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "SE",
+ "type": null,
+ "latitude": "43.04513020",
+ "longitude": "44.28709720"
+ },
+ {
+ "id": 1861,
+ "name": "Republic of Tatarstan",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "55.18023640",
+ "longitude": "50.72639450"
+ },
+ {
+ "id": 1837,
+ "name": "Rostov Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "ROS",
+ "type": null,
+ "latitude": "47.68532470",
+ "longitude": "41.82589520"
+ },
+ {
+ "id": 1905,
+ "name": "Ryazan Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "RYA",
+ "type": null,
+ "latitude": "54.38759640",
+ "longitude": "41.25956610"
+ },
+ {
+ "id": 1879,
+ "name": "Saint Petersburg",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "SPE",
+ "type": null,
+ "latitude": "59.93105840",
+ "longitude": "30.36090960"
+ },
+ {
+ "id": 1848,
+ "name": "Sakha Republic",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "66.76134510",
+ "longitude": "124.12375300"
+ },
+ {
+ "id": 1875,
+ "name": "Sakhalin",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "SAK",
+ "type": null,
+ "latitude": "50.69098480",
+ "longitude": "142.95056890"
+ },
+ {
+ "id": 1862,
+ "name": "Samara Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "SAM",
+ "type": null,
+ "latitude": "53.41838390",
+ "longitude": "50.47255280"
+ },
+ {
+ "id": 1887,
+ "name": "Saratov Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "SAR",
+ "type": null,
+ "latitude": "51.83692630",
+ "longitude": "46.75393970"
+ },
+ {
+ "id": 1912,
+ "name": "Sevastopol",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "UA-40",
+ "type": null,
+ "latitude": "44.61665000",
+ "longitude": "33.52536710"
+ },
+ {
+ "id": 1885,
+ "name": "Smolensk Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "SMO",
+ "type": null,
+ "latitude": "54.98829940",
+ "longitude": "32.66773780"
+ },
+ {
+ "id": 1868,
+ "name": "Stavropol Krai",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "STA",
+ "type": null,
+ "latitude": "44.66809930",
+ "longitude": "43.52021400"
+ },
+ {
+ "id": 1894,
+ "name": "Sverdlovsk",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "SVE",
+ "type": null,
+ "latitude": "56.84309930",
+ "longitude": "60.64540860"
+ },
+ {
+ "id": 1878,
+ "name": "Tambov Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "TAM",
+ "type": null,
+ "latitude": "52.64165890",
+ "longitude": "41.42164510"
+ },
+ {
+ "id": 1872,
+ "name": "Tomsk Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "TOM",
+ "type": null,
+ "latitude": "58.89698820",
+ "longitude": "82.67655000"
+ },
+ {
+ "id": 1895,
+ "name": "Tula Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "TUL",
+ "type": null,
+ "latitude": "54.16376800",
+ "longitude": "37.56495070"
+ },
+ {
+ "id": 1900,
+ "name": "Tuva Republic",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "TY",
+ "type": null,
+ "latitude": "51.88726690",
+ "longitude": "95.62601720"
+ },
+ {
+ "id": 1860,
+ "name": "Tver Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "TVE",
+ "type": null,
+ "latitude": "57.00216540",
+ "longitude": "33.98531420"
+ },
+ {
+ "id": 1907,
+ "name": "Tyumen Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "TYU",
+ "type": null,
+ "latitude": "56.96343870",
+ "longitude": "66.94827800"
+ },
+ {
+ "id": 1913,
+ "name": "Udmurt Republic",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "UD",
+ "type": null,
+ "latitude": "57.06702180",
+ "longitude": "53.02779480"
+ },
+ {
+ "id": 1856,
+ "name": "Ulyanovsk Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "ULY",
+ "type": null,
+ "latitude": "53.97933570",
+ "longitude": "47.77624250"
+ },
+ {
+ "id": 1881,
+ "name": "Vladimir Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "VLA",
+ "type": null,
+ "latitude": "56.15534650",
+ "longitude": "40.59266850"
+ },
+ {
+ "id": 4916,
+ "name": "Volgograd Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "VGG",
+ "type": null,
+ "latitude": "49.25873930",
+ "longitude": "39.81544630"
+ },
+ {
+ "id": 1874,
+ "name": "Vologda Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "VLG",
+ "type": null,
+ "latitude": "59.87067110",
+ "longitude": "40.65554110"
+ },
+ {
+ "id": 1906,
+ "name": "Voronezh Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "VOR",
+ "type": null,
+ "latitude": "50.85897130",
+ "longitude": "39.86443740"
+ },
+ {
+ "id": 1847,
+ "name": "Yamalo-Nenets Autonomous Okrug",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "YAN",
+ "type": null,
+ "latitude": "66.06530570",
+ "longitude": "76.93451930"
+ },
+ {
+ "id": 1851,
+ "name": "Yaroslavl Oblast",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "YAR",
+ "type": null,
+ "latitude": "57.89915230",
+ "longitude": "38.83886330"
+ },
+ {
+ "id": 1904,
+ "name": "Zabaykalsky Krai",
+ "country_id": 182,
+ "country_code": "RU",
+ "country_name": "Russia",
+ "state_code": "ZAB",
+ "type": null,
+ "latitude": "53.09287710",
+ "longitude": "116.96765610"
+ },
+ {
+ "id": 261,
+ "name": "Eastern Province",
+ "country_id": 183,
+ "country_code": "RW",
+ "country_name": "Rwanda",
+ "state_code": "02",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 262,
+ "name": "Kigali district",
+ "country_id": 183,
+ "country_code": "RW",
+ "country_name": "Rwanda",
+ "state_code": "01",
+ "type": null,
+ "latitude": "-1.94407270",
+ "longitude": "30.06188510"
+ },
+ {
+ "id": 263,
+ "name": "Northern Province",
+ "country_id": 183,
+ "country_code": "RW",
+ "country_name": "Rwanda",
+ "state_code": "03",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 259,
+ "name": "Southern Province",
+ "country_id": 183,
+ "country_code": "RW",
+ "country_name": "Rwanda",
+ "state_code": "05",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 260,
+ "name": "Western Province",
+ "country_id": 183,
+ "country_code": "RW",
+ "country_name": "Rwanda",
+ "state_code": "04",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 3833,
+ "name": "Christ Church Nichola Town Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "01",
+ "type": null,
+ "latitude": "17.36048120",
+ "longitude": "-62.76178370"
+ },
+ {
+ "id": 3832,
+ "name": "Nevis",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "N",
+ "type": null,
+ "latitude": "17.15535580",
+ "longitude": "-62.57960260"
+ },
+ {
+ "id": 3836,
+ "name": "Saint Anne Sandy Point Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "02",
+ "type": null,
+ "latitude": "17.37253330",
+ "longitude": "-62.84411330"
+ },
+ {
+ "id": 3837,
+ "name": "Saint George Gingerland Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "04",
+ "type": null,
+ "latitude": "17.12577590",
+ "longitude": "-62.56198110"
+ },
+ {
+ "id": 3835,
+ "name": "Saint James Windward Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "05",
+ "type": null,
+ "latitude": "17.17696330",
+ "longitude": "-62.57960260"
+ },
+ {
+ "id": 3845,
+ "name": "Saint John Capisterre Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "06",
+ "type": null,
+ "latitude": "17.38103410",
+ "longitude": "-62.79118330"
+ },
+ {
+ "id": 3840,
+ "name": "Saint John Figtree Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "07",
+ "type": null,
+ "latitude": "17.11557480",
+ "longitude": "-62.60310040"
+ },
+ {
+ "id": 3841,
+ "name": "Saint Kitts",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "K",
+ "type": null,
+ "latitude": "17.34337960",
+ "longitude": "-62.75590430"
+ },
+ {
+ "id": 3844,
+ "name": "Saint Mary Cayon Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "08",
+ "type": null,
+ "latitude": "17.34620710",
+ "longitude": "-62.73826710"
+ },
+ {
+ "id": 3834,
+ "name": "Saint Paul Capisterre Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "09",
+ "type": null,
+ "latitude": "17.40166830",
+ "longitude": "-62.82573320"
+ },
+ {
+ "id": 3838,
+ "name": "Saint Paul Charlestown Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "10",
+ "type": null,
+ "latitude": "17.13462970",
+ "longitude": "-62.61338160"
+ },
+ {
+ "id": 3831,
+ "name": "Saint Peter Basseterre Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "11",
+ "type": null,
+ "latitude": "17.31029110",
+ "longitude": "-62.71475330"
+ },
+ {
+ "id": 3839,
+ "name": "Saint Thomas Lowland Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "12",
+ "type": null,
+ "latitude": "17.16505130",
+ "longitude": "-62.60897530"
+ },
+ {
+ "id": 3842,
+ "name": "Saint Thomas Middle Island Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "13",
+ "type": null,
+ "latitude": "17.33488130",
+ "longitude": "-62.80882510"
+ },
+ {
+ "id": 3843,
+ "name": "Trinity Palmetto Point Parish",
+ "country_id": 185,
+ "country_code": "KN",
+ "country_name": "Saint Kitts And Nevis",
+ "state_code": "15",
+ "type": null,
+ "latitude": "17.30635190",
+ "longitude": "-62.76178370"
+ },
+ {
+ "id": 3757,
+ "name": "Anse la Raye Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "01",
+ "type": null,
+ "latitude": "13.94594240",
+ "longitude": "-61.03694680"
+ },
+ {
+ "id": 3761,
+ "name": "Canaries",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "12",
+ "type": null,
+ "latitude": "28.29156370",
+ "longitude": "-16.62913040"
+ },
+ {
+ "id": 3758,
+ "name": "Castries Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "02",
+ "type": null,
+ "latitude": "14.01010940",
+ "longitude": "-60.98746870"
+ },
+ {
+ "id": 3760,
+ "name": "Choiseul Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "03",
+ "type": null,
+ "latitude": "13.77501540",
+ "longitude": "-61.04859100"
+ },
+ {
+ "id": 3767,
+ "name": "Dauphin Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "04",
+ "type": null,
+ "latitude": "14.01033960",
+ "longitude": "-60.91909880"
+ },
+ {
+ "id": 3756,
+ "name": "Dennery Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "05",
+ "type": null,
+ "latitude": "13.92673930",
+ "longitude": "-60.91909880"
+ },
+ {
+ "id": 3766,
+ "name": "Gros Islet Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "06",
+ "type": null,
+ "latitude": "14.08435780",
+ "longitude": "-60.94527940"
+ },
+ {
+ "id": 3759,
+ "name": "Laborie Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "07",
+ "type": null,
+ "latitude": "13.75227830",
+ "longitude": "-60.99328890"
+ },
+ {
+ "id": 3762,
+ "name": "Micoud Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "08",
+ "type": null,
+ "latitude": "13.82118710",
+ "longitude": "-60.90019340"
+ },
+ {
+ "id": 3765,
+ "name": "Praslin Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "09",
+ "type": null,
+ "latitude": "13.87523920",
+ "longitude": "-60.89946630"
+ },
+ {
+ "id": 3764,
+ "name": "Soufriรจre Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "10",
+ "type": null,
+ "latitude": "13.85709860",
+ "longitude": "-61.05732480"
+ },
+ {
+ "id": 3763,
+ "name": "Vieux Fort Quarter",
+ "country_id": 186,
+ "country_code": "LC",
+ "country_name": "Saint Lucia",
+ "state_code": "11",
+ "type": null,
+ "latitude": "13.72060800",
+ "longitude": "-60.94964330"
+ },
+ {
+ "id": 3389,
+ "name": "Charlotte Parish",
+ "country_id": 188,
+ "country_code": "VC",
+ "country_name": "Saint Vincent And The Grenadines",
+ "state_code": "01",
+ "type": null,
+ "latitude": "13.21754510",
+ "longitude": "-61.16362440"
+ },
+ {
+ "id": 3388,
+ "name": "Grenadines Parish",
+ "country_id": 188,
+ "country_code": "VC",
+ "country_name": "Saint Vincent And The Grenadines",
+ "state_code": "06",
+ "type": null,
+ "latitude": "13.01229650",
+ "longitude": "-61.22773010"
+ },
+ {
+ "id": 3386,
+ "name": "Saint Andrew Parish",
+ "country_id": 188,
+ "country_code": "VC",
+ "country_name": "Saint Vincent And The Grenadines",
+ "state_code": "02",
+ "type": null,
+ "latitude": "43.02429990",
+ "longitude": "-81.20250000"
+ },
+ {
+ "id": 3387,
+ "name": "Saint David Parish",
+ "country_id": 188,
+ "country_code": "VC",
+ "country_name": "Saint Vincent And The Grenadines",
+ "state_code": "03",
+ "type": null,
+ "latitude": "43.85230950",
+ "longitude": "-79.52366540"
+ },
+ {
+ "id": 3384,
+ "name": "Saint George Parish",
+ "country_id": 188,
+ "country_code": "VC",
+ "country_name": "Saint Vincent And The Grenadines",
+ "state_code": "04",
+ "type": null,
+ "latitude": "42.95760900",
+ "longitude": "-81.32670500"
+ },
+ {
+ "id": 3385,
+ "name": "Saint Patrick Parish",
+ "country_id": 188,
+ "country_code": "VC",
+ "country_name": "Saint Vincent And The Grenadines",
+ "state_code": "05",
+ "type": null,
+ "latitude": "39.75091860",
+ "longitude": "-94.84505560"
+ },
+ {
+ "id": 4763,
+ "name": "A'ana",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "AA",
+ "type": null,
+ "latitude": "-13.89841800",
+ "longitude": "-171.97529950"
+ },
+ {
+ "id": 4761,
+ "name": "Aiga-i-le-Tai",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "AL",
+ "type": null,
+ "latitude": "-13.85137910",
+ "longitude": "-172.03254010"
+ },
+ {
+ "id": 4765,
+ "name": "Atua",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "AT",
+ "type": null,
+ "latitude": "-13.97870530",
+ "longitude": "-171.62542830"
+ },
+ {
+ "id": 4764,
+ "name": "Fa'asaleleaga",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "FA",
+ "type": null,
+ "latitude": "-13.63076380",
+ "longitude": "-172.23659810"
+ },
+ {
+ "id": 4769,
+ "name": "Gaga'emauga",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "GE",
+ "type": null,
+ "latitude": "-13.54286660",
+ "longitude": "-172.36688700"
+ },
+ {
+ "id": 4771,
+ "name": "Gaga'ifomauga",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "GI",
+ "type": null,
+ "latitude": "-13.54680070",
+ "longitude": "-172.49693310"
+ },
+ {
+ "id": 4767,
+ "name": "Palauli",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "PA",
+ "type": null,
+ "latitude": "-13.72945790",
+ "longitude": "-172.45361150"
+ },
+ {
+ "id": 4762,
+ "name": "Satupa'itea",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "-13.65382140",
+ "longitude": "-172.61592710"
+ },
+ {
+ "id": 4770,
+ "name": "Tuamasaga",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "TU",
+ "type": null,
+ "latitude": "-13.91635920",
+ "longitude": "-171.82243620"
+ },
+ {
+ "id": 4768,
+ "name": "Va'a-o-Fonoti",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "VF",
+ "type": null,
+ "latitude": "-13.94709030",
+ "longitude": "-171.54318720"
+ },
+ {
+ "id": 4766,
+ "name": "Vaisigano",
+ "country_id": 191,
+ "country_code": "WS",
+ "country_name": "Samoa",
+ "state_code": "VS",
+ "type": null,
+ "latitude": "-13.54138270",
+ "longitude": "-172.70233830"
+ },
+ {
+ "id": 59,
+ "name": "Acquaviva",
+ "country_id": 192,
+ "country_code": "SM",
+ "country_name": "San Marino",
+ "state_code": "01",
+ "type": null,
+ "latitude": "41.86715970",
+ "longitude": "14.74694790"
+ },
+ {
+ "id": 61,
+ "name": "Borgo Maggiore",
+ "country_id": 192,
+ "country_code": "SM",
+ "country_name": "San Marino",
+ "state_code": "06",
+ "type": null,
+ "latitude": "43.95748820",
+ "longitude": "12.45525460"
+ },
+ {
+ "id": 60,
+ "name": "Chiesanuova",
+ "country_id": 192,
+ "country_code": "SM",
+ "country_name": "San Marino",
+ "state_code": "02",
+ "type": null,
+ "latitude": "45.42261720",
+ "longitude": "7.65038540"
+ },
+ {
+ "id": 64,
+ "name": "Domagnano",
+ "country_id": 192,
+ "country_code": "SM",
+ "country_name": "San Marino",
+ "state_code": "03",
+ "type": null,
+ "latitude": "43.95019290",
+ "longitude": "12.46815370"
+ },
+ {
+ "id": 62,
+ "name": "Faetano",
+ "country_id": 192,
+ "country_code": "SM",
+ "country_name": "San Marino",
+ "state_code": "04",
+ "type": null,
+ "latitude": "43.93489670",
+ "longitude": "12.48965540"
+ },
+ {
+ "id": 66,
+ "name": "Fiorentino",
+ "country_id": 192,
+ "country_code": "SM",
+ "country_name": "San Marino",
+ "state_code": "05",
+ "type": null,
+ "latitude": "43.90783370",
+ "longitude": "12.45812090"
+ },
+ {
+ "id": 63,
+ "name": "Montegiardino",
+ "country_id": 192,
+ "country_code": "SM",
+ "country_name": "San Marino",
+ "state_code": "08",
+ "type": null,
+ "latitude": "43.90529990",
+ "longitude": "12.48105420"
+ },
+ {
+ "id": 58,
+ "name": "San Marino",
+ "country_id": 192,
+ "country_code": "SM",
+ "country_name": "San Marino",
+ "state_code": "07",
+ "type": null,
+ "latitude": "43.94236000",
+ "longitude": "12.45777700"
+ },
+ {
+ "id": 65,
+ "name": "Serravalle",
+ "country_id": 192,
+ "country_code": "SM",
+ "country_name": "San Marino",
+ "state_code": "09",
+ "type": null,
+ "latitude": "44.72320840",
+ "longitude": "8.85740050"
+ },
+ {
+ "id": 270,
+ "name": "Prรญncipe Province",
+ "country_id": 193,
+ "country_code": "ST",
+ "country_name": "Sao Tome and Principe",
+ "state_code": "P",
+ "type": null,
+ "latitude": "1.61393810",
+ "longitude": "7.40569280"
+ },
+ {
+ "id": 271,
+ "name": "Sรฃo Tomรฉ Province",
+ "country_id": 193,
+ "country_code": "ST",
+ "country_name": "Sao Tome and Principe",
+ "state_code": "S",
+ "type": null,
+ "latitude": "0.33019240",
+ "longitude": "6.73334300"
+ },
+ {
+ "id": 2853,
+ "name": "'Asir",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "14",
+ "type": "region",
+ "latitude": "19.09690620",
+ "longitude": "42.86378750"
+ },
+ {
+ "id": 2859,
+ "name": "Al Bahah",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "11",
+ "type": "region",
+ "latitude": "20.27227390",
+ "longitude": "41.44125100"
+ },
+ {
+ "id": 2857,
+ "name": "Al Jawf",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "12",
+ "type": "region",
+ "latitude": "29.88735600",
+ "longitude": "39.32062410"
+ },
+ {
+ "id": 2851,
+ "name": "Al Madinah",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "03",
+ "type": "region",
+ "latitude": "24.84039770",
+ "longitude": "39.32062410"
+ },
+ {
+ "id": 2861,
+ "name": "Al-Qassim",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "05",
+ "type": "region",
+ "latitude": "26.20782600",
+ "longitude": "43.48373800"
+ },
+ {
+ "id": 2856,
+ "name": "Eastern Province",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "04",
+ "type": "region",
+ "latitude": "24.04399320",
+ "longitude": "45.65892250"
+ },
+ {
+ "id": 2855,
+ "name": "Ha'il",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "06",
+ "type": "region",
+ "latitude": "27.70761430",
+ "longitude": "41.91964710"
+ },
+ {
+ "id": 2858,
+ "name": "Jizan",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "09",
+ "type": "region",
+ "latitude": "17.17381760",
+ "longitude": "42.70761070"
+ },
+ {
+ "id": 2850,
+ "name": "Makkah",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "02",
+ "type": "region",
+ "latitude": "21.52355840",
+ "longitude": "41.91964710"
+ },
+ {
+ "id": 2860,
+ "name": "Najran",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "10",
+ "type": "region",
+ "latitude": "18.35146640",
+ "longitude": "45.60071080"
+ },
+ {
+ "id": 2854,
+ "name": "Northern Borders",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "08",
+ "type": "region",
+ "latitude": "30.07991620",
+ "longitude": "42.86378750"
+ },
+ {
+ "id": 2849,
+ "name": "Riyadh",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "01",
+ "type": "region",
+ "latitude": "22.75543850",
+ "longitude": "46.20915470"
+ },
+ {
+ "id": 2852,
+ "name": "Tabuk",
+ "country_id": 194,
+ "country_code": "SA",
+ "country_name": "Saudi Arabia",
+ "state_code": "07",
+ "type": "region",
+ "latitude": "28.24533350",
+ "longitude": "37.63866220"
+ },
+ {
+ "id": 473,
+ "name": "Dakar",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "DK",
+ "type": null,
+ "latitude": "14.71667700",
+ "longitude": "-17.46768610"
+ },
+ {
+ "id": 480,
+ "name": "Diourbel Region",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "DB",
+ "type": null,
+ "latitude": "14.72830850",
+ "longitude": "-16.25221430"
+ },
+ {
+ "id": 479,
+ "name": "Fatick",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "FK",
+ "type": null,
+ "latitude": "14.33901670",
+ "longitude": "-16.41114250"
+ },
+ {
+ "id": 475,
+ "name": "Kaffrine",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "KA",
+ "type": null,
+ "latitude": "14.10520200",
+ "longitude": "-15.54157550"
+ },
+ {
+ "id": 483,
+ "name": "Kaolack",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "KL",
+ "type": null,
+ "latitude": "14.16520830",
+ "longitude": "-16.07577490"
+ },
+ {
+ "id": 481,
+ "name": "Kรฉdougou",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "KE",
+ "type": null,
+ "latitude": "12.56046070",
+ "longitude": "-12.17470770"
+ },
+ {
+ "id": 474,
+ "name": "Kolda",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "KD",
+ "type": null,
+ "latitude": "12.91074950",
+ "longitude": "-14.95056710"
+ },
+ {
+ "id": 485,
+ "name": "Louga",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "LG",
+ "type": null,
+ "latitude": "15.61417680",
+ "longitude": "-16.22868000"
+ },
+ {
+ "id": 476,
+ "name": "Matam",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "MT",
+ "type": null,
+ "latitude": "15.66002250",
+ "longitude": "-13.25769060"
+ },
+ {
+ "id": 477,
+ "name": "Saint-Louis",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "SL",
+ "type": null,
+ "latitude": "38.62700250",
+ "longitude": "-90.19940420"
+ },
+ {
+ "id": 482,
+ "name": "Sรฉdhiou",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "SE",
+ "type": null,
+ "latitude": "12.70460400",
+ "longitude": "-15.55623040"
+ },
+ {
+ "id": 486,
+ "name": "Tambacounda Region",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "TC",
+ "type": null,
+ "latitude": "13.56190110",
+ "longitude": "-13.17403480"
+ },
+ {
+ "id": 484,
+ "name": "Thiรจs Region",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "TH",
+ "type": null,
+ "latitude": "14.79100520",
+ "longitude": "-16.93586040"
+ },
+ {
+ "id": 478,
+ "name": "Ziguinchor",
+ "country_id": 195,
+ "country_code": "SN",
+ "country_name": "Senegal",
+ "state_code": "ZG",
+ "type": null,
+ "latitude": "12.56414790",
+ "longitude": "-16.26398250"
+ },
+ {
+ "id": 3728,
+ "name": "Belgrade",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "00",
+ "type": null,
+ "latitude": "44.78656800",
+ "longitude": "20.44892160"
+ },
+ {
+ "id": 3717,
+ "name": "Bor District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "14",
+ "type": null,
+ "latitude": "44.06989180",
+ "longitude": "22.09850860"
+ },
+ {
+ "id": 3732,
+ "name": "Braniฤevo District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "11",
+ "type": null,
+ "latitude": "44.69822460",
+ "longitude": "21.54467750"
+ },
+ {
+ "id": 3716,
+ "name": "Central Banat District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "02",
+ "type": null,
+ "latitude": "45.47884850",
+ "longitude": "20.60825220"
+ },
+ {
+ "id": 3715,
+ "name": "Jablanica District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "23",
+ "type": null,
+ "latitude": "42.94815600",
+ "longitude": "21.81293210"
+ },
+ {
+ "id": 3724,
+ "name": "Kolubara District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "09",
+ "type": null,
+ "latitude": "44.35098110",
+ "longitude": "20.00043050"
+ },
+ {
+ "id": 3719,
+ "name": "Maฤva District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "08",
+ "type": null,
+ "latitude": "44.59253140",
+ "longitude": "19.50822460"
+ },
+ {
+ "id": 3727,
+ "name": "Moravica District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "17",
+ "type": null,
+ "latitude": "43.84147000",
+ "longitude": "20.29049870"
+ },
+ {
+ "id": 3722,
+ "name": "Niลกava District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "20",
+ "type": null,
+ "latitude": "43.37389020",
+ "longitude": "21.93223310"
+ },
+ {
+ "id": 3714,
+ "name": "North Baฤka District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "01",
+ "type": null,
+ "latitude": "45.98033940",
+ "longitude": "19.59070010"
+ },
+ {
+ "id": 3736,
+ "name": "North Banat District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "03",
+ "type": null,
+ "latitude": "45.90683900",
+ "longitude": "19.99934170"
+ },
+ {
+ "id": 3721,
+ "name": "Pฤinja District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "24",
+ "type": null,
+ "latitude": "42.58363620",
+ "longitude": "22.14302150"
+ },
+ {
+ "id": 3712,
+ "name": "Pirot District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "22",
+ "type": null,
+ "latitude": "43.08740360",
+ "longitude": "22.59830440"
+ },
+ {
+ "id": 3741,
+ "name": "Podunavlje District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "10",
+ "type": null,
+ "latitude": "44.47291560",
+ "longitude": "20.99014260"
+ },
+ {
+ "id": 3737,
+ "name": "Pomoravlje District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "13",
+ "type": null,
+ "latitude": "43.95913790",
+ "longitude": "21.27135300"
+ },
+ {
+ "id": 3720,
+ "name": "Rasina District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "19",
+ "type": null,
+ "latitude": "43.52635250",
+ "longitude": "21.15881780"
+ },
+ {
+ "id": 3725,
+ "name": "Raลกka District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "18",
+ "type": null,
+ "latitude": "43.33734610",
+ "longitude": "20.57340050"
+ },
+ {
+ "id": 3711,
+ "name": "South Baฤka District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "06",
+ "type": null,
+ "latitude": "45.48903440",
+ "longitude": "19.69761870"
+ },
+ {
+ "id": 3713,
+ "name": "South Banat District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "04",
+ "type": null,
+ "latitude": "45.00274570",
+ "longitude": "21.05425090"
+ },
+ {
+ "id": 3740,
+ "name": "Srem District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "07",
+ "type": null,
+ "latitude": "45.00291710",
+ "longitude": "19.80137730"
+ },
+ {
+ "id": 3734,
+ "name": "ล umadija District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "12",
+ "type": null,
+ "latitude": "44.20506780",
+ "longitude": "20.78565650"
+ },
+ {
+ "id": 3718,
+ "name": "Toplica District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "21",
+ "type": null,
+ "latitude": "43.19065920",
+ "longitude": "21.34077620"
+ },
+ {
+ "id": 3733,
+ "name": "Vojvodina",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "VO",
+ "type": null,
+ "latitude": "45.26086510",
+ "longitude": "19.83193380"
+ },
+ {
+ "id": 3726,
+ "name": "West Baฤka District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "05",
+ "type": null,
+ "latitude": "45.73553850",
+ "longitude": "19.18973640"
+ },
+ {
+ "id": 3731,
+ "name": "Zajeฤar District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "15",
+ "type": null,
+ "latitude": "43.90150480",
+ "longitude": "22.27380110"
+ },
+ {
+ "id": 3729,
+ "name": "Zlatibor District",
+ "country_id": 196,
+ "country_code": "RS",
+ "country_name": "Serbia",
+ "state_code": "16",
+ "type": null,
+ "latitude": "43.64541700",
+ "longitude": "19.71014550"
+ },
+ {
+ "id": 513,
+ "name": "Anse Boileau",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "02",
+ "type": null,
+ "latitude": "-4.70472680",
+ "longitude": "55.48593630"
+ },
+ {
+ "id": 502,
+ "name": "Anse Royale",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "05",
+ "type": null,
+ "latitude": "-4.74079880",
+ "longitude": "55.50810120"
+ },
+ {
+ "id": 506,
+ "name": "Anse-aux-Pins",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "01",
+ "type": null,
+ "latitude": "-4.69004430",
+ "longitude": "55.51502890"
+ },
+ {
+ "id": 508,
+ "name": "Au Cap",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "04",
+ "type": null,
+ "latitude": "-4.70597230",
+ "longitude": "55.50810120"
+ },
+ {
+ "id": 497,
+ "name": "Baie Lazare",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "06",
+ "type": null,
+ "latitude": "-4.74825250",
+ "longitude": "55.48593630"
+ },
+ {
+ "id": 514,
+ "name": "Baie Sainte Anne",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "07",
+ "type": null,
+ "latitude": "47.05259000",
+ "longitude": "-64.95245790"
+ },
+ {
+ "id": 512,
+ "name": "Beau Vallon",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "08",
+ "type": null,
+ "latitude": "-4.62109670",
+ "longitude": "55.42778020"
+ },
+ {
+ "id": 515,
+ "name": "Bel Air",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "09",
+ "type": null,
+ "latitude": "34.10024550",
+ "longitude": "-118.45946300"
+ },
+ {
+ "id": 505,
+ "name": "Bel Ombre",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "10",
+ "type": null,
+ "latitude": "-20.50100950",
+ "longitude": "57.42596240"
+ },
+ {
+ "id": 517,
+ "name": "Cascade",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "11",
+ "type": null,
+ "latitude": "44.51628210",
+ "longitude": "-116.04179830"
+ },
+ {
+ "id": 503,
+ "name": "Glacis",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "12",
+ "type": null,
+ "latitude": "47.11573030",
+ "longitude": "-70.30281830"
+ },
+ {
+ "id": 500,
+ "name": "Grand'Anse Mahรฉ",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "13",
+ "type": null,
+ "latitude": "-4.67739200",
+ "longitude": "55.46377700"
+ },
+ {
+ "id": 504,
+ "name": "Grand'Anse Praslin",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "14",
+ "type": null,
+ "latitude": "-4.31762190",
+ "longitude": "55.70783630"
+ },
+ {
+ "id": 495,
+ "name": "La Digue",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "15",
+ "type": null,
+ "latitude": "49.76669220",
+ "longitude": "-97.15466290"
+ },
+ {
+ "id": 516,
+ "name": "La Riviรจre Anglaise",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "16",
+ "type": null,
+ "latitude": "-4.61061500",
+ "longitude": "55.45408410"
+ },
+ {
+ "id": 499,
+ "name": "Les Mamelles",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "24",
+ "type": null,
+ "latitude": "38.82505050",
+ "longitude": "-90.48345170"
+ },
+ {
+ "id": 494,
+ "name": "Mont Buxton",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "17",
+ "type": null,
+ "latitude": "-4.61666670",
+ "longitude": "55.44577680"
+ },
+ {
+ "id": 498,
+ "name": "Mont Fleuri",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "18",
+ "type": null,
+ "latitude": "-4.63565430",
+ "longitude": "55.45546880"
+ },
+ {
+ "id": 511,
+ "name": "Plaisance",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "19",
+ "type": null,
+ "latitude": "45.60709500",
+ "longitude": "-75.11427450"
+ },
+ {
+ "id": 510,
+ "name": "Pointe La Rue",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "20",
+ "type": null,
+ "latitude": "-4.68048900",
+ "longitude": "55.51918570"
+ },
+ {
+ "id": 507,
+ "name": "Port Glaud",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "21",
+ "type": null,
+ "latitude": "-4.64885230",
+ "longitude": "55.41947530"
+ },
+ {
+ "id": 501,
+ "name": "Roche Caiman",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "25",
+ "type": null,
+ "latitude": "-4.63960280",
+ "longitude": "55.46793150"
+ },
+ {
+ "id": 496,
+ "name": "Saint Louis",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "22",
+ "type": null,
+ "latitude": "38.62700250",
+ "longitude": "-90.19940420"
+ },
+ {
+ "id": 509,
+ "name": "Takamaka",
+ "country_id": 197,
+ "country_code": "SC",
+ "country_name": "Seychelles",
+ "state_code": "23",
+ "type": null,
+ "latitude": "37.96459170",
+ "longitude": "-1.22177270"
+ },
+ {
+ "id": 914,
+ "name": "Eastern Province",
+ "country_id": 198,
+ "country_code": "SL",
+ "country_name": "Sierra Leone",
+ "state_code": "E",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 911,
+ "name": "Northern Province",
+ "country_id": 198,
+ "country_code": "SL",
+ "country_name": "Sierra Leone",
+ "state_code": "N",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 912,
+ "name": "Southern Province",
+ "country_id": 198,
+ "country_code": "SL",
+ "country_name": "Sierra Leone",
+ "state_code": "S",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 913,
+ "name": "Western Area",
+ "country_id": 198,
+ "country_code": "SL",
+ "country_name": "Sierra Leone",
+ "state_code": "W",
+ "type": null,
+ "latitude": "40.25459690",
+ "longitude": "-80.24554440"
+ },
+ {
+ "id": 4651,
+ "name": "Central Singapore",
+ "country_id": 199,
+ "country_code": "SG",
+ "country_name": "Singapore",
+ "state_code": "01",
+ "type": "district",
+ "latitude": "1.28840000",
+ "longitude": "103.85350000"
+ },
+ {
+ "id": 4649,
+ "name": "North East",
+ "country_id": 199,
+ "country_code": "SG",
+ "country_name": "Singapore",
+ "state_code": "02",
+ "type": "district",
+ "latitude": "1.38240000",
+ "longitude": "103.89720000"
+ },
+ {
+ "id": 4653,
+ "name": "North West",
+ "country_id": 199,
+ "country_code": "SG",
+ "country_name": "Singapore",
+ "state_code": "03",
+ "type": "district",
+ "latitude": "1.41800000",
+ "longitude": "103.82750000"
+ },
+ {
+ "id": 4650,
+ "name": "South East",
+ "country_id": 199,
+ "country_code": "SG",
+ "country_name": "Singapore",
+ "state_code": "04",
+ "type": "district",
+ "latitude": "1.35710000",
+ "longitude": "103.70040000"
+ },
+ {
+ "id": 4652,
+ "name": "South West",
+ "country_id": 199,
+ "country_code": "SG",
+ "country_name": "Singapore",
+ "state_code": "05",
+ "type": "district",
+ "latitude": "1.35710000",
+ "longitude": "103.94510000"
+ },
+ {
+ "id": 4352,
+ "name": "Banskรก Bystrica Region",
+ "country_id": 200,
+ "country_code": "SK",
+ "country_name": "Slovakia",
+ "state_code": "BC",
+ "type": null,
+ "latitude": "48.53124990",
+ "longitude": "19.38287400"
+ },
+ {
+ "id": 4356,
+ "name": "Bratislava Region",
+ "country_id": 200,
+ "country_code": "SK",
+ "country_name": "Slovakia",
+ "state_code": "BL",
+ "type": null,
+ "latitude": "48.31183040",
+ "longitude": "17.19732990"
+ },
+ {
+ "id": 4353,
+ "name": "Koลกice Region",
+ "country_id": 200,
+ "country_code": "SK",
+ "country_name": "Slovakia",
+ "state_code": "KI",
+ "type": null,
+ "latitude": "48.63757370",
+ "longitude": "21.08342250"
+ },
+ {
+ "id": 4357,
+ "name": "Nitra Region",
+ "country_id": 200,
+ "country_code": "SK",
+ "country_name": "Slovakia",
+ "state_code": "NI",
+ "type": null,
+ "latitude": "48.01437650",
+ "longitude": "18.54165040"
+ },
+ {
+ "id": 4354,
+ "name": "Preลกov Region",
+ "country_id": 200,
+ "country_code": "SK",
+ "country_name": "Slovakia",
+ "state_code": "PV",
+ "type": null,
+ "latitude": "49.17167730",
+ "longitude": "21.37420010"
+ },
+ {
+ "id": 4358,
+ "name": "Trenฤรญn Region",
+ "country_id": 200,
+ "country_code": "SK",
+ "country_name": "Slovakia",
+ "state_code": "TC",
+ "type": null,
+ "latitude": "48.80867580",
+ "longitude": "18.23240260"
+ },
+ {
+ "id": 4355,
+ "name": "Trnava Region",
+ "country_id": 200,
+ "country_code": "SK",
+ "country_name": "Slovakia",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "48.39438980",
+ "longitude": "17.72162050"
+ },
+ {
+ "id": 4359,
+ "name": "ลฝilina Region",
+ "country_id": 200,
+ "country_code": "SK",
+ "country_name": "Slovakia",
+ "state_code": "ZI",
+ "type": null,
+ "latitude": "49.20314350",
+ "longitude": "19.36457330"
+ },
+ {
+ "id": 4183,
+ "name": "Ajdovลกฤina Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "001",
+ "type": null,
+ "latitude": "45.88707760",
+ "longitude": "13.90428180"
+ },
+ {
+ "id": 4326,
+ "name": "Ankaran Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "213",
+ "type": null,
+ "latitude": "45.57845100",
+ "longitude": "13.73691740"
+ },
+ {
+ "id": 4301,
+ "name": "Beltinci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "002",
+ "type": null,
+ "latitude": "46.60791530",
+ "longitude": "16.23651270"
+ },
+ {
+ "id": 4166,
+ "name": "Benedikt Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "148",
+ "type": null,
+ "latitude": "46.61558410",
+ "longitude": "15.89572810"
+ },
+ {
+ "id": 4179,
+ "name": "Bistrica ob Sotli Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "149",
+ "type": null,
+ "latitude": "46.05655790",
+ "longitude": "15.66259470"
+ },
+ {
+ "id": 4202,
+ "name": "Bled Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "003",
+ "type": null,
+ "latitude": "46.36832660",
+ "longitude": "14.11457980"
+ },
+ {
+ "id": 4278,
+ "name": "Bloke Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "150",
+ "type": null,
+ "latitude": "45.77281410",
+ "longitude": "14.50634590"
+ },
+ {
+ "id": 4282,
+ "name": "Bohinj Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "004",
+ "type": null,
+ "latitude": "46.30056520",
+ "longitude": "13.94271950"
+ },
+ {
+ "id": 4200,
+ "name": "Borovnica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "005",
+ "type": null,
+ "latitude": "45.90445250",
+ "longitude": "14.38241890"
+ },
+ {
+ "id": 4181,
+ "name": "Bovec Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "006",
+ "type": null,
+ "latitude": "46.33804950",
+ "longitude": "13.55241740"
+ },
+ {
+ "id": 4141,
+ "name": "Braslovฤe Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "151",
+ "type": null,
+ "latitude": "46.28361920",
+ "longitude": "15.04183200"
+ },
+ {
+ "id": 4240,
+ "name": "Brda Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "007",
+ "type": null,
+ "latitude": "45.99756520",
+ "longitude": "13.52704740"
+ },
+ {
+ "id": 4215,
+ "name": "Breลพice Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "009",
+ "type": null,
+ "latitude": "45.90410960",
+ "longitude": "15.59436390"
+ },
+ {
+ "id": 4165,
+ "name": "Brezovica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "008",
+ "type": null,
+ "latitude": "45.95593510",
+ "longitude": "14.43499520"
+ },
+ {
+ "id": 4147,
+ "name": "Cankova Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "152",
+ "type": null,
+ "latitude": "46.71823700",
+ "longitude": "16.01972220"
+ },
+ {
+ "id": 4310,
+ "name": "Cerklje na Gorenjskem Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "012",
+ "type": null,
+ "latitude": "46.25170540",
+ "longitude": "14.48579790"
+ },
+ {
+ "id": 4162,
+ "name": "Cerknica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "013",
+ "type": null,
+ "latitude": "45.79662550",
+ "longitude": "14.39217700"
+ },
+ {
+ "id": 4178,
+ "name": "Cerkno Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "014",
+ "type": null,
+ "latitude": "46.12884140",
+ "longitude": "13.98940270"
+ },
+ {
+ "id": 4176,
+ "name": "Cerkvenjak Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "153",
+ "type": null,
+ "latitude": "46.56707110",
+ "longitude": "15.94297530"
+ },
+ {
+ "id": 4191,
+ "name": "City Municipality of Celje",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "011",
+ "type": null,
+ "latitude": "46.23974950",
+ "longitude": "15.26770630"
+ },
+ {
+ "id": 4236,
+ "name": "City Municipality of Novo Mesto",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "085",
+ "type": null,
+ "latitude": "45.80108240",
+ "longitude": "15.17100890"
+ },
+ {
+ "id": 4151,
+ "name": "ฤrenลกovci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "015",
+ "type": null,
+ "latitude": "46.57200290",
+ "longitude": "16.28773460"
+ },
+ {
+ "id": 4232,
+ "name": "ฤrna na Koroลกkem Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "016",
+ "type": null,
+ "latitude": "46.47045290",
+ "longitude": "14.84999980"
+ },
+ {
+ "id": 4291,
+ "name": "ฤrnomelj Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "017",
+ "type": null,
+ "latitude": "45.53612250",
+ "longitude": "15.19441430"
+ },
+ {
+ "id": 4304,
+ "name": "Destrnik Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "018",
+ "type": null,
+ "latitude": "46.49223680",
+ "longitude": "15.87779560"
+ },
+ {
+ "id": 4167,
+ "name": "Divaฤa Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "019",
+ "type": null,
+ "latitude": "45.68060690",
+ "longitude": "13.97203120"
+ },
+ {
+ "id": 4295,
+ "name": "Dobje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "154",
+ "type": null,
+ "latitude": "46.13700370",
+ "longitude": "15.39412900"
+ },
+ {
+ "id": 4216,
+ "name": "Dobrepolje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "020",
+ "type": null,
+ "latitude": "45.85249510",
+ "longitude": "14.70831090"
+ },
+ {
+ "id": 4252,
+ "name": "Dobrna Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "155",
+ "type": null,
+ "latitude": "46.33561410",
+ "longitude": "15.22597320"
+ },
+ {
+ "id": 4308,
+ "name": "DobrovaโPolhov Gradec Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "021",
+ "type": null,
+ "latitude": "46.06488960",
+ "longitude": "14.31681950"
+ },
+ {
+ "id": 4189,
+ "name": "Dobrovnik Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "156",
+ "type": null,
+ "latitude": "46.65386620",
+ "longitude": "16.35065940"
+ },
+ {
+ "id": 4173,
+ "name": "Dol pri Ljubljani Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "022",
+ "type": null,
+ "latitude": "46.08843860",
+ "longitude": "14.64247920"
+ },
+ {
+ "id": 4281,
+ "name": "Dolenjske Toplice Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "157",
+ "type": null,
+ "latitude": "45.73457110",
+ "longitude": "15.01294930"
+ },
+ {
+ "id": 4159,
+ "name": "Domลพale Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "023",
+ "type": null,
+ "latitude": "46.14382690",
+ "longitude": "14.63752790"
+ },
+ {
+ "id": 4290,
+ "name": "Dornava Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "024",
+ "type": null,
+ "latitude": "46.44435130",
+ "longitude": "15.98891590"
+ },
+ {
+ "id": 4345,
+ "name": "Dravograd Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "025",
+ "type": null,
+ "latitude": "46.58921900",
+ "longitude": "15.02460210"
+ },
+ {
+ "id": 4213,
+ "name": "Duplek Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "026",
+ "type": null,
+ "latitude": "46.50100160",
+ "longitude": "15.75463070"
+ },
+ {
+ "id": 4293,
+ "name": "Gorenja VasโPoljane Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "027",
+ "type": null,
+ "latitude": "46.11165820",
+ "longitude": "14.11493480"
+ },
+ {
+ "id": 4210,
+ "name": "Goriลกnica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "028",
+ "type": null,
+ "latitude": "46.41202710",
+ "longitude": "16.01330890"
+ },
+ {
+ "id": 4284,
+ "name": "Gorje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "207",
+ "type": null,
+ "latitude": "46.38024580",
+ "longitude": "14.06853390"
+ },
+ {
+ "id": 4343,
+ "name": "Gornja Radgona Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "029",
+ "type": null,
+ "latitude": "46.67670990",
+ "longitude": "15.99108470"
+ },
+ {
+ "id": 4339,
+ "name": "Gornji Grad Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "030",
+ "type": null,
+ "latitude": "46.29617120",
+ "longitude": "14.80623470"
+ },
+ {
+ "id": 4271,
+ "name": "Gornji Petrovci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "031",
+ "type": null,
+ "latitude": "46.80371280",
+ "longitude": "16.21913790"
+ },
+ {
+ "id": 4217,
+ "name": "Grad Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "158",
+ "type": null,
+ "latitude": "46.80873200",
+ "longitude": "16.10920600"
+ },
+ {
+ "id": 4336,
+ "name": "Grosuplje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "032",
+ "type": null,
+ "latitude": "45.95576450",
+ "longitude": "14.65889900"
+ },
+ {
+ "id": 4145,
+ "name": "Hajdina Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "159",
+ "type": null,
+ "latitude": "46.41850140",
+ "longitude": "15.82447220"
+ },
+ {
+ "id": 4175,
+ "name": "HoฤeโSlivnica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "160",
+ "type": null,
+ "latitude": "46.47785800",
+ "longitude": "15.64760050"
+ },
+ {
+ "id": 4327,
+ "name": "Hodoลก Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "161",
+ "type": null,
+ "latitude": "46.83141340",
+ "longitude": "16.32106800"
+ },
+ {
+ "id": 4193,
+ "name": "Horjul Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "162",
+ "type": null,
+ "latitude": "46.02253780",
+ "longitude": "14.29862690"
+ },
+ {
+ "id": 4341,
+ "name": "Hrastnik Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "034",
+ "type": null,
+ "latitude": "46.14172880",
+ "longitude": "15.08448940"
+ },
+ {
+ "id": 4321,
+ "name": "HrpeljeโKozina Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "035",
+ "type": null,
+ "latitude": "45.60911920",
+ "longitude": "13.93791480"
+ },
+ {
+ "id": 4152,
+ "name": "Idrija Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "036",
+ "type": null,
+ "latitude": "46.00409390",
+ "longitude": "13.97754930"
+ },
+ {
+ "id": 4286,
+ "name": "Ig Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "037",
+ "type": null,
+ "latitude": "45.95888680",
+ "longitude": "14.52705280"
+ },
+ {
+ "id": 4305,
+ "name": "Ivanฤna Gorica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "039",
+ "type": null,
+ "latitude": "45.93958410",
+ "longitude": "14.80476260"
+ },
+ {
+ "id": 4322,
+ "name": "Izola Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "040",
+ "type": null,
+ "latitude": "45.53135570",
+ "longitude": "13.66646490"
+ },
+ {
+ "id": 4337,
+ "name": "Jesenice Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "041",
+ "type": null,
+ "latitude": "46.43670470",
+ "longitude": "14.05260570"
+ },
+ {
+ "id": 4203,
+ "name": "Jezersko Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "163",
+ "type": null,
+ "latitude": "46.39427940",
+ "longitude": "14.49855590"
+ },
+ {
+ "id": 4266,
+ "name": "Jurลกinci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "042",
+ "type": null,
+ "latitude": "46.48986510",
+ "longitude": "15.98092300"
+ },
+ {
+ "id": 4180,
+ "name": "Kamnik Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "043",
+ "type": null,
+ "latitude": "46.22216660",
+ "longitude": "14.60707270"
+ },
+ {
+ "id": 4227,
+ "name": "Kanal ob Soฤi Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "044",
+ "type": null,
+ "latitude": "46.06735300",
+ "longitude": "13.62033500"
+ },
+ {
+ "id": 4150,
+ "name": "Kidriฤevo Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "045",
+ "type": null,
+ "latitude": "46.39575720",
+ "longitude": "15.79259060"
+ },
+ {
+ "id": 4243,
+ "name": "Kobarid Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "046",
+ "type": null,
+ "latitude": "46.24569710",
+ "longitude": "13.57869490"
+ },
+ {
+ "id": 4325,
+ "name": "Kobilje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "047",
+ "type": null,
+ "latitude": "46.68518000",
+ "longitude": "16.39367190"
+ },
+ {
+ "id": 4335,
+ "name": "Koฤevje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "048",
+ "type": null,
+ "latitude": "45.64280000",
+ "longitude": "14.86158380"
+ },
+ {
+ "id": 4315,
+ "name": "Komen Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "049",
+ "type": null,
+ "latitude": "45.81752350",
+ "longitude": "13.74827110"
+ },
+ {
+ "id": 4283,
+ "name": "Komenda Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "164",
+ "type": null,
+ "latitude": "46.20648800",
+ "longitude": "14.53824990"
+ },
+ {
+ "id": 4319,
+ "name": "Koper City Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "050",
+ "type": null,
+ "latitude": "45.54805900",
+ "longitude": "13.73018770"
+ },
+ {
+ "id": 4254,
+ "name": "Kostanjevica na Krki Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "197",
+ "type": null,
+ "latitude": "45.83166380",
+ "longitude": "15.44119060"
+ },
+ {
+ "id": 4331,
+ "name": "Kostel Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "165",
+ "type": null,
+ "latitude": "45.49282550",
+ "longitude": "14.87082350"
+ },
+ {
+ "id": 4186,
+ "name": "Kozje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "051",
+ "type": null,
+ "latitude": "46.07332110",
+ "longitude": "15.55967190"
+ },
+ {
+ "id": 4287,
+ "name": "Kranj City Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "052",
+ "type": null,
+ "latitude": "46.25850210",
+ "longitude": "14.35435690"
+ },
+ {
+ "id": 4340,
+ "name": "Kranjska Gora Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "053",
+ "type": null,
+ "latitude": "46.48452930",
+ "longitude": "13.78571450"
+ },
+ {
+ "id": 4238,
+ "name": "Kriลพevci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "166",
+ "type": null,
+ "latitude": "46.57018210",
+ "longitude": "16.10926530"
+ },
+ {
+ "id": 4197,
+ "name": "Kungota",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "055",
+ "type": null,
+ "latitude": "46.64187930",
+ "longitude": "15.60362880"
+ },
+ {
+ "id": 4211,
+ "name": "Kuzma Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "056",
+ "type": null,
+ "latitude": "46.83510380",
+ "longitude": "16.08071000"
+ },
+ {
+ "id": 4338,
+ "name": "Laลกko Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "057",
+ "type": null,
+ "latitude": "46.15422360",
+ "longitude": "15.23614910"
+ },
+ {
+ "id": 4142,
+ "name": "Lenart Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "058",
+ "type": null,
+ "latitude": "46.58344240",
+ "longitude": "15.82621250"
+ },
+ {
+ "id": 4225,
+ "name": "Lendava Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "059",
+ "type": null,
+ "latitude": "46.55134830",
+ "longitude": "16.44198390"
+ },
+ {
+ "id": 4347,
+ "name": "Litija Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "060",
+ "type": null,
+ "latitude": "46.05732260",
+ "longitude": "14.83096360"
+ },
+ {
+ "id": 4270,
+ "name": "Ljubljana City Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "061",
+ "type": null,
+ "latitude": "46.05694650",
+ "longitude": "14.50575150"
+ },
+ {
+ "id": 4294,
+ "name": "Ljubno Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "062",
+ "type": null,
+ "latitude": "46.34431250",
+ "longitude": "14.83354920"
+ },
+ {
+ "id": 4351,
+ "name": "Ljutomer Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "063",
+ "type": null,
+ "latitude": "46.51908480",
+ "longitude": "16.18932160"
+ },
+ {
+ "id": 4306,
+ "name": "LogโDragomer Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "208",
+ "type": null,
+ "latitude": "46.01787470",
+ "longitude": "14.36877670"
+ },
+ {
+ "id": 4350,
+ "name": "Logatec Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "064",
+ "type": null,
+ "latitude": "45.91761100",
+ "longitude": "14.23514510"
+ },
+ {
+ "id": 4174,
+ "name": "Loลกka Dolina Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "065",
+ "type": null,
+ "latitude": "45.64779080",
+ "longitude": "14.49731470"
+ },
+ {
+ "id": 4158,
+ "name": "Loลกki Potok Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "066",
+ "type": null,
+ "latitude": "45.69096370",
+ "longitude": "14.59859700"
+ },
+ {
+ "id": 4156,
+ "name": "Lovrenc na Pohorju Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "167",
+ "type": null,
+ "latitude": "46.54196380",
+ "longitude": "15.40004430"
+ },
+ {
+ "id": 4219,
+ "name": "Luฤe Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "067",
+ "type": null,
+ "latitude": "46.35449250",
+ "longitude": "14.74715040"
+ },
+ {
+ "id": 4302,
+ "name": "Lukovica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "068",
+ "type": null,
+ "latitude": "46.16962930",
+ "longitude": "14.69072590"
+ },
+ {
+ "id": 4157,
+ "name": "Majลกperk Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "069",
+ "type": null,
+ "latitude": "46.35030190",
+ "longitude": "15.73405950"
+ },
+ {
+ "id": 4224,
+ "name": "Makole Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "198",
+ "type": null,
+ "latitude": "46.31686970",
+ "longitude": "15.66641260"
+ },
+ {
+ "id": 4242,
+ "name": "Maribor City Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "070",
+ "type": null,
+ "latitude": "46.55064960",
+ "longitude": "15.62054390"
+ },
+ {
+ "id": 4244,
+ "name": "Markovci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "168",
+ "type": null,
+ "latitude": "46.38793090",
+ "longitude": "15.95860140"
+ },
+ {
+ "id": 4349,
+ "name": "Medvode Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "071",
+ "type": null,
+ "latitude": "46.14190800",
+ "longitude": "14.40325960"
+ },
+ {
+ "id": 4348,
+ "name": "Mengeลก Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "072",
+ "type": null,
+ "latitude": "46.16591220",
+ "longitude": "14.57196940"
+ },
+ {
+ "id": 4323,
+ "name": "Metlika Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "073",
+ "type": null,
+ "latitude": "45.64807150",
+ "longitude": "15.31778380"
+ },
+ {
+ "id": 4265,
+ "name": "Meลพica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "074",
+ "type": null,
+ "latitude": "46.52150270",
+ "longitude": "14.85213400"
+ },
+ {
+ "id": 4223,
+ "name": "Miklavลพ na Dravskem Polju Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "169",
+ "type": null,
+ "latitude": "46.50826280",
+ "longitude": "15.69520650"
+ },
+ {
+ "id": 4220,
+ "name": "MirenโKostanjevica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "075",
+ "type": null,
+ "latitude": "45.84360290",
+ "longitude": "13.62766470"
+ },
+ {
+ "id": 4298,
+ "name": "Mirna Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "212",
+ "type": null,
+ "latitude": "45.95156470",
+ "longitude": "15.06209770"
+ },
+ {
+ "id": 4237,
+ "name": "Mirna Peฤ Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "170",
+ "type": null,
+ "latitude": "45.84815740",
+ "longitude": "15.08794500"
+ },
+ {
+ "id": 4212,
+ "name": "Mislinja Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "076",
+ "type": null,
+ "latitude": "46.44294030",
+ "longitude": "15.19876780"
+ },
+ {
+ "id": 4297,
+ "name": "MokronogโTrebelno Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "199",
+ "type": null,
+ "latitude": "45.90885290",
+ "longitude": "15.15967360"
+ },
+ {
+ "id": 4168,
+ "name": "Moravฤe Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "077",
+ "type": null,
+ "latitude": "46.13627810",
+ "longitude": "14.74600100"
+ },
+ {
+ "id": 4218,
+ "name": "Moravske Toplice Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "078",
+ "type": null,
+ "latitude": "46.68569320",
+ "longitude": "16.22245820"
+ },
+ {
+ "id": 4190,
+ "name": "Mozirje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "079",
+ "type": null,
+ "latitude": "46.33943500",
+ "longitude": "14.96024130"
+ },
+ {
+ "id": 4318,
+ "name": "Municipality of Apaฤe",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "195",
+ "type": null,
+ "latitude": "46.69746790",
+ "longitude": "15.91025340"
+ },
+ {
+ "id": 4309,
+ "name": "Municipality of Cirkulane",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "196",
+ "type": null,
+ "latitude": "46.32983220",
+ "longitude": "15.99806660"
+ },
+ {
+ "id": 4344,
+ "name": "Municipality of Ilirska Bistrica",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "038",
+ "type": null,
+ "latitude": "45.57913230",
+ "longitude": "14.28097290"
+ },
+ {
+ "id": 4314,
+ "name": "Municipality of Krลกko",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "054",
+ "type": null,
+ "latitude": "45.95896090",
+ "longitude": "15.49235550"
+ },
+ {
+ "id": 4187,
+ "name": "Municipality of ล kofljica",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "123",
+ "type": null,
+ "latitude": "45.98409620",
+ "longitude": "14.57466260"
+ },
+ {
+ "id": 4313,
+ "name": "Murska Sobota City Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "080",
+ "type": null,
+ "latitude": "46.64321470",
+ "longitude": "16.15157540"
+ },
+ {
+ "id": 4208,
+ "name": "Muta Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "081",
+ "type": null,
+ "latitude": "46.60973660",
+ "longitude": "15.16299950"
+ },
+ {
+ "id": 4177,
+ "name": "Naklo Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "082",
+ "type": null,
+ "latitude": "46.27186630",
+ "longitude": "14.31569320"
+ },
+ {
+ "id": 4329,
+ "name": "Nazarje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "083",
+ "type": null,
+ "latitude": "46.28217410",
+ "longitude": "14.92256290"
+ },
+ {
+ "id": 4205,
+ "name": "Nova Gorica City Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "084",
+ "type": null,
+ "latitude": "45.97627600",
+ "longitude": "13.73088810"
+ },
+ {
+ "id": 4320,
+ "name": "Odranci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "086",
+ "type": null,
+ "latitude": "46.59010170",
+ "longitude": "16.27881650"
+ },
+ {
+ "id": 4143,
+ "name": "Oplotnica",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "171",
+ "type": null,
+ "latitude": "46.38716300",
+ "longitude": "15.44581310"
+ },
+ {
+ "id": 4221,
+ "name": "Ormoลพ Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "087",
+ "type": null,
+ "latitude": "46.43533330",
+ "longitude": "16.15437400"
+ },
+ {
+ "id": 4199,
+ "name": "Osilnica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "088",
+ "type": null,
+ "latitude": "45.54184670",
+ "longitude": "14.71563030"
+ },
+ {
+ "id": 4172,
+ "name": "Pesnica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "089",
+ "type": null,
+ "latitude": "46.60887550",
+ "longitude": "15.67570510"
+ },
+ {
+ "id": 4201,
+ "name": "Piran Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "090",
+ "type": null,
+ "latitude": "45.52888560",
+ "longitude": "13.56807350"
+ },
+ {
+ "id": 4184,
+ "name": "Pivka Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "091",
+ "type": null,
+ "latitude": "45.67892960",
+ "longitude": "14.25426890"
+ },
+ {
+ "id": 4146,
+ "name": "Podฤetrtek Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "092",
+ "type": null,
+ "latitude": "46.17395420",
+ "longitude": "15.60138160"
+ },
+ {
+ "id": 4161,
+ "name": "Podlehnik Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "172",
+ "type": null,
+ "latitude": "46.33107820",
+ "longitude": "15.87858360"
+ },
+ {
+ "id": 4234,
+ "name": "Podvelka Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "093",
+ "type": null,
+ "latitude": "46.62219520",
+ "longitude": "15.38899220"
+ },
+ {
+ "id": 4239,
+ "name": "Poljฤane Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "200",
+ "type": null,
+ "latitude": "46.31398530",
+ "longitude": "15.57847910"
+ },
+ {
+ "id": 4272,
+ "name": "Polzela Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "173",
+ "type": null,
+ "latitude": "46.28089700",
+ "longitude": "15.07373210"
+ },
+ {
+ "id": 4330,
+ "name": "Postojna Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "094",
+ "type": null,
+ "latitude": "45.77493900",
+ "longitude": "14.21342630"
+ },
+ {
+ "id": 4188,
+ "name": "Prebold Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "174",
+ "type": null,
+ "latitude": "46.23591360",
+ "longitude": "15.09369120"
+ },
+ {
+ "id": 4303,
+ "name": "Preddvor Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "095",
+ "type": null,
+ "latitude": "46.30171390",
+ "longitude": "14.42181650"
+ },
+ {
+ "id": 4274,
+ "name": "Prevalje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "175",
+ "type": null,
+ "latitude": "46.56211460",
+ "longitude": "14.88478610"
+ },
+ {
+ "id": 4228,
+ "name": "Ptuj City Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "096",
+ "type": null,
+ "latitude": "46.41995350",
+ "longitude": "15.86968840"
+ },
+ {
+ "id": 4288,
+ "name": "Puconci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "097",
+ "type": null,
+ "latitude": "46.72004180",
+ "longitude": "16.09977920"
+ },
+ {
+ "id": 4204,
+ "name": "RaฤeโFram Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "098",
+ "type": null,
+ "latitude": "46.45420830",
+ "longitude": "15.63294670"
+ },
+ {
+ "id": 4195,
+ "name": "Radeฤe Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "099",
+ "type": null,
+ "latitude": "46.06669540",
+ "longitude": "15.18204380"
+ },
+ {
+ "id": 4292,
+ "name": "Radenci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "100",
+ "type": null,
+ "latitude": "46.62311210",
+ "longitude": "16.05069030"
+ },
+ {
+ "id": 4275,
+ "name": "Radlje ob Dravi Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "101",
+ "type": null,
+ "latitude": "46.61357320",
+ "longitude": "15.23544380"
+ },
+ {
+ "id": 4231,
+ "name": "Radovljica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "102",
+ "type": null,
+ "latitude": "46.33558270",
+ "longitude": "14.20945340"
+ },
+ {
+ "id": 4155,
+ "name": "Ravne na Koroลกkem Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "103",
+ "type": null,
+ "latitude": "46.55211940",
+ "longitude": "14.95990840"
+ },
+ {
+ "id": 4206,
+ "name": "Razkriลพje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "176",
+ "type": null,
+ "latitude": "46.52263390",
+ "longitude": "16.26686380"
+ },
+ {
+ "id": 4160,
+ "name": "Reฤica ob Savinji Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "209",
+ "type": null,
+ "latitude": "46.32337900",
+ "longitude": "14.92236700"
+ },
+ {
+ "id": 4253,
+ "name": "RenฤeโVogrsko Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "201",
+ "type": null,
+ "latitude": "45.89546170",
+ "longitude": "13.67856730"
+ },
+ {
+ "id": 4235,
+ "name": "Ribnica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "104",
+ "type": null,
+ "latitude": "45.74003030",
+ "longitude": "14.72657820"
+ },
+ {
+ "id": 4207,
+ "name": "Ribnica na Pohorju Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "177",
+ "type": null,
+ "latitude": "46.53561450",
+ "longitude": "15.26745380"
+ },
+ {
+ "id": 4233,
+ "name": "Rogaลกka Slatina Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "106",
+ "type": null,
+ "latitude": "46.24539730",
+ "longitude": "15.62650140"
+ },
+ {
+ "id": 4264,
+ "name": "Rogaลกovci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "105",
+ "type": null,
+ "latitude": "46.80557850",
+ "longitude": "16.03452370"
+ },
+ {
+ "id": 4209,
+ "name": "Rogatec Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "107",
+ "type": null,
+ "latitude": "46.22866260",
+ "longitude": "15.69913380"
+ },
+ {
+ "id": 4280,
+ "name": "Ruลกe Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "108",
+ "type": null,
+ "latitude": "46.52062650",
+ "longitude": "15.48178690"
+ },
+ {
+ "id": 4222,
+ "name": "ล alovci Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "033",
+ "type": null,
+ "latitude": "46.85335680",
+ "longitude": "16.25917910"
+ },
+ {
+ "id": 4230,
+ "name": "Selnica ob Dravi Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "178",
+ "type": null,
+ "latitude": "46.55139180",
+ "longitude": "15.49294100"
+ },
+ {
+ "id": 4346,
+ "name": "Semiฤ Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "109",
+ "type": null,
+ "latitude": "45.65205340",
+ "longitude": "15.18207010"
+ },
+ {
+ "id": 4317,
+ "name": "ล empeterโVrtojba Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "183",
+ "type": null,
+ "latitude": "45.92900950",
+ "longitude": "13.64155940"
+ },
+ {
+ "id": 4299,
+ "name": "ล enฤur Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "117",
+ "type": null,
+ "latitude": "46.24336990",
+ "longitude": "14.41922230"
+ },
+ {
+ "id": 4324,
+ "name": "ล entilj Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "118",
+ "type": null,
+ "latitude": "46.68628390",
+ "longitude": "15.71035670"
+ },
+ {
+ "id": 4241,
+ "name": "ล entjernej Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "119",
+ "type": null,
+ "latitude": "45.84341300",
+ "longitude": "15.33783120"
+ },
+ {
+ "id": 4171,
+ "name": "ล entjur Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "120",
+ "type": null,
+ "latitude": "46.26543390",
+ "longitude": "15.40800000"
+ },
+ {
+ "id": 4311,
+ "name": "ล entrupert Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "211",
+ "type": null,
+ "latitude": "45.98731420",
+ "longitude": "15.08297830"
+ },
+ {
+ "id": 4268,
+ "name": "Sevnica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "110",
+ "type": null,
+ "latitude": "46.00703170",
+ "longitude": "15.30456790"
+ },
+ {
+ "id": 4149,
+ "name": "Seลพana Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "111",
+ "type": null,
+ "latitude": "45.72751090",
+ "longitude": "13.86619310"
+ },
+ {
+ "id": 4170,
+ "name": "ล kocjan Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "121",
+ "type": null,
+ "latitude": "45.91754540",
+ "longitude": "15.31017360"
+ },
+ {
+ "id": 4316,
+ "name": "ล kofja Loka Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "122",
+ "type": null,
+ "latitude": "46.14098440",
+ "longitude": "14.28118730"
+ },
+ {
+ "id": 4169,
+ "name": "Slovenj Gradec City Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "112",
+ "type": null,
+ "latitude": "46.48777180",
+ "longitude": "15.07294780"
+ },
+ {
+ "id": 4332,
+ "name": "Slovenska Bistrica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "113",
+ "type": null,
+ "latitude": "46.39198130",
+ "longitude": "15.57278690"
+ },
+ {
+ "id": 4198,
+ "name": "Slovenske Konjice Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "114",
+ "type": null,
+ "latitude": "46.33691910",
+ "longitude": "15.42147080"
+ },
+ {
+ "id": 4285,
+ "name": "ล marje pri Jelลกah Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "124",
+ "type": null,
+ "latitude": "46.22870250",
+ "longitude": "15.51903530"
+ },
+ {
+ "id": 4289,
+ "name": "ล marjeลกke Toplice Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "206",
+ "type": null,
+ "latitude": "45.86803770",
+ "longitude": "15.23474220"
+ },
+ {
+ "id": 4296,
+ "name": "ล martno ob Paki Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "125",
+ "type": null,
+ "latitude": "46.32903720",
+ "longitude": "15.03339370"
+ },
+ {
+ "id": 4279,
+ "name": "ล martno pri Litiji Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "194",
+ "type": null,
+ "latitude": "46.04549710",
+ "longitude": "14.84101330"
+ },
+ {
+ "id": 4277,
+ "name": "Sodraลพica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "179",
+ "type": null,
+ "latitude": "45.76165650",
+ "longitude": "14.63528530"
+ },
+ {
+ "id": 4261,
+ "name": "Solฤava Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "180",
+ "type": null,
+ "latitude": "46.40235260",
+ "longitude": "14.68023040"
+ },
+ {
+ "id": 4248,
+ "name": "ล oลกtanj Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "126",
+ "type": null,
+ "latitude": "46.37828360",
+ "longitude": "15.04613780"
+ },
+ {
+ "id": 4263,
+ "name": "Srediลกฤe ob Dravi",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "202",
+ "type": null,
+ "latitude": "46.39592820",
+ "longitude": "16.27049150"
+ },
+ {
+ "id": 4259,
+ "name": "Starลกe Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "115",
+ "type": null,
+ "latitude": "46.46743310",
+ "longitude": "15.76405460"
+ },
+ {
+ "id": 4185,
+ "name": "ล tore Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "127",
+ "type": null,
+ "latitude": "46.22225140",
+ "longitude": "15.31261160"
+ },
+ {
+ "id": 4333,
+ "name": "Straลพa Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "203",
+ "type": null,
+ "latitude": "45.77684280",
+ "longitude": "15.09486940"
+ },
+ {
+ "id": 4164,
+ "name": "Sveta Ana Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "181",
+ "type": null,
+ "latitude": "46.65000000",
+ "longitude": "15.84527800"
+ },
+ {
+ "id": 4260,
+ "name": "Sveta Trojica v Slovenskih Goricah Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "204",
+ "type": null,
+ "latitude": "46.56808090",
+ "longitude": "15.88230640"
+ },
+ {
+ "id": 4229,
+ "name": "Sveti Andraลพ v Slovenskih Goricah Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "182",
+ "type": null,
+ "latitude": "46.51897470",
+ "longitude": "15.94982620"
+ },
+ {
+ "id": 4255,
+ "name": "Sveti Jurij ob ล ฤavnici Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "116",
+ "type": null,
+ "latitude": "46.56874520",
+ "longitude": "16.02225280"
+ },
+ {
+ "id": 4328,
+ "name": "Sveti Jurij v Slovenskih Goricah Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "210",
+ "type": null,
+ "latitude": "46.61707910",
+ "longitude": "15.78046770"
+ },
+ {
+ "id": 4273,
+ "name": "Sveti Tomaลพ Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "205",
+ "type": null,
+ "latitude": "46.48352830",
+ "longitude": "16.07944200"
+ },
+ {
+ "id": 4194,
+ "name": "Tabor Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "184",
+ "type": null,
+ "latitude": "46.21079210",
+ "longitude": "15.01742490"
+ },
+ {
+ "id": 4312,
+ "name": "Tiลกina Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "010",
+ "type": null,
+ "latitude": "46.65418840",
+ "longitude": "16.07547810"
+ },
+ {
+ "id": 4247,
+ "name": "Tolmin Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "128",
+ "type": null,
+ "latitude": "46.18571880",
+ "longitude": "13.73198380"
+ },
+ {
+ "id": 4246,
+ "name": "Trbovlje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "129",
+ "type": null,
+ "latitude": "46.15035630",
+ "longitude": "15.04531370"
+ },
+ {
+ "id": 4214,
+ "name": "Trebnje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "130",
+ "type": null,
+ "latitude": "45.90801630",
+ "longitude": "15.01319050"
+ },
+ {
+ "id": 4153,
+ "name": "Trnovska Vas Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "185",
+ "type": null,
+ "latitude": "46.52940350",
+ "longitude": "15.88531180"
+ },
+ {
+ "id": 4250,
+ "name": "Trลพiฤ Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "131",
+ "type": null,
+ "latitude": "46.35935140",
+ "longitude": "14.30066230"
+ },
+ {
+ "id": 4334,
+ "name": "Trzin Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "186",
+ "type": null,
+ "latitude": "46.12982410",
+ "longitude": "14.55776370"
+ },
+ {
+ "id": 4251,
+ "name": "Turniลกฤe Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "132",
+ "type": null,
+ "latitude": "46.61375040",
+ "longitude": "16.32021000"
+ },
+ {
+ "id": 4267,
+ "name": "Velika Polana Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "187",
+ "type": null,
+ "latitude": "46.57317150",
+ "longitude": "16.34441260"
+ },
+ {
+ "id": 4144,
+ "name": "Velike Laลกฤe Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "134",
+ "type": null,
+ "latitude": "45.83365910",
+ "longitude": "14.63623630"
+ },
+ {
+ "id": 4257,
+ "name": "Verลพej Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "188",
+ "type": null,
+ "latitude": "46.58411350",
+ "longitude": "16.16208000"
+ },
+ {
+ "id": 4300,
+ "name": "Videm Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "135",
+ "type": null,
+ "latitude": "46.36383300",
+ "longitude": "15.87812120"
+ },
+ {
+ "id": 4196,
+ "name": "Vipava Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "136",
+ "type": null,
+ "latitude": "45.84126740",
+ "longitude": "13.96096130"
+ },
+ {
+ "id": 4148,
+ "name": "Vitanje Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "137",
+ "type": null,
+ "latitude": "46.38153230",
+ "longitude": "15.29506870"
+ },
+ {
+ "id": 4154,
+ "name": "Vodice Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "138",
+ "type": null,
+ "latitude": "46.18966430",
+ "longitude": "14.49385390"
+ },
+ {
+ "id": 4245,
+ "name": "Vojnik Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "139",
+ "type": null,
+ "latitude": "46.29205810",
+ "longitude": "15.30205800"
+ },
+ {
+ "id": 4163,
+ "name": "Vransko Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "189",
+ "type": null,
+ "latitude": "46.23900600",
+ "longitude": "14.95272490"
+ },
+ {
+ "id": 4262,
+ "name": "Vrhnika Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "140",
+ "type": null,
+ "latitude": "45.95027190",
+ "longitude": "14.32764220"
+ },
+ {
+ "id": 4226,
+ "name": "Vuzenica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "141",
+ "type": null,
+ "latitude": "46.59808360",
+ "longitude": "15.16572370"
+ },
+ {
+ "id": 4269,
+ "name": "Zagorje ob Savi Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "142",
+ "type": null,
+ "latitude": "46.13452020",
+ "longitude": "14.99643840"
+ },
+ {
+ "id": 4258,
+ "name": "ลฝalec Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "190",
+ "type": null,
+ "latitude": "46.25197120",
+ "longitude": "15.16500720"
+ },
+ {
+ "id": 4182,
+ "name": "Zavrฤ Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "143",
+ "type": null,
+ "latitude": "46.35713000",
+ "longitude": "16.04777470"
+ },
+ {
+ "id": 4256,
+ "name": "ลฝelezniki Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "146",
+ "type": null,
+ "latitude": "46.22563770",
+ "longitude": "14.16936170"
+ },
+ {
+ "id": 4249,
+ "name": "ลฝetale Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "191",
+ "type": null,
+ "latitude": "46.27428330",
+ "longitude": "15.79133590"
+ },
+ {
+ "id": 4192,
+ "name": "ลฝiri Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "147",
+ "type": null,
+ "latitude": "46.04724990",
+ "longitude": "14.10984510"
+ },
+ {
+ "id": 4276,
+ "name": "ลฝirovnica Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "192",
+ "type": null,
+ "latitude": "46.39544030",
+ "longitude": "14.15396320"
+ },
+ {
+ "id": 4342,
+ "name": "Zreฤe Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "144",
+ "type": null,
+ "latitude": "46.41777860",
+ "longitude": "15.37094310"
+ },
+ {
+ "id": 4307,
+ "name": "ลฝuลพemberk Municipality",
+ "country_id": 201,
+ "country_code": "SI",
+ "country_name": "Slovenia",
+ "state_code": "193",
+ "type": null,
+ "latitude": "45.82003500",
+ "longitude": "14.95359190"
+ },
+ {
+ "id": 4784,
+ "name": "Central Province",
+ "country_id": 202,
+ "country_code": "SB",
+ "country_name": "Solomon Islands",
+ "state_code": "CE",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 4781,
+ "name": "Choiseul Province",
+ "country_id": 202,
+ "country_code": "SB",
+ "country_name": "Solomon Islands",
+ "state_code": "CH",
+ "type": null,
+ "latitude": "-7.05014940",
+ "longitude": "156.95114590"
+ },
+ {
+ "id": 4785,
+ "name": "Guadalcanal Province",
+ "country_id": 202,
+ "country_code": "SB",
+ "country_name": "Solomon Islands",
+ "state_code": "GU",
+ "type": null,
+ "latitude": "-9.57732840",
+ "longitude": "160.14558050"
+ },
+ {
+ "id": 4778,
+ "name": "Honiara",
+ "country_id": 202,
+ "country_code": "SB",
+ "country_name": "Solomon Islands",
+ "state_code": "CT",
+ "type": null,
+ "latitude": "-9.44563810",
+ "longitude": "159.97289990"
+ },
+ {
+ "id": 4780,
+ "name": "Isabel Province",
+ "country_id": 202,
+ "country_code": "SB",
+ "country_name": "Solomon Islands",
+ "state_code": "IS",
+ "type": null,
+ "latitude": "-8.05923530",
+ "longitude": "159.14470810"
+ },
+ {
+ "id": 4782,
+ "name": "Makira-Ulawa Province",
+ "country_id": 202,
+ "country_code": "SB",
+ "country_name": "Solomon Islands",
+ "state_code": "MK",
+ "type": null,
+ "latitude": "-10.57374470",
+ "longitude": "161.80969410"
+ },
+ {
+ "id": 4783,
+ "name": "Malaita Province",
+ "country_id": 202,
+ "country_code": "SB",
+ "country_name": "Solomon Islands",
+ "state_code": "ML",
+ "type": null,
+ "latitude": "-8.94461680",
+ "longitude": "160.90712360"
+ },
+ {
+ "id": 4787,
+ "name": "Rennell and Bellona Province",
+ "country_id": 202,
+ "country_code": "SB",
+ "country_name": "Solomon Islands",
+ "state_code": "RB",
+ "type": null,
+ "latitude": "-11.61314350",
+ "longitude": "160.16939490"
+ },
+ {
+ "id": 4779,
+ "name": "Temotu Province",
+ "country_id": 202,
+ "country_code": "SB",
+ "country_name": "Solomon Islands",
+ "state_code": "TE",
+ "type": null,
+ "latitude": "-10.68692900",
+ "longitude": "166.06239790"
+ },
+ {
+ "id": 4786,
+ "name": "Western Province",
+ "country_id": 202,
+ "country_code": "SB",
+ "country_name": "Solomon Islands",
+ "state_code": "WE",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 925,
+ "name": "Awdal Region",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "AW",
+ "type": null,
+ "latitude": "10.63342850",
+ "longitude": "43.32946600"
+ },
+ {
+ "id": 917,
+ "name": "Bakool",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "BK",
+ "type": null,
+ "latitude": "4.36572210",
+ "longitude": "44.09603110"
+ },
+ {
+ "id": 927,
+ "name": "Banaadir",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "BN",
+ "type": null,
+ "latitude": "2.11873750",
+ "longitude": "45.33694590"
+ },
+ {
+ "id": 930,
+ "name": "Bari",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "BR",
+ "type": null,
+ "latitude": "41.11714320",
+ "longitude": "16.87187150"
+ },
+ {
+ "id": 926,
+ "name": "Bay",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "BY",
+ "type": null,
+ "latitude": "37.03655340",
+ "longitude": "-95.61747670"
+ },
+ {
+ "id": 918,
+ "name": "Galguduud",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "GA",
+ "type": null,
+ "latitude": "5.18501280",
+ "longitude": "46.82528380"
+ },
+ {
+ "id": 928,
+ "name": "Gedo",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "GE",
+ "type": null,
+ "latitude": "3.50392270",
+ "longitude": "42.23624350"
+ },
+ {
+ "id": 915,
+ "name": "Hiran",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "HI",
+ "type": null,
+ "latitude": "4.32101500",
+ "longitude": "45.29938620"
+ },
+ {
+ "id": 924,
+ "name": "Lower Juba",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "JH",
+ "type": null,
+ "latitude": "0.22402100",
+ "longitude": "41.60118140"
+ },
+ {
+ "id": 921,
+ "name": "Lower Shebelle",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "SH",
+ "type": null,
+ "latitude": "1.87664580",
+ "longitude": "44.24790150"
+ },
+ {
+ "id": 922,
+ "name": "Middle Juba",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "JD",
+ "type": null,
+ "latitude": "2.07804880",
+ "longitude": "41.60118140"
+ },
+ {
+ "id": 923,
+ "name": "Middle Shebelle",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "SD",
+ "type": null,
+ "latitude": "2.92502470",
+ "longitude": "45.90396890"
+ },
+ {
+ "id": 916,
+ "name": "Mudug",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "MU",
+ "type": null,
+ "latitude": "6.56567260",
+ "longitude": "47.76375650"
+ },
+ {
+ "id": 920,
+ "name": "Nugal",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "NU",
+ "type": null,
+ "latitude": "43.27938610",
+ "longitude": "17.03392050"
+ },
+ {
+ "id": 919,
+ "name": "Sanaag Region",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "10.39382180",
+ "longitude": "47.76375650"
+ },
+ {
+ "id": 929,
+ "name": "Togdheer Region",
+ "country_id": 203,
+ "country_code": "SO",
+ "country_name": "Somalia",
+ "state_code": "TO",
+ "type": null,
+ "latitude": "9.44605870",
+ "longitude": "45.29938620"
+ },
+ {
+ "id": 938,
+ "name": "Eastern Cape",
+ "country_id": 204,
+ "country_code": "ZA",
+ "country_name": "South Africa",
+ "state_code": "EC",
+ "type": null,
+ "latitude": "-32.29684020",
+ "longitude": "26.41938900"
+ },
+ {
+ "id": 932,
+ "name": "Free State",
+ "country_id": 204,
+ "country_code": "ZA",
+ "country_name": "South Africa",
+ "state_code": "FS",
+ "type": null,
+ "latitude": "37.68585250",
+ "longitude": "-97.28112560"
+ },
+ {
+ "id": 936,
+ "name": "Gauteng",
+ "country_id": 204,
+ "country_code": "ZA",
+ "country_name": "South Africa",
+ "state_code": "GP",
+ "type": null,
+ "latitude": "-26.27075930",
+ "longitude": "28.11226790"
+ },
+ {
+ "id": 935,
+ "name": "KwaZulu-Natal",
+ "country_id": 204,
+ "country_code": "ZA",
+ "country_name": "South Africa",
+ "state_code": "KZN",
+ "type": null,
+ "latitude": "-28.53055390",
+ "longitude": "30.89582420"
+ },
+ {
+ "id": 933,
+ "name": "Limpopo",
+ "country_id": 204,
+ "country_code": "ZA",
+ "country_name": "South Africa",
+ "state_code": "LP",
+ "type": null,
+ "latitude": "-23.40129460",
+ "longitude": "29.41793240"
+ },
+ {
+ "id": 937,
+ "name": "Mpumalanga",
+ "country_id": 204,
+ "country_code": "ZA",
+ "country_name": "South Africa",
+ "state_code": "MP",
+ "type": null,
+ "latitude": "-25.56533600",
+ "longitude": "30.52790960"
+ },
+ {
+ "id": 934,
+ "name": "North West",
+ "country_id": 204,
+ "country_code": "ZA",
+ "country_name": "South Africa",
+ "state_code": "NW",
+ "type": null,
+ "latitude": "32.75885200",
+ "longitude": "-97.32880600"
+ },
+ {
+ "id": 931,
+ "name": "Northern Cape",
+ "country_id": 204,
+ "country_code": "ZA",
+ "country_name": "South Africa",
+ "state_code": "NC",
+ "type": null,
+ "latitude": "-29.04668080",
+ "longitude": "21.85685860"
+ },
+ {
+ "id": 939,
+ "name": "Western Cape",
+ "country_id": 204,
+ "country_code": "ZA",
+ "country_name": "South Africa",
+ "state_code": "WC",
+ "type": null,
+ "latitude": "-33.22779180",
+ "longitude": "21.85685860"
+ },
+ {
+ "id": 3860,
+ "name": "Busan",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "26",
+ "type": null,
+ "latitude": "35.17955430",
+ "longitude": "129.07564160"
+ },
+ {
+ "id": 3846,
+ "name": "Daegu",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "27",
+ "type": null,
+ "latitude": "35.87143540",
+ "longitude": "128.60144500"
+ },
+ {
+ "id": 3850,
+ "name": "Daejeon",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "30",
+ "type": null,
+ "latitude": "36.35041190",
+ "longitude": "127.38454750"
+ },
+ {
+ "id": 3862,
+ "name": "Gangwon Province",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "42",
+ "type": null,
+ "latitude": "37.82280000",
+ "longitude": "128.15550000"
+ },
+ {
+ "id": 3858,
+ "name": "Gwangju",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "29",
+ "type": null,
+ "latitude": "35.15954540",
+ "longitude": "126.85260120"
+ },
+ {
+ "id": 3847,
+ "name": "Gyeonggi Province",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "41",
+ "type": null,
+ "latitude": "37.41380000",
+ "longitude": "127.51830000"
+ },
+ {
+ "id": 3848,
+ "name": "Incheon",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "28",
+ "type": null,
+ "latitude": "37.45625570",
+ "longitude": "126.70520620"
+ },
+ {
+ "id": 3853,
+ "name": "Jeju",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "49",
+ "type": null,
+ "latitude": "33.95682780",
+ "longitude": "-84.13135000"
+ },
+ {
+ "id": 3854,
+ "name": "North Chungcheong Province",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "43",
+ "type": null,
+ "latitude": "36.80000000",
+ "longitude": "127.70000000"
+ },
+ {
+ "id": 3855,
+ "name": "North Gyeongsang Province",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "47",
+ "type": null,
+ "latitude": "36.49190000",
+ "longitude": "128.88890000"
+ },
+ {
+ "id": 3851,
+ "name": "North Jeolla Province",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "45",
+ "type": null,
+ "latitude": "35.71750000",
+ "longitude": "127.15300000"
+ },
+ {
+ "id": 3861,
+ "name": "Sejong City",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "50",
+ "type": null,
+ "latitude": "34.05233230",
+ "longitude": "-118.30848970"
+ },
+ {
+ "id": 3849,
+ "name": "Seoul",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "11",
+ "type": null,
+ "latitude": "37.56653500",
+ "longitude": "126.97796920"
+ },
+ {
+ "id": 3859,
+ "name": "South Chungcheong Province",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "44",
+ "type": null,
+ "latitude": "36.51840000",
+ "longitude": "126.80000000"
+ },
+ {
+ "id": 3857,
+ "name": "South Gyeongsang Province",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "48",
+ "type": null,
+ "latitude": "35.46060000",
+ "longitude": "128.21320000"
+ },
+ {
+ "id": 3856,
+ "name": "South Jeolla Province",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "46",
+ "type": null,
+ "latitude": "34.86790000",
+ "longitude": "126.99100000"
+ },
+ {
+ "id": 3852,
+ "name": "Ulsan",
+ "country_id": 116,
+ "country_code": "KR",
+ "country_name": "South Korea",
+ "state_code": "31",
+ "type": null,
+ "latitude": "35.53837730",
+ "longitude": "129.31135960"
+ },
+ {
+ "id": 2092,
+ "name": "Central Equatoria",
+ "country_id": 206,
+ "country_code": "SS",
+ "country_name": "South Sudan",
+ "state_code": "EC",
+ "type": null,
+ "latitude": "4.61440630",
+ "longitude": "31.26263660"
+ },
+ {
+ "id": 2093,
+ "name": "Eastern Equatoria",
+ "country_id": 206,
+ "country_code": "SS",
+ "country_name": "South Sudan",
+ "state_code": "EE",
+ "type": null,
+ "latitude": "5.06929950",
+ "longitude": "33.43835300"
+ },
+ {
+ "id": 2094,
+ "name": "Jonglei State",
+ "country_id": 206,
+ "country_code": "SS",
+ "country_name": "South Sudan",
+ "state_code": "JG",
+ "type": null,
+ "latitude": "7.18196190",
+ "longitude": "32.35609520"
+ },
+ {
+ "id": 2090,
+ "name": "Lakes",
+ "country_id": 206,
+ "country_code": "SS",
+ "country_name": "South Sudan",
+ "state_code": "LK",
+ "type": null,
+ "latitude": "37.16282550",
+ "longitude": "-95.69116230"
+ },
+ {
+ "id": 2088,
+ "name": "Northern Bahr el Ghazal",
+ "country_id": 206,
+ "country_code": "SS",
+ "country_name": "South Sudan",
+ "state_code": "BN",
+ "type": null,
+ "latitude": "8.53604490",
+ "longitude": "26.79678490"
+ },
+ {
+ "id": 2085,
+ "name": "Unity",
+ "country_id": 206,
+ "country_code": "SS",
+ "country_name": "South Sudan",
+ "state_code": "UY",
+ "type": null,
+ "latitude": "37.78712760",
+ "longitude": "-122.40340790"
+ },
+ {
+ "id": 2086,
+ "name": "Upper Nile",
+ "country_id": 206,
+ "country_code": "SS",
+ "country_name": "South Sudan",
+ "state_code": "NU",
+ "type": null,
+ "latitude": "9.88942020",
+ "longitude": "32.71813750"
+ },
+ {
+ "id": 2087,
+ "name": "Warrap",
+ "country_id": 206,
+ "country_code": "SS",
+ "country_name": "South Sudan",
+ "state_code": "WR",
+ "type": null,
+ "latitude": "8.08862380",
+ "longitude": "28.64106410"
+ },
+ {
+ "id": 2091,
+ "name": "Western Bahr el Ghazal",
+ "country_id": 206,
+ "country_code": "SS",
+ "country_name": "South Sudan",
+ "state_code": "BW",
+ "type": null,
+ "latitude": "8.64523990",
+ "longitude": "25.28375850"
+ },
+ {
+ "id": 2089,
+ "name": "Western Equatoria",
+ "country_id": 206,
+ "country_code": "SS",
+ "country_name": "South Sudan",
+ "state_code": "EW",
+ "type": null,
+ "latitude": "5.34717990",
+ "longitude": "28.29943500"
+ },
+ {
+ "id": 5089,
+ "name": "A Coruรฑa",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "C",
+ "type": "province",
+ "latitude": "43.36190400",
+ "longitude": "-8.43019320"
+ },
+ {
+ "id": 5109,
+ "name": "Albacete",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "AB",
+ "type": "province",
+ "latitude": "38.99223120",
+ "longitude": "-1.87809890"
+ },
+ {
+ "id": 5108,
+ "name": "Alicante",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "A",
+ "type": "province",
+ "latitude": "38.35795460",
+ "longitude": "-0.54256340"
+ },
+ {
+ "id": 5095,
+ "name": "Almeria",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "AL",
+ "type": "province",
+ "latitude": "36.84152680",
+ "longitude": "-2.47462610"
+ },
+ {
+ "id": 5093,
+ "name": "Araba",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "VI",
+ "type": "province",
+ "latitude": "42.83951190",
+ "longitude": "-3.84237740"
+ },
+ {
+ "id": 1160,
+ "name": "Asturias",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "O",
+ "type": "province",
+ "latitude": "43.36139530",
+ "longitude": "-5.85932670"
+ },
+ {
+ "id": 1189,
+ "name": "รvila",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "AV",
+ "type": "province",
+ "latitude": "40.69345110",
+ "longitude": "-4.89356270"
+ },
+ {
+ "id": 5092,
+ "name": "Badajoz",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "BA",
+ "type": "province",
+ "latitude": "38.87937480",
+ "longitude": "-7.02269830"
+ },
+ {
+ "id": 5102,
+ "name": "Barcelona",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "B",
+ "type": "province",
+ "latitude": "41.39266790",
+ "longitude": "2.14018910"
+ },
+ {
+ "id": 5094,
+ "name": "Bizkaia",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "BI",
+ "type": "province",
+ "latitude": "43.21921990",
+ "longitude": "-3.21110870"
+ },
+ {
+ "id": 1146,
+ "name": "Burgos",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "BU",
+ "type": "province",
+ "latitude": "42.33807580",
+ "longitude": "-3.58126920"
+ },
+ {
+ "id": 1190,
+ "name": "Caceres",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "CC",
+ "type": "province",
+ "latitude": "39.47163130",
+ "longitude": "-6.42573840"
+ },
+ {
+ "id": 5096,
+ "name": "Cรกdiz",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "CA",
+ "type": "province",
+ "latitude": "36.51638510",
+ "longitude": "-6.29997670"
+ },
+ {
+ "id": 1170,
+ "name": "Cantabria",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "S",
+ "type": "province",
+ "latitude": "43.18283960",
+ "longitude": "-3.98784270"
+ },
+ {
+ "id": 5110,
+ "name": "Castellรณn",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "CS",
+ "type": "province",
+ "latitude": "39.98114350",
+ "longitude": "0.00884070"
+ },
+ {
+ "id": 5105,
+ "name": "Ciudad Real",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "CR",
+ "type": "province",
+ "latitude": "38.98607580",
+ "longitude": "-3.94449750"
+ },
+ {
+ "id": 5097,
+ "name": "Cรณrdoba",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "CO",
+ "type": "province",
+ "latitude": "36.51638510",
+ "longitude": "-6.29997670"
+ },
+ {
+ "id": 5106,
+ "name": "Cuenca",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "CU",
+ "type": "province",
+ "latitude": "40.06200360",
+ "longitude": "-2.16553440"
+ },
+ {
+ "id": 1191,
+ "name": "Gipuzkoa",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "SS",
+ "type": "province",
+ "latitude": "43.14523600",
+ "longitude": "-2.44618250"
+ },
+ {
+ "id": 5103,
+ "name": "Girona",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "GI",
+ "type": "province",
+ "latitude": "41.98034450",
+ "longitude": "2.80115770"
+ },
+ {
+ "id": 5098,
+ "name": "Granada",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "GR",
+ "type": "province",
+ "latitude": "37.18094110",
+ "longitude": "-3.62629100"
+ },
+ {
+ "id": 5107,
+ "name": "Guadalajara",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "GU",
+ "type": "province",
+ "latitude": "40.63222140",
+ "longitude": "-3.19068200"
+ },
+ {
+ "id": 5099,
+ "name": "Huelva",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "H",
+ "type": "province",
+ "latitude": "37.27086660",
+ "longitude": "-6.95719990"
+ },
+ {
+ "id": 1177,
+ "name": "Huesca",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "HU",
+ "type": "province",
+ "latitude": "41.59762750",
+ "longitude": "-0.90566230"
+ },
+ {
+ "id": 1174,
+ "name": "Islas Baleares",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "PM",
+ "type": "province",
+ "latitude": "39.35877590",
+ "longitude": "2.73563280"
+ },
+ {
+ "id": 5100,
+ "name": "Jaรฉn",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "J",
+ "type": "province",
+ "latitude": "37.78009310",
+ "longitude": "-3.81437450"
+ },
+ {
+ "id": 1171,
+ "name": "La Rioja",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "LO",
+ "type": "province",
+ "latitude": "42.28707330",
+ "longitude": "-2.53960300"
+ },
+ {
+ "id": 1185,
+ "name": "Las Palmas",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "GC",
+ "type": "province",
+ "latitude": "28.29156370",
+ "longitude": "-16.62913040"
+ },
+ {
+ "id": 1200,
+ "name": "Lรฉon",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "LE",
+ "type": "province",
+ "latitude": "42.59870410",
+ "longitude": "-5.56708390"
+ },
+ {
+ "id": 5104,
+ "name": "Lleida",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "L",
+ "type": "province",
+ "latitude": "41.61837310",
+ "longitude": "0.60242530"
+ },
+ {
+ "id": 5090,
+ "name": "Lugo",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "LU",
+ "type": "province",
+ "latitude": "43.01231370",
+ "longitude": "-7.57400960"
+ },
+ {
+ "id": 1158,
+ "name": "Madrid",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "M",
+ "type": "province",
+ "latitude": "40.41675150",
+ "longitude": "-3.70383220"
+ },
+ {
+ "id": 5101,
+ "name": "Mรกlaga",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "MA",
+ "type": "province",
+ "latitude": "36.71820150",
+ "longitude": "-4.51930600"
+ },
+ {
+ "id": 1176,
+ "name": "Murcia",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "MU",
+ "type": "province",
+ "latitude": "38.13981410",
+ "longitude": "-1.36621600"
+ },
+ {
+ "id": 1204,
+ "name": "Navarra",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "NA",
+ "type": "province",
+ "latitude": "42.69539090",
+ "longitude": "-1.67606910"
+ },
+ {
+ "id": 5091,
+ "name": "Ourense",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "OR",
+ "type": "province",
+ "latitude": "42.33836130",
+ "longitude": "-7.88119510"
+ },
+ {
+ "id": 1157,
+ "name": "Palencia",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "P",
+ "type": "province",
+ "latitude": "42.00968320",
+ "longitude": "-4.52879490"
+ },
+ {
+ "id": 1167,
+ "name": "Pontevedra",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "PO",
+ "type": "province",
+ "latitude": "42.43385950",
+ "longitude": "-8.65685520"
+ },
+ {
+ "id": 1147,
+ "name": "Salamanca",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "SA",
+ "type": "province",
+ "latitude": "40.95152630",
+ "longitude": "-6.23759470"
+ },
+ {
+ "id": 5112,
+ "name": "Santa Cruz de Tenerife",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "TF",
+ "type": "province",
+ "latitude": "28.45789140",
+ "longitude": "-16.32135390"
+ },
+ {
+ "id": 1192,
+ "name": "Segovia",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "SG",
+ "type": "province",
+ "latitude": "40.94292960",
+ "longitude": "-4.10889420"
+ },
+ {
+ "id": 1193,
+ "name": "Sevilla",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "SE",
+ "type": "province",
+ "latitude": "37.37535010",
+ "longitude": "-6.02509730"
+ },
+ {
+ "id": 1208,
+ "name": "Soria",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "SO",
+ "type": "province",
+ "latitude": "41.76654640",
+ "longitude": "-2.47903060"
+ },
+ {
+ "id": 1203,
+ "name": "Tarragona",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "T",
+ "type": "province",
+ "latitude": "41.12586420",
+ "longitude": "1.20356420"
+ },
+ {
+ "id": 5111,
+ "name": "Teruel",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "TE",
+ "type": "province",
+ "latitude": "40.34504100",
+ "longitude": "-1.11847440"
+ },
+ {
+ "id": 1205,
+ "name": "Toledo",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "TO",
+ "type": "province",
+ "latitude": "39.86232000",
+ "longitude": "-4.06946920"
+ },
+ {
+ "id": 1175,
+ "name": "Valencia",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "V",
+ "type": "province",
+ "latitude": "39.48401080",
+ "longitude": "-0.75328090"
+ },
+ {
+ "id": 1183,
+ "name": "Valladolid",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "VA",
+ "type": "province",
+ "latitude": "41.65173750",
+ "longitude": "-4.72449500"
+ },
+ {
+ "id": 1161,
+ "name": "Zamora",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "ZA",
+ "type": "province",
+ "latitude": "41.60957440",
+ "longitude": "-5.89871390"
+ },
+ {
+ "id": 5113,
+ "name": "Zaragoza",
+ "country_id": 207,
+ "country_code": "ES",
+ "country_name": "Spain",
+ "state_code": "Z",
+ "type": "province",
+ "latitude": "41.65175010",
+ "longitude": "-0.93000020"
+ },
+ {
+ "id": 2799,
+ "name": "Ampara District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "52",
+ "type": null,
+ "latitude": "7.29116850",
+ "longitude": "81.67237610"
+ },
+ {
+ "id": 2816,
+ "name": "Anuradhapura District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "71",
+ "type": null,
+ "latitude": "8.33183050",
+ "longitude": "80.40290170"
+ },
+ {
+ "id": 2790,
+ "name": "Badulla District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "81",
+ "type": null,
+ "latitude": "6.99340090",
+ "longitude": "81.05498150"
+ },
+ {
+ "id": 2818,
+ "name": "Batticaloa District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "51",
+ "type": null,
+ "latitude": "7.82927810",
+ "longitude": "81.47183870"
+ },
+ {
+ "id": 2798,
+ "name": "Central Province",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "2",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2815,
+ "name": "Colombo District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "11",
+ "type": null,
+ "latitude": "6.92695570",
+ "longitude": "79.86173060"
+ },
+ {
+ "id": 2808,
+ "name": "Eastern Province",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "5",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2792,
+ "name": "Galle District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "31",
+ "type": null,
+ "latitude": "6.05774900",
+ "longitude": "80.21755720"
+ },
+ {
+ "id": 2804,
+ "name": "Gampaha District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "12",
+ "type": null,
+ "latitude": "7.07126190",
+ "longitude": "80.00877460"
+ },
+ {
+ "id": 2791,
+ "name": "Hambantota District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "33",
+ "type": null,
+ "latitude": "6.15358160",
+ "longitude": "81.12714900"
+ },
+ {
+ "id": 2787,
+ "name": "Jaffna District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "41",
+ "type": null,
+ "latitude": "9.69304680",
+ "longitude": "80.16518540"
+ },
+ {
+ "id": 2789,
+ "name": "Kalutara District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "13",
+ "type": null,
+ "latitude": "6.60846860",
+ "longitude": "80.14285840"
+ },
+ {
+ "id": 2788,
+ "name": "Kandy District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "21",
+ "type": null,
+ "latitude": "7.29315880",
+ "longitude": "80.63501070"
+ },
+ {
+ "id": 2797,
+ "name": "Kegalle District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "92",
+ "type": null,
+ "latitude": "7.12040530",
+ "longitude": "80.32131060"
+ },
+ {
+ "id": 2793,
+ "name": "Kilinochchi District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "42",
+ "type": null,
+ "latitude": "9.36779710",
+ "longitude": "80.32131060"
+ },
+ {
+ "id": 2805,
+ "name": "Mannar District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "43",
+ "type": null,
+ "latitude": "8.98095310",
+ "longitude": "79.90439750"
+ },
+ {
+ "id": 2810,
+ "name": "Matale District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "22",
+ "type": null,
+ "latitude": "7.46596460",
+ "longitude": "80.62342590"
+ },
+ {
+ "id": 2806,
+ "name": "Matara District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "32",
+ "type": null,
+ "latitude": "5.94493480",
+ "longitude": "80.54879970"
+ },
+ {
+ "id": 2819,
+ "name": "Monaragala District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "82",
+ "type": null,
+ "latitude": "6.87277810",
+ "longitude": "81.35068320"
+ },
+ {
+ "id": 2814,
+ "name": "Mullaitivu District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "45",
+ "type": null,
+ "latitude": "9.26753880",
+ "longitude": "80.81282540"
+ },
+ {
+ "id": 2800,
+ "name": "North Central Province",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "7",
+ "type": null,
+ "latitude": "8.19956380",
+ "longitude": "80.63269160"
+ },
+ {
+ "id": 2817,
+ "name": "North Western Province",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "6",
+ "type": null,
+ "latitude": "7.75840910",
+ "longitude": "80.18750650"
+ },
+ {
+ "id": 2813,
+ "name": "Northern Province",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "4",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2794,
+ "name": "Nuwara Eliya District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "23",
+ "type": null,
+ "latitude": "6.96065320",
+ "longitude": "80.76927580"
+ },
+ {
+ "id": 2812,
+ "name": "Polonnaruwa District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "72",
+ "type": null,
+ "latitude": "7.93955670",
+ "longitude": "81.00034030"
+ },
+ {
+ "id": 2796,
+ "name": "Puttalam District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "62",
+ "type": null,
+ "latitude": "8.02599150",
+ "longitude": "79.84712720"
+ },
+ {
+ "id": 2807,
+ "name": "Ratnapura district",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "91",
+ "type": null,
+ "latitude": "6.70551680",
+ "longitude": "80.38483890"
+ },
+ {
+ "id": 2803,
+ "name": "Sabaragamuwa Province",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "9",
+ "type": null,
+ "latitude": "6.73959410",
+ "longitude": "80.36586500"
+ },
+ {
+ "id": 2801,
+ "name": "Southern Province",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "3",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 2795,
+ "name": "Trincomalee District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "53",
+ "type": null,
+ "latitude": "8.60130690",
+ "longitude": "81.11960750"
+ },
+ {
+ "id": 2811,
+ "name": "Uva Province",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "8",
+ "type": null,
+ "latitude": "6.84276120",
+ "longitude": "81.33994140"
+ },
+ {
+ "id": 2809,
+ "name": "Vavuniya District",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "44",
+ "type": null,
+ "latitude": "8.75947390",
+ "longitude": "80.50003340"
+ },
+ {
+ "id": 2802,
+ "name": "Western Province",
+ "country_id": 208,
+ "country_code": "LK",
+ "country_name": "Sri Lanka",
+ "state_code": "1",
+ "type": null,
+ "latitude": null,
+ "longitude": null
+ },
+ {
+ "id": 885,
+ "name": "Al Jazirah",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "GZ",
+ "type": null,
+ "latitude": "14.88596110",
+ "longitude": "33.43835300"
+ },
+ {
+ "id": 886,
+ "name": "Al Qadarif",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "GD",
+ "type": null,
+ "latitude": "14.02430700",
+ "longitude": "35.36856790"
+ },
+ {
+ "id": 887,
+ "name": "Blue Nile",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "NB",
+ "type": null,
+ "latitude": "47.59867300",
+ "longitude": "-122.33441900"
+ },
+ {
+ "id": 896,
+ "name": "Central Darfur",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "DC",
+ "type": null,
+ "latitude": "14.37827470",
+ "longitude": "24.90422080"
+ },
+ {
+ "id": 892,
+ "name": "East Darfur",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "DE",
+ "type": null,
+ "latitude": "14.37827470",
+ "longitude": "24.90422080"
+ },
+ {
+ "id": 884,
+ "name": "Kassala",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "KA",
+ "type": null,
+ "latitude": "15.45813320",
+ "longitude": "36.40396290"
+ },
+ {
+ "id": 881,
+ "name": "Khartoum",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "KH",
+ "type": null,
+ "latitude": "15.50065440",
+ "longitude": "32.55989940"
+ },
+ {
+ "id": 890,
+ "name": "North Darfur",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "DN",
+ "type": null,
+ "latitude": "15.76619690",
+ "longitude": "24.90422080"
+ },
+ {
+ "id": 893,
+ "name": "North Kordofan",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "KN",
+ "type": null,
+ "latitude": "13.83064410",
+ "longitude": "29.41793240"
+ },
+ {
+ "id": 895,
+ "name": "Northern",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "NO",
+ "type": null,
+ "latitude": "38.06381700",
+ "longitude": "-84.46286480"
+ },
+ {
+ "id": 880,
+ "name": "Red Sea",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "RS",
+ "type": null,
+ "latitude": "20.28023200",
+ "longitude": "38.51257300"
+ },
+ {
+ "id": 891,
+ "name": "River Nile",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "NR",
+ "type": null,
+ "latitude": "23.97275950",
+ "longitude": "32.87492060"
+ },
+ {
+ "id": 882,
+ "name": "Sennar",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "SI",
+ "type": null,
+ "latitude": "13.56746900",
+ "longitude": "33.56720450"
+ },
+ {
+ "id": 894,
+ "name": "South Darfur",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "DS",
+ "type": null,
+ "latitude": "11.64886390",
+ "longitude": "24.90422080"
+ },
+ {
+ "id": 883,
+ "name": "South Kordofan",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "KS",
+ "type": null,
+ "latitude": "11.19901920",
+ "longitude": "29.41793240"
+ },
+ {
+ "id": 888,
+ "name": "West Darfur",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "DW",
+ "type": null,
+ "latitude": "12.84635610",
+ "longitude": "23.00119890"
+ },
+ {
+ "id": 889,
+ "name": "West Kordofan",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "GK",
+ "type": null,
+ "latitude": "11.19901920",
+ "longitude": "29.41793240"
+ },
+ {
+ "id": 879,
+ "name": "White Nile",
+ "country_id": 209,
+ "country_code": "SD",
+ "country_name": "Sudan",
+ "state_code": "NW",
+ "type": null,
+ "latitude": "9.33215160",
+ "longitude": "31.46153000"
+ },
+ {
+ "id": 2846,
+ "name": "Brokopondo District",
+ "country_id": 210,
+ "country_code": "SR",
+ "country_name": "Suriname",
+ "state_code": "BR",
+ "type": null,
+ "latitude": "4.77102470",
+ "longitude": "-55.04933750"
+ },
+ {
+ "id": 2839,
+ "name": "Commewijne District",
+ "country_id": 210,
+ "country_code": "SR",
+ "country_name": "Suriname",
+ "state_code": "CM",
+ "type": null,
+ "latitude": "5.74021100",
+ "longitude": "-54.87312190"
+ },
+ {
+ "id": 2842,
+ "name": "Coronie District",
+ "country_id": 210,
+ "country_code": "SR",
+ "country_name": "Suriname",
+ "state_code": "CR",
+ "type": null,
+ "latitude": "5.69432710",
+ "longitude": "-56.29293810"
+ },
+ {
+ "id": 2845,
+ "name": "Marowijne District",
+ "country_id": 210,
+ "country_code": "SR",
+ "country_name": "Suriname",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "5.62681280",
+ "longitude": "-54.25931180"
+ },
+ {
+ "id": 2840,
+ "name": "Nickerie District",
+ "country_id": 210,
+ "country_code": "SR",
+ "country_name": "Suriname",
+ "state_code": "NI",
+ "type": null,
+ "latitude": "5.58554690",
+ "longitude": "-56.83111170"
+ },
+ {
+ "id": 2841,
+ "name": "Para District",
+ "country_id": 210,
+ "country_code": "SR",
+ "country_name": "Suriname",
+ "state_code": "PR",
+ "type": null,
+ "latitude": "5.48173180",
+ "longitude": "-55.22592070"
+ },
+ {
+ "id": 2843,
+ "name": "Paramaribo District",
+ "country_id": 210,
+ "country_code": "SR",
+ "country_name": "Suriname",
+ "state_code": "PM",
+ "type": null,
+ "latitude": "5.85203550",
+ "longitude": "-55.20382780"
+ },
+ {
+ "id": 2848,
+ "name": "Saramacca District",
+ "country_id": 210,
+ "country_code": "SR",
+ "country_name": "Suriname",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "5.72408130",
+ "longitude": "-55.66896360"
+ },
+ {
+ "id": 2847,
+ "name": "Sipaliwini District",
+ "country_id": 210,
+ "country_code": "SR",
+ "country_name": "Suriname",
+ "state_code": "SI",
+ "type": null,
+ "latitude": "3.65673820",
+ "longitude": "-56.20353870"
+ },
+ {
+ "id": 2844,
+ "name": "Wanica District",
+ "country_id": 210,
+ "country_code": "SR",
+ "country_name": "Suriname",
+ "state_code": "WA",
+ "type": null,
+ "latitude": "5.73237620",
+ "longitude": "-55.27012350"
+ },
+ {
+ "id": 969,
+ "name": "Hhohho District",
+ "country_id": 212,
+ "country_code": "SZ",
+ "country_name": "Swaziland",
+ "state_code": "HH",
+ "type": null,
+ "latitude": "-26.13656620",
+ "longitude": "31.35416310"
+ },
+ {
+ "id": 970,
+ "name": "Lubombo District",
+ "country_id": 212,
+ "country_code": "SZ",
+ "country_name": "Swaziland",
+ "state_code": "LU",
+ "type": null,
+ "latitude": "-26.78517730",
+ "longitude": "31.81070790"
+ },
+ {
+ "id": 968,
+ "name": "Manzini District",
+ "country_id": 212,
+ "country_code": "SZ",
+ "country_name": "Swaziland",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "-26.50819990",
+ "longitude": "31.37131640"
+ },
+ {
+ "id": 971,
+ "name": "Shiselweni District",
+ "country_id": 212,
+ "country_code": "SZ",
+ "country_name": "Swaziland",
+ "state_code": "SH",
+ "type": null,
+ "latitude": "-26.98275770",
+ "longitude": "31.35416310"
+ },
+ {
+ "id": 1537,
+ "name": "Blekinge",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "K",
+ "type": null,
+ "latitude": "56.27838370",
+ "longitude": "15.01800580"
+ },
+ {
+ "id": 1534,
+ "name": "Dalarna County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "W",
+ "type": null,
+ "latitude": "61.09170120",
+ "longitude": "14.66636530"
+ },
+ {
+ "id": 1533,
+ "name": "Gรคvleborg County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "X",
+ "type": null,
+ "latitude": "61.30119930",
+ "longitude": "16.15342140"
+ },
+ {
+ "id": 1546,
+ "name": "Gotland County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "I",
+ "type": null,
+ "latitude": "57.46841210",
+ "longitude": "18.48674470"
+ },
+ {
+ "id": 1548,
+ "name": "Halland County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "N",
+ "type": null,
+ "latitude": "56.89668050",
+ "longitude": "12.80339930"
+ },
+ {
+ "id": 5117,
+ "name": "Jรคmtland County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "0",
+ "type": "SE-Z",
+ "latitude": "63.28306200",
+ "longitude": "14.23828100"
+ },
+ {
+ "id": 1550,
+ "name": "Jรถnkรถping County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "F",
+ "type": null,
+ "latitude": "57.37084340",
+ "longitude": "14.34391740"
+ },
+ {
+ "id": 1544,
+ "name": "Kalmar County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "H",
+ "type": null,
+ "latitude": "57.23501560",
+ "longitude": "16.18493490"
+ },
+ {
+ "id": 1542,
+ "name": "Kronoberg County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "G",
+ "type": null,
+ "latitude": "56.71834030",
+ "longitude": "14.41146730"
+ },
+ {
+ "id": 1538,
+ "name": "Norrbotten County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "BD",
+ "type": null,
+ "latitude": "66.83092160",
+ "longitude": "20.39919660"
+ },
+ {
+ "id": 1539,
+ "name": "รrebro County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "T",
+ "type": null,
+ "latitude": "59.53503600",
+ "longitude": "15.00657310"
+ },
+ {
+ "id": 1536,
+ "name": "รstergรถtland County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "E",
+ "type": null,
+ "latitude": "58.34536350",
+ "longitude": "15.51978440"
+ },
+ {
+ "id": 1541,
+ "name": "Skรฅne County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "M",
+ "type": null,
+ "latitude": "55.99025720",
+ "longitude": "13.59576920"
+ },
+ {
+ "id": 1540,
+ "name": "Sรถdermanland County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "D",
+ "type": null,
+ "latitude": "59.03363490",
+ "longitude": "16.75188990"
+ },
+ {
+ "id": 1551,
+ "name": "Stockholm County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "AB",
+ "type": null,
+ "latitude": "59.60249580",
+ "longitude": "18.13843830"
+ },
+ {
+ "id": 1545,
+ "name": "Uppsala County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "C",
+ "type": null,
+ "latitude": "60.00922620",
+ "longitude": "17.27145880"
+ },
+ {
+ "id": 1535,
+ "name": "Vรคrmland County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "S",
+ "type": null,
+ "latitude": "59.72940650",
+ "longitude": "13.23540240"
+ },
+ {
+ "id": 1543,
+ "name": "Vรคsterbotten County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "AC",
+ "type": null,
+ "latitude": "65.33373110",
+ "longitude": "16.51616940"
+ },
+ {
+ "id": 1552,
+ "name": "Vรคsternorrland County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "Y",
+ "type": null,
+ "latitude": "63.42764730",
+ "longitude": "17.72924440"
+ },
+ {
+ "id": 1549,
+ "name": "Vรคstmanland County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "U",
+ "type": null,
+ "latitude": "59.67138790",
+ "longitude": "16.21589530"
+ },
+ {
+ "id": 1547,
+ "name": "Vรคstra Gรถtaland County",
+ "country_id": 213,
+ "country_code": "SE",
+ "country_name": "Sweden",
+ "state_code": "O",
+ "type": null,
+ "latitude": "58.25279260",
+ "longitude": "13.05964250"
+ },
+ {
+ "id": 1639,
+ "name": "Aargau",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "AG",
+ "type": "canton",
+ "latitude": "47.38766640",
+ "longitude": "8.25542950"
+ },
+ {
+ "id": 1655,
+ "name": "Appenzell Ausserrhoden",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "AR",
+ "type": "canton",
+ "latitude": "47.36648100",
+ "longitude": "9.30009160"
+ },
+ {
+ "id": 1649,
+ "name": "Appenzell Innerrhoden",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "AI",
+ "type": "canton",
+ "latitude": "47.31619250",
+ "longitude": "9.43165730"
+ },
+ {
+ "id": 1641,
+ "name": "Basel-Land",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "BL",
+ "type": "canton",
+ "latitude": "47.44181220",
+ "longitude": "7.76440020"
+ },
+ {
+ "id": 4957,
+ "name": "Basel-Stadt",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "BS",
+ "type": "canton",
+ "latitude": "47.56666700",
+ "longitude": "7.60000000"
+ },
+ {
+ "id": 1645,
+ "name": "Bern",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "BE",
+ "type": "canton",
+ "latitude": "46.79886210",
+ "longitude": "7.70807010"
+ },
+ {
+ "id": 1640,
+ "name": "Fribourg",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "FR",
+ "type": "canton",
+ "latitude": "46.68167480",
+ "longitude": "7.11726350"
+ },
+ {
+ "id": 1647,
+ "name": "Geneva",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "GE",
+ "type": "canton",
+ "latitude": "46.21800730",
+ "longitude": "6.12169250"
+ },
+ {
+ "id": 1661,
+ "name": "Glarus",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "GL",
+ "type": "canton",
+ "latitude": "47.04112320",
+ "longitude": "9.06790000"
+ },
+ {
+ "id": 1660,
+ "name": "Graubรผnden",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "GR",
+ "type": "canton",
+ "latitude": "46.65698710",
+ "longitude": "9.57802570"
+ },
+ {
+ "id": 1658,
+ "name": "Jura",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "JU",
+ "type": "canton",
+ "latitude": "47.34444740",
+ "longitude": "7.14306080"
+ },
+ {
+ "id": 1663,
+ "name": "Lucerne",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "LU",
+ "type": "canton",
+ "latitude": "47.07956710",
+ "longitude": "8.16624450"
+ },
+ {
+ "id": 1659,
+ "name": "Neuchรขtel",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "NE",
+ "type": "canton",
+ "latitude": "46.98998740",
+ "longitude": "6.92927320"
+ },
+ {
+ "id": 1652,
+ "name": "Nidwalden",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "NW",
+ "type": "canton",
+ "latitude": "46.92670160",
+ "longitude": "8.38499820"
+ },
+ {
+ "id": 1650,
+ "name": "Obwalden",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "OW",
+ "type": "canton",
+ "latitude": "46.87785800",
+ "longitude": "8.25124900"
+ },
+ {
+ "id": 1654,
+ "name": "Schaffhausen",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "SH",
+ "type": "canton",
+ "latitude": "47.70093640",
+ "longitude": "8.56800400"
+ },
+ {
+ "id": 1653,
+ "name": "Schwyz",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "SZ",
+ "type": "canton",
+ "latitude": "47.02071380",
+ "longitude": "8.65298840"
+ },
+ {
+ "id": 1662,
+ "name": "Solothurn",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "SO",
+ "type": "canton",
+ "latitude": "47.33207170",
+ "longitude": "7.63883850"
+ },
+ {
+ "id": 1644,
+ "name": "St. Gallen",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "SG",
+ "type": "canton",
+ "latitude": "47.14562540",
+ "longitude": "9.35043320"
+ },
+ {
+ "id": 1657,
+ "name": "Thurgau",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "TG",
+ "type": "canton",
+ "latitude": "47.60378560",
+ "longitude": "9.05573710"
+ },
+ {
+ "id": 1643,
+ "name": "Ticino",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "TI",
+ "type": "canton",
+ "latitude": "46.33173400",
+ "longitude": "8.80045290"
+ },
+ {
+ "id": 1642,
+ "name": "Uri",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "UR",
+ "type": "canton",
+ "latitude": "41.48606470",
+ "longitude": "-71.53085370"
+ },
+ {
+ "id": 1648,
+ "name": "Valais",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "VS",
+ "type": "canton",
+ "latitude": "46.19046140",
+ "longitude": "7.54492260"
+ },
+ {
+ "id": 1651,
+ "name": "Vaud",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "VD",
+ "type": "canton",
+ "latitude": "46.56131350",
+ "longitude": "6.53676500"
+ },
+ {
+ "id": 1646,
+ "name": "Zug",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "ZG",
+ "type": "canton",
+ "latitude": "47.16615050",
+ "longitude": "8.51547490"
+ },
+ {
+ "id": 1656,
+ "name": "Zรผrich",
+ "country_id": 214,
+ "country_code": "CH",
+ "country_name": "Switzerland",
+ "state_code": "ZH",
+ "type": "canton",
+ "latitude": "47.35953600",
+ "longitude": "8.63564520"
+ },
+ {
+ "id": 2941,
+ "name": "Al-Hasakah",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "HA",
+ "type": null,
+ "latitude": "36.40551500",
+ "longitude": "40.79691490"
+ },
+ {
+ "id": 2944,
+ "name": "Al-Raqqah",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "RA",
+ "type": null,
+ "latitude": "35.95941060",
+ "longitude": "38.99810520"
+ },
+ {
+ "id": 2946,
+ "name": "Aleppo",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "HL",
+ "type": null,
+ "latitude": "36.22623930",
+ "longitude": "37.46813960"
+ },
+ {
+ "id": 2936,
+ "name": "As-Suwayda",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "SU",
+ "type": null,
+ "latitude": "32.79891560",
+ "longitude": "36.78195050"
+ },
+ {
+ "id": 2939,
+ "name": "Damascus",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "DI",
+ "type": null,
+ "latitude": "33.51514440",
+ "longitude": "36.39313540"
+ },
+ {
+ "id": 2945,
+ "name": "Daraa",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "DR",
+ "type": null,
+ "latitude": "32.92488130",
+ "longitude": "36.17626150"
+ },
+ {
+ "id": 2937,
+ "name": "Deir ez-Zor",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "DY",
+ "type": null,
+ "latitude": "35.28797980",
+ "longitude": "40.30886260"
+ },
+ {
+ "id": 2934,
+ "name": "Hama",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "HM",
+ "type": null,
+ "latitude": "35.18878650",
+ "longitude": "37.21158290"
+ },
+ {
+ "id": 2942,
+ "name": "Homs",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "HI",
+ "type": null,
+ "latitude": "34.25671230",
+ "longitude": "38.31657250"
+ },
+ {
+ "id": 2940,
+ "name": "Idlib",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "ID",
+ "type": null,
+ "latitude": "35.82687980",
+ "longitude": "36.69572160"
+ },
+ {
+ "id": 2938,
+ "name": "Latakia",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "LA",
+ "type": null,
+ "latitude": "35.61297910",
+ "longitude": "36.00232250"
+ },
+ {
+ "id": 2943,
+ "name": "Quneitra",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "QU",
+ "type": null,
+ "latitude": "33.07763180",
+ "longitude": "35.89341360"
+ },
+ {
+ "id": 2935,
+ "name": "Rif Dimashq",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "RD",
+ "type": null,
+ "latitude": "33.51672890",
+ "longitude": "36.95410700"
+ },
+ {
+ "id": 2947,
+ "name": "Tartus",
+ "country_id": 215,
+ "country_code": "SY",
+ "country_name": "Syria",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "35.00066520",
+ "longitude": "36.00232250"
+ },
+ {
+ "id": 3404,
+ "name": "Changhua",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "CHA",
+ "type": "county",
+ "latitude": "24.05179630",
+ "longitude": "120.51613520"
+ },
+ {
+ "id": 3408,
+ "name": "Chiayi",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "CYI",
+ "type": "city",
+ "latitude": "23.45184280",
+ "longitude": "120.25546150"
+ },
+ {
+ "id": 3418,
+ "name": "Chiayi",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "CYQ",
+ "type": "county",
+ "latitude": "23.48007510",
+ "longitude": "120.44911130"
+ },
+ {
+ "id": 3423,
+ "name": "Hsinchu",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "HSQ",
+ "type": "county",
+ "latitude": "24.83872260",
+ "longitude": "121.01772460"
+ },
+ {
+ "id": 3417,
+ "name": "Hsinchu",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "HSZ",
+ "type": "city",
+ "latitude": "24.81382870",
+ "longitude": "120.96747980"
+ },
+ {
+ "id": 3411,
+ "name": "Hualien",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "HUA",
+ "type": "county",
+ "latitude": "23.98715890",
+ "longitude": "121.60157140"
+ },
+ {
+ "id": 3412,
+ "name": "Kaohsiung",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "KHH",
+ "type": "special municipality",
+ "latitude": "22.62727840",
+ "longitude": "120.30143530"
+ },
+ {
+ "id": 4965,
+ "name": "Keelung",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "KEE",
+ "type": "city",
+ "latitude": "25.12418620",
+ "longitude": "121.64758340"
+ },
+ {
+ "id": 3415,
+ "name": "Kinmen",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "KIN",
+ "type": "county",
+ "latitude": "24.34877920",
+ "longitude": "118.32856440"
+ },
+ {
+ "id": 3420,
+ "name": "Lienchiang",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "LIE",
+ "type": "county",
+ "latitude": "26.15055560",
+ "longitude": "119.92888890"
+ },
+ {
+ "id": 3413,
+ "name": "Miaoli",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "MIA",
+ "type": "county",
+ "latitude": "24.56015900",
+ "longitude": "120.82142650"
+ },
+ {
+ "id": 3407,
+ "name": "Nantou",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "NAN",
+ "type": "county",
+ "latitude": "23.96099810",
+ "longitude": "120.97186380"
+ },
+ {
+ "id": 4966,
+ "name": "New Taipei",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "NWT",
+ "type": "special municipality",
+ "latitude": "24.98752780",
+ "longitude": "121.36459470"
+ },
+ {
+ "id": 3403,
+ "name": "Penghu",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "PEN",
+ "type": "county",
+ "latitude": "23.57118990",
+ "longitude": "119.57931570"
+ },
+ {
+ "id": 3405,
+ "name": "Pingtung",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "PIF",
+ "type": "county",
+ "latitude": "22.55197590",
+ "longitude": "120.54875970"
+ },
+ {
+ "id": 3406,
+ "name": "Taichung",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "TXG",
+ "type": "special municipality",
+ "latitude": "24.14773580",
+ "longitude": "120.67364820"
+ },
+ {
+ "id": 3421,
+ "name": "Tainan",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "TNN",
+ "type": "special municipality",
+ "latitude": "22.99972810",
+ "longitude": "120.22702770"
+ },
+ {
+ "id": 3422,
+ "name": "Taipei",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "TPE",
+ "type": "special municipality",
+ "latitude": "25.03296940",
+ "longitude": "121.56541770"
+ },
+ {
+ "id": 3410,
+ "name": "Taitung",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "TTT",
+ "type": "county",
+ "latitude": "22.79724470",
+ "longitude": "121.07137020"
+ },
+ {
+ "id": 3419,
+ "name": "Taoyuan",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "TAO",
+ "type": "special municipality",
+ "latitude": "24.99362810",
+ "longitude": "121.30097980"
+ },
+ {
+ "id": 3402,
+ "name": "Yilan",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "ILA",
+ "type": "county",
+ "latitude": "24.70210730",
+ "longitude": "121.73775020"
+ },
+ {
+ "id": 3416,
+ "name": "Yunlin",
+ "country_id": 216,
+ "country_code": "TW",
+ "country_name": "Taiwan",
+ "state_code": "YUN",
+ "type": "county",
+ "latitude": "23.70920330",
+ "longitude": "120.43133730"
+ },
+ {
+ "id": 3397,
+ "name": "districts of Republican Subordination",
+ "country_id": 217,
+ "country_code": "TJ",
+ "country_name": "Tajikistan",
+ "state_code": "RA",
+ "type": null,
+ "latitude": "39.08579020",
+ "longitude": "70.24083250"
+ },
+ {
+ "id": 3399,
+ "name": "Gorno-Badakhshan Autonomous Province",
+ "country_id": 217,
+ "country_code": "TJ",
+ "country_name": "Tajikistan",
+ "state_code": "GB",
+ "type": null,
+ "latitude": "38.41273200",
+ "longitude": "73.08774900"
+ },
+ {
+ "id": 3398,
+ "name": "Khatlon Province",
+ "country_id": 217,
+ "country_code": "TJ",
+ "country_name": "Tajikistan",
+ "state_code": "KT",
+ "type": null,
+ "latitude": "37.91135620",
+ "longitude": "69.09702300"
+ },
+ {
+ "id": 3400,
+ "name": "Sughd Province",
+ "country_id": 217,
+ "country_code": "TJ",
+ "country_name": "Tajikistan",
+ "state_code": "SU",
+ "type": null,
+ "latitude": "39.51553260",
+ "longitude": "69.09702300"
+ },
+ {
+ "id": 1491,
+ "name": "Arusha",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "01",
+ "type": "Region",
+ "latitude": "-3.38692540",
+ "longitude": "36.68299270"
+ },
+ {
+ "id": 1490,
+ "name": "Dar es Salaam",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "02",
+ "type": "Region",
+ "latitude": "-6.79235400",
+ "longitude": "39.20832840"
+ },
+ {
+ "id": 1466,
+ "name": "Dodoma",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "03",
+ "type": "Region",
+ "latitude": "-6.57382280",
+ "longitude": "36.26308460"
+ },
+ {
+ "id": 1481,
+ "name": "Geita",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "27",
+ "type": "Region",
+ "latitude": "-2.82422570",
+ "longitude": "32.26538870"
+ },
+ {
+ "id": 1489,
+ "name": "Iringa",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "04",
+ "type": "Region",
+ "latitude": "-7.78874420",
+ "longitude": "35.56578620"
+ },
+ {
+ "id": 1465,
+ "name": "Kagera",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "05",
+ "type": "Region",
+ "latitude": "-1.30011150",
+ "longitude": "31.26263660"
+ },
+ {
+ "id": 1482,
+ "name": "Katavi",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "28",
+ "type": "Region",
+ "latitude": "-6.36771250",
+ "longitude": "31.26263660"
+ },
+ {
+ "id": 1478,
+ "name": "Kigoma",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "08",
+ "type": "Region",
+ "latitude": "-4.88240920",
+ "longitude": "29.66150550"
+ },
+ {
+ "id": 1467,
+ "name": "Kilimanjaro",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "09",
+ "type": "Region",
+ "latitude": "-4.13369270",
+ "longitude": "37.80876930"
+ },
+ {
+ "id": 1483,
+ "name": "Lindi",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "12",
+ "type": "Region",
+ "latitude": "-9.23433940",
+ "longitude": "38.31657250"
+ },
+ {
+ "id": 1484,
+ "name": "Manyara",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "26",
+ "type": "Region",
+ "latitude": "-4.31500580",
+ "longitude": "36.95410700"
+ },
+ {
+ "id": 1468,
+ "name": "Mara",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "13",
+ "type": "Region",
+ "latitude": "-1.77535380",
+ "longitude": "34.15319470"
+ },
+ {
+ "id": 4955,
+ "name": "Mbeya",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "14",
+ "type": "Region",
+ "latitude": "-8.28661120",
+ "longitude": "32.81325370"
+ },
+ {
+ "id": 1470,
+ "name": "Morogoro",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "16",
+ "type": "Region",
+ "latitude": "-8.81371730",
+ "longitude": "36.95410700"
+ },
+ {
+ "id": 1476,
+ "name": "Mtwara",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "17",
+ "type": "Region",
+ "latitude": "-10.33984550",
+ "longitude": "40.16574660"
+ },
+ {
+ "id": 1479,
+ "name": "Mwanza",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "18",
+ "type": "Region",
+ "latitude": "-2.46711970",
+ "longitude": "32.89868120"
+ },
+ {
+ "id": 1480,
+ "name": "Njombe",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "29",
+ "type": "Region",
+ "latitude": "-9.24226320",
+ "longitude": "35.12687810"
+ },
+ {
+ "id": 1488,
+ "name": "Pemba North",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "06",
+ "type": "Region",
+ "latitude": "-5.03193520",
+ "longitude": "39.77555710"
+ },
+ {
+ "id": 1472,
+ "name": "Pemba South",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "10",
+ "type": "Region",
+ "latitude": "-5.31469610",
+ "longitude": "39.75495110"
+ },
+ {
+ "id": 1485,
+ "name": "Pwani",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "19",
+ "type": "Region",
+ "latitude": "-7.32377140",
+ "longitude": "38.82054540"
+ },
+ {
+ "id": 1477,
+ "name": "Rukwa",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "20",
+ "type": "Region",
+ "latitude": "-8.01094440",
+ "longitude": "31.44561790"
+ },
+ {
+ "id": 1486,
+ "name": "Ruvuma",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "21",
+ "type": "Region",
+ "latitude": "-10.68787170",
+ "longitude": "36.26308460"
+ },
+ {
+ "id": 1463,
+ "name": "Shinyanga",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "22",
+ "type": "Region",
+ "latitude": "-3.68099610",
+ "longitude": "33.42714030"
+ },
+ {
+ "id": 1464,
+ "name": "Simiyu",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "30",
+ "type": "Region",
+ "latitude": "-2.83087380",
+ "longitude": "34.15319470"
+ },
+ {
+ "id": 1474,
+ "name": "Singida",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "23",
+ "type": "Region",
+ "latitude": "-6.74533520",
+ "longitude": "34.15319470"
+ },
+ {
+ "id": 4956,
+ "name": "Songwe",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "31",
+ "type": "Region",
+ "latitude": "-8.27261200",
+ "longitude": "31.71131740"
+ },
+ {
+ "id": 1469,
+ "name": "Tabora",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "24",
+ "type": "Region",
+ "latitude": "-5.03421380",
+ "longitude": "32.80844960"
+ },
+ {
+ "id": 1487,
+ "name": "Tanga",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "25",
+ "type": "Region",
+ "latitude": "-5.30497890",
+ "longitude": "38.31657250"
+ },
+ {
+ "id": 1473,
+ "name": "Zanzibar North",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "07",
+ "type": "Region",
+ "latitude": "-5.93950930",
+ "longitude": "39.27910110"
+ },
+ {
+ "id": 1471,
+ "name": "Zanzibar South",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "11",
+ "type": "Region",
+ "latitude": "-6.26428510",
+ "longitude": "39.44502810"
+ },
+ {
+ "id": 1475,
+ "name": "Zanzibar West",
+ "country_id": 218,
+ "country_code": "TZ",
+ "country_name": "Tanzania",
+ "state_code": "15",
+ "type": "Region",
+ "latitude": "-6.22981360",
+ "longitude": "39.25832930"
+ },
+ {
+ "id": 3523,
+ "name": "Amnat Charoen",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "37",
+ "type": null,
+ "latitude": "15.86567830",
+ "longitude": "104.62577740"
+ },
+ {
+ "id": 3519,
+ "name": "Ang Thong",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "15",
+ "type": null,
+ "latitude": "14.58960540",
+ "longitude": "100.45505200"
+ },
+ {
+ "id": 3554,
+ "name": "Bangkok",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "10",
+ "type": null,
+ "latitude": "13.75633090",
+ "longitude": "100.50176510"
+ },
+ {
+ "id": 3533,
+ "name": "Bueng Kan",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "38",
+ "type": null,
+ "latitude": "18.36091040",
+ "longitude": "103.64644630"
+ },
+ {
+ "id": 3534,
+ "name": "Buri Ram",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "31",
+ "type": null,
+ "latitude": "14.99510030",
+ "longitude": "103.11159150"
+ },
+ {
+ "id": 3552,
+ "name": "Chachoengsao",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "24",
+ "type": null,
+ "latitude": "13.69041940",
+ "longitude": "101.07795960"
+ },
+ {
+ "id": 3522,
+ "name": "Chai Nat",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "18",
+ "type": null,
+ "latitude": "15.18519710",
+ "longitude": "100.12512500"
+ },
+ {
+ "id": 4954,
+ "name": "Chaiyaphum",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "36",
+ "type": null,
+ "latitude": "16.00749740",
+ "longitude": "101.61291720"
+ },
+ {
+ "id": 3486,
+ "name": "Chanthaburi",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "22",
+ "type": null,
+ "latitude": "12.61124850",
+ "longitude": "102.10378060"
+ },
+ {
+ "id": 3491,
+ "name": "Chiang Mai",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "50",
+ "type": null,
+ "latitude": "18.78834390",
+ "longitude": "98.98530080"
+ },
+ {
+ "id": 3498,
+ "name": "Chiang Rai",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "57",
+ "type": null,
+ "latitude": "19.91047980",
+ "longitude": "99.84057600"
+ },
+ {
+ "id": 3513,
+ "name": "Chon Buri",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "20",
+ "type": null,
+ "latitude": "13.36114310",
+ "longitude": "100.98467170"
+ },
+ {
+ "id": 3526,
+ "name": "Chumphon",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "86",
+ "type": null,
+ "latitude": "10.49304960",
+ "longitude": "99.18001990"
+ },
+ {
+ "id": 3550,
+ "name": "Kalasin",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "46",
+ "type": null,
+ "latitude": "16.43850800",
+ "longitude": "103.50609940"
+ },
+ {
+ "id": 3516,
+ "name": "Kamphaeng Phet",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "62",
+ "type": null,
+ "latitude": "16.48277980",
+ "longitude": "99.52266180"
+ },
+ {
+ "id": 3511,
+ "name": "Kanchanaburi",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "71",
+ "type": null,
+ "latitude": "14.10113930",
+ "longitude": "99.41794310"
+ },
+ {
+ "id": 3485,
+ "name": "Khon Kaen",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "40",
+ "type": null,
+ "latitude": "16.43219380",
+ "longitude": "102.82362140"
+ },
+ {
+ "id": 3478,
+ "name": "Krabi",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "81",
+ "type": null,
+ "latitude": "8.08629970",
+ "longitude": "98.90628350"
+ },
+ {
+ "id": 3544,
+ "name": "Lampang",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "52",
+ "type": null,
+ "latitude": "18.28553950",
+ "longitude": "99.51278950"
+ },
+ {
+ "id": 3483,
+ "name": "Lamphun",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "51",
+ "type": null,
+ "latitude": "18.57446060",
+ "longitude": "99.00872210"
+ },
+ {
+ "id": 3509,
+ "name": "Loei",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "42",
+ "type": null,
+ "latitude": "17.48602320",
+ "longitude": "101.72230020"
+ },
+ {
+ "id": 3543,
+ "name": "Lop Buri",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "16",
+ "type": null,
+ "latitude": "14.79950810",
+ "longitude": "100.65337060"
+ },
+ {
+ "id": 3505,
+ "name": "Mae Hong Son",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "58",
+ "type": null,
+ "latitude": "19.30202960",
+ "longitude": "97.96543680"
+ },
+ {
+ "id": 3517,
+ "name": "Maha Sarakham",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "44",
+ "type": null,
+ "latitude": "16.01320150",
+ "longitude": "103.16151690"
+ },
+ {
+ "id": 3546,
+ "name": "Mukdahan",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "49",
+ "type": null,
+ "latitude": "16.54359140",
+ "longitude": "104.70241210"
+ },
+ {
+ "id": 3535,
+ "name": "Nakhon Nayok",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "26",
+ "type": null,
+ "latitude": "14.20694660",
+ "longitude": "101.21305110"
+ },
+ {
+ "id": 3503,
+ "name": "Nakhon Pathom",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "73",
+ "type": null,
+ "latitude": "13.81402930",
+ "longitude": "100.03729290"
+ },
+ {
+ "id": 3548,
+ "name": "Nakhon Phanom",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "48",
+ "type": null,
+ "latitude": "17.39203900",
+ "longitude": "104.76955080"
+ },
+ {
+ "id": 3497,
+ "name": "Nakhon Ratchasima",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "30",
+ "type": null,
+ "latitude": "14.97384930",
+ "longitude": "102.08365200"
+ },
+ {
+ "id": 3492,
+ "name": "Nakhon Sawan",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "60",
+ "type": null,
+ "latitude": "15.69873820",
+ "longitude": "100.11996000"
+ },
+ {
+ "id": 3520,
+ "name": "Nakhon Si Thammarat",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "80",
+ "type": null,
+ "latitude": "8.43248310",
+ "longitude": "99.95990330"
+ },
+ {
+ "id": 3530,
+ "name": "Nan",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "55",
+ "type": null,
+ "latitude": "45.52220800",
+ "longitude": "-122.98632810"
+ },
+ {
+ "id": 3553,
+ "name": "Narathiwat",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "96",
+ "type": null,
+ "latitude": "6.42546070",
+ "longitude": "101.82531430"
+ },
+ {
+ "id": 3480,
+ "name": "Nong Bua Lam Phu",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "39",
+ "type": null,
+ "latitude": "17.22182470",
+ "longitude": "102.42603680"
+ },
+ {
+ "id": 3484,
+ "name": "Nong Khai",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "43",
+ "type": null,
+ "latitude": "17.87828030",
+ "longitude": "102.74126380"
+ },
+ {
+ "id": 3495,
+ "name": "Nonthaburi",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "12",
+ "type": null,
+ "latitude": "13.85910840",
+ "longitude": "100.52165080"
+ },
+ {
+ "id": 3500,
+ "name": "Pathum Thani",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "13",
+ "type": null,
+ "latitude": "14.02083910",
+ "longitude": "100.52502760"
+ },
+ {
+ "id": 3540,
+ "name": "Pattani",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "94",
+ "type": null,
+ "latitude": "6.76183080",
+ "longitude": "101.32325490"
+ },
+ {
+ "id": 3507,
+ "name": "Pattaya",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "S",
+ "type": null,
+ "latitude": "12.92355570",
+ "longitude": "100.88245510"
+ },
+ {
+ "id": 3549,
+ "name": "Phangnga",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "82",
+ "type": null,
+ "latitude": "8.45014140",
+ "longitude": "98.52553170"
+ },
+ {
+ "id": 3488,
+ "name": "Phatthalung",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "93",
+ "type": null,
+ "latitude": "7.61668230",
+ "longitude": "100.07402310"
+ },
+ {
+ "id": 3538,
+ "name": "Phayao",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "56",
+ "type": null,
+ "latitude": "19.21543670",
+ "longitude": "100.20236920"
+ },
+ {
+ "id": 3515,
+ "name": "Phetchabun",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "67",
+ "type": null,
+ "latitude": "16.30166900",
+ "longitude": "101.11928040"
+ },
+ {
+ "id": 3532,
+ "name": "Phetchaburi",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "76",
+ "type": null,
+ "latitude": "12.96492150",
+ "longitude": "99.64258830"
+ },
+ {
+ "id": 3514,
+ "name": "Phichit",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "66",
+ "type": null,
+ "latitude": "16.27408760",
+ "longitude": "100.33469910"
+ },
+ {
+ "id": 3506,
+ "name": "Phitsanulok",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "65",
+ "type": null,
+ "latitude": "16.82112380",
+ "longitude": "100.26585160"
+ },
+ {
+ "id": 3494,
+ "name": "Phra Nakhon Si Ayutthaya",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "14",
+ "type": null,
+ "latitude": "14.36923250",
+ "longitude": "100.58766340"
+ },
+ {
+ "id": 3528,
+ "name": "Phrae",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "54",
+ "type": null,
+ "latitude": "18.14457740",
+ "longitude": "100.14028310"
+ },
+ {
+ "id": 3536,
+ "name": "Phuket",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "83",
+ "type": null,
+ "latitude": "7.88044790",
+ "longitude": "98.39225040"
+ },
+ {
+ "id": 3542,
+ "name": "Prachin Buri",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "25",
+ "type": null,
+ "latitude": "14.04206990",
+ "longitude": "101.66008740"
+ },
+ {
+ "id": 3508,
+ "name": "Prachuap Khiri Khan",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "77",
+ "type": null,
+ "latitude": "11.79383890",
+ "longitude": "99.79575640"
+ },
+ {
+ "id": 3479,
+ "name": "Ranong",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "85",
+ "type": null,
+ "latitude": "9.95287020",
+ "longitude": "98.60846410"
+ },
+ {
+ "id": 3499,
+ "name": "Ratchaburi",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "70",
+ "type": null,
+ "latitude": "13.52828930",
+ "longitude": "99.81342110"
+ },
+ {
+ "id": 3518,
+ "name": "Rayong",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "21",
+ "type": null,
+ "latitude": "12.68139570",
+ "longitude": "101.28162610"
+ },
+ {
+ "id": 3510,
+ "name": "Roi Et",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "45",
+ "type": null,
+ "latitude": "16.05381960",
+ "longitude": "103.65200360"
+ },
+ {
+ "id": 3529,
+ "name": "Sa Kaeo",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "27",
+ "type": null,
+ "latitude": "13.82403800",
+ "longitude": "102.06458390"
+ },
+ {
+ "id": 3501,
+ "name": "Sakon Nakhon",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "47",
+ "type": null,
+ "latitude": "17.16642110",
+ "longitude": "104.14860550"
+ },
+ {
+ "id": 3481,
+ "name": "Samut Prakan",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "11",
+ "type": null,
+ "latitude": "13.59909610",
+ "longitude": "100.59983190"
+ },
+ {
+ "id": 3504,
+ "name": "Samut Sakhon",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "74",
+ "type": null,
+ "latitude": "13.54752160",
+ "longitude": "100.27439560"
+ },
+ {
+ "id": 3502,
+ "name": "Samut Songkhram",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "75",
+ "type": null,
+ "latitude": "13.40982170",
+ "longitude": "100.00226450"
+ },
+ {
+ "id": 3487,
+ "name": "Saraburi",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "19",
+ "type": null,
+ "latitude": "14.52891540",
+ "longitude": "100.91014210"
+ },
+ {
+ "id": 3537,
+ "name": "Satun",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "91",
+ "type": null,
+ "latitude": "6.62381580",
+ "longitude": "100.06737440"
+ },
+ {
+ "id": 3547,
+ "name": "Si Sa Ket",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "33",
+ "type": null,
+ "latitude": "15.11860090",
+ "longitude": "104.32200950"
+ },
+ {
+ "id": 3490,
+ "name": "Sing Buri",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "17",
+ "type": null,
+ "latitude": "14.89362530",
+ "longitude": "100.39673140"
+ },
+ {
+ "id": 3539,
+ "name": "Songkhla",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "90",
+ "type": null,
+ "latitude": "7.18976590",
+ "longitude": "100.59538130"
+ },
+ {
+ "id": 3545,
+ "name": "Sukhothai",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "64",
+ "type": null,
+ "latitude": "43.64855560",
+ "longitude": "-79.37466390"
+ },
+ {
+ "id": 3524,
+ "name": "Suphan Buri",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "72",
+ "type": null,
+ "latitude": "14.47448920",
+ "longitude": "100.11771280"
+ },
+ {
+ "id": 3482,
+ "name": "Surat Thani",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "84",
+ "type": null,
+ "latitude": "9.13419490",
+ "longitude": "99.33341980"
+ },
+ {
+ "id": 3531,
+ "name": "Surin",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "32",
+ "type": null,
+ "latitude": "37.03582710",
+ "longitude": "-95.62763670"
+ },
+ {
+ "id": 3525,
+ "name": "Tak",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "63",
+ "type": null,
+ "latitude": "45.02996460",
+ "longitude": "-93.10498150"
+ },
+ {
+ "id": 3541,
+ "name": "Trang",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "92",
+ "type": null,
+ "latitude": "7.56448330",
+ "longitude": "99.62393340"
+ },
+ {
+ "id": 3496,
+ "name": "Trat",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "23",
+ "type": null,
+ "latitude": "12.24275630",
+ "longitude": "102.51747340"
+ },
+ {
+ "id": 3512,
+ "name": "Ubon Ratchathani",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "34",
+ "type": null,
+ "latitude": "15.24484530",
+ "longitude": "104.84729950"
+ },
+ {
+ "id": 3527,
+ "name": "Udon Thani",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "41",
+ "type": null,
+ "latitude": "17.36469690",
+ "longitude": "102.81589240"
+ },
+ {
+ "id": 3551,
+ "name": "Uthai Thani",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "61",
+ "type": null,
+ "latitude": "15.38350010",
+ "longitude": "100.02455270"
+ },
+ {
+ "id": 3489,
+ "name": "Uttaradit",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "53",
+ "type": null,
+ "latitude": "17.62008860",
+ "longitude": "100.09929420"
+ },
+ {
+ "id": 3493,
+ "name": "Yala",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "95",
+ "type": null,
+ "latitude": "44.05791170",
+ "longitude": "-123.16538480"
+ },
+ {
+ "id": 3521,
+ "name": "Yasothon",
+ "country_id": 219,
+ "country_code": "TH",
+ "country_name": "Thailand",
+ "state_code": "35",
+ "type": null,
+ "latitude": "15.79264100",
+ "longitude": "104.14528270"
+ },
+ {
+ "id": 3601,
+ "name": "Acklins",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "AK",
+ "type": null,
+ "latitude": "22.36577080",
+ "longitude": "-74.05351260"
+ },
+ {
+ "id": 3628,
+ "name": "Acklins and Crooked Islands",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "AC",
+ "type": null,
+ "latitude": "22.36577080",
+ "longitude": "-74.05351260"
+ },
+ {
+ "id": 3593,
+ "name": "Berry Islands",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "BY",
+ "type": null,
+ "latitude": "25.62500420",
+ "longitude": "-77.82522030"
+ },
+ {
+ "id": 3629,
+ "name": "Bimini",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "BI",
+ "type": null,
+ "latitude": "24.64153250",
+ "longitude": "-79.85062260"
+ },
+ {
+ "id": 3605,
+ "name": "Black Point",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "BP",
+ "type": null,
+ "latitude": "41.39510240",
+ "longitude": "-71.46505560"
+ },
+ {
+ "id": 3611,
+ "name": "Cat Island",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "CI",
+ "type": null,
+ "latitude": "30.22801360",
+ "longitude": "-89.10149330"
+ },
+ {
+ "id": 3603,
+ "name": "Central Abaco",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "CO",
+ "type": null,
+ "latitude": "26.35550290",
+ "longitude": "-77.14851630"
+ },
+ {
+ "id": 3631,
+ "name": "Central Andros",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "CS",
+ "type": null,
+ "latitude": "24.46884820",
+ "longitude": "-77.97386500"
+ },
+ {
+ "id": 3596,
+ "name": "Central Eleuthera",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "CE",
+ "type": null,
+ "latitude": "25.13620370",
+ "longitude": "-76.14359150"
+ },
+ {
+ "id": 3621,
+ "name": "Crooked Island",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "CK",
+ "type": null,
+ "latitude": "22.63909820",
+ "longitude": "-74.00650900"
+ },
+ {
+ "id": 3614,
+ "name": "East Grand Bahama",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "EG",
+ "type": null,
+ "latitude": "26.65828230",
+ "longitude": "-78.22482910"
+ },
+ {
+ "id": 3612,
+ "name": "Exuma",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "EX",
+ "type": null,
+ "latitude": "23.61925980",
+ "longitude": "-75.96954650"
+ },
+ {
+ "id": 3626,
+ "name": "Freeport",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "FP",
+ "type": null,
+ "latitude": "42.29668610",
+ "longitude": "-89.62122710"
+ },
+ {
+ "id": 3619,
+ "name": "Fresh Creek",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "FC",
+ "type": null,
+ "latitude": "40.65437560",
+ "longitude": "-73.89479390"
+ },
+ {
+ "id": 3597,
+ "name": "Governor's Harbour",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "GH",
+ "type": null,
+ "latitude": "25.19480960",
+ "longitude": "-76.24396220"
+ },
+ {
+ "id": 3632,
+ "name": "Grand Cay",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "GC",
+ "type": null,
+ "latitude": "27.21626150",
+ "longitude": "-78.32305590"
+ },
+ {
+ "id": 3595,
+ "name": "Green Turtle Cay",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "GT",
+ "type": null,
+ "latitude": "26.77471070",
+ "longitude": "-77.32957080"
+ },
+ {
+ "id": 3613,
+ "name": "Harbour Island",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "HI",
+ "type": null,
+ "latitude": "25.50011000",
+ "longitude": "-76.63405110"
+ },
+ {
+ "id": 3598,
+ "name": "High Rock",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "HR",
+ "type": null,
+ "latitude": "46.68434150",
+ "longitude": "-121.90174610"
+ },
+ {
+ "id": 3624,
+ "name": "Hope Town",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "HT",
+ "type": null,
+ "latitude": "26.50095040",
+ "longitude": "-76.99598720"
+ },
+ {
+ "id": 3609,
+ "name": "Inagua",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "IN",
+ "type": null,
+ "latitude": "21.06560660",
+ "longitude": "-73.32370800"
+ },
+ {
+ "id": 3618,
+ "name": "Kemps Bay",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "KB",
+ "type": null,
+ "latitude": "24.02364000",
+ "longitude": "-77.54534900"
+ },
+ {
+ "id": 3610,
+ "name": "Long Island",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "LI",
+ "type": null,
+ "latitude": "40.78914200",
+ "longitude": "-73.13496100"
+ },
+ {
+ "id": 3625,
+ "name": "Mangrove Cay",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "MC",
+ "type": null,
+ "latitude": "24.14814250",
+ "longitude": "-77.76809520"
+ },
+ {
+ "id": 3604,
+ "name": "Marsh Harbour",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "MH",
+ "type": null,
+ "latitude": "26.52416530",
+ "longitude": "-77.09098090"
+ },
+ {
+ "id": 3633,
+ "name": "Mayaguana District",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "MG",
+ "type": null,
+ "latitude": "22.40177140",
+ "longitude": "-73.06413960"
+ },
+ {
+ "id": 4881,
+ "name": "New Providence",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "NP",
+ "type": null,
+ "latitude": "40.69843480",
+ "longitude": "-74.40154050"
+ },
+ {
+ "id": 3594,
+ "name": "Nichollstown and Berry Islands",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "NB",
+ "type": null,
+ "latitude": "25.72362340",
+ "longitude": "-77.83101040"
+ },
+ {
+ "id": 3616,
+ "name": "North Abaco",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "NO",
+ "type": null,
+ "latitude": "26.78716970",
+ "longitude": "-77.43577390"
+ },
+ {
+ "id": 3617,
+ "name": "North Andros",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "NS",
+ "type": null,
+ "latitude": "24.70638050",
+ "longitude": "-78.01953870"
+ },
+ {
+ "id": 3602,
+ "name": "North Eleuthera",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "NE",
+ "type": null,
+ "latitude": "25.46475170",
+ "longitude": "-76.67592200"
+ },
+ {
+ "id": 3615,
+ "name": "Ragged Island",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "RI",
+ "type": null,
+ "latitude": "41.59743100",
+ "longitude": "-71.26020200"
+ },
+ {
+ "id": 3623,
+ "name": "Rock Sound",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "RS",
+ "type": null,
+ "latitude": "39.01424430",
+ "longitude": "-95.67089890"
+ },
+ {
+ "id": 3600,
+ "name": "Rum Cay District",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "RC",
+ "type": null,
+ "latitude": "23.68546760",
+ "longitude": "-74.83901620"
+ },
+ {
+ "id": 3620,
+ "name": "San Salvador and Rum Cay",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "SR",
+ "type": null,
+ "latitude": "23.68546760",
+ "longitude": "-74.83901620"
+ },
+ {
+ "id": 3627,
+ "name": "San Salvador Island",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "SS",
+ "type": null,
+ "latitude": "24.07755460",
+ "longitude": "-74.47600880"
+ },
+ {
+ "id": 3606,
+ "name": "Sandy Point",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "SP",
+ "type": null,
+ "latitude": "39.01454640",
+ "longitude": "-76.39989250"
+ },
+ {
+ "id": 3608,
+ "name": "South Abaco",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "SO",
+ "type": null,
+ "latitude": "26.06405910",
+ "longitude": "-77.26350380"
+ },
+ {
+ "id": 3622,
+ "name": "South Andros",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "23.97135560",
+ "longitude": "-77.60778650"
+ },
+ {
+ "id": 3607,
+ "name": "South Eleuthera",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "SE",
+ "type": null,
+ "latitude": "24.77085620",
+ "longitude": "-76.21314740"
+ },
+ {
+ "id": 3630,
+ "name": "Spanish Wells",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "SW",
+ "type": null,
+ "latitude": "26.32505990",
+ "longitude": "-81.79803280"
+ },
+ {
+ "id": 3599,
+ "name": "West Grand Bahama",
+ "country_id": 17,
+ "country_code": "BS",
+ "country_name": "The Bahamas",
+ "state_code": "WG",
+ "type": null,
+ "latitude": "26.65944700",
+ "longitude": "-78.52065000"
+ },
+ {
+ "id": 2575,
+ "name": "Centrale Region",
+ "country_id": 220,
+ "country_code": "TG",
+ "country_name": "Togo",
+ "state_code": "C",
+ "type": null,
+ "latitude": "8.65860290",
+ "longitude": "1.05861350"
+ },
+ {
+ "id": 2579,
+ "name": "Kara Region",
+ "country_id": 220,
+ "country_code": "TG",
+ "country_name": "Togo",
+ "state_code": "K",
+ "type": null,
+ "latitude": "9.72163930",
+ "longitude": "1.05861350"
+ },
+ {
+ "id": 2576,
+ "name": "Maritime",
+ "country_id": 220,
+ "country_code": "TG",
+ "country_name": "Togo",
+ "state_code": "M",
+ "type": null,
+ "latitude": "41.65514930",
+ "longitude": "-83.52784670"
+ },
+ {
+ "id": 2577,
+ "name": "Plateaux Region",
+ "country_id": 220,
+ "country_code": "TG",
+ "country_name": "Togo",
+ "state_code": "P",
+ "type": null,
+ "latitude": "7.61013780",
+ "longitude": "1.05861350"
+ },
+ {
+ "id": 2578,
+ "name": "Savanes Region",
+ "country_id": 220,
+ "country_code": "TG",
+ "country_name": "Togo",
+ "state_code": "S",
+ "type": null,
+ "latitude": "10.52917810",
+ "longitude": "0.52578230"
+ },
+ {
+ "id": 3913,
+ "name": "Haสปapai",
+ "country_id": 222,
+ "country_code": "TO",
+ "country_name": "Tonga",
+ "state_code": "02",
+ "type": null,
+ "latitude": "-19.75000000",
+ "longitude": "-174.36666700"
+ },
+ {
+ "id": 3915,
+ "name": "สปEua",
+ "country_id": 222,
+ "country_code": "TO",
+ "country_name": "Tonga",
+ "state_code": "01",
+ "type": null,
+ "latitude": "37.09024000",
+ "longitude": "-95.71289100"
+ },
+ {
+ "id": 3914,
+ "name": "Niuas",
+ "country_id": 222,
+ "country_code": "TO",
+ "country_name": "Tonga",
+ "state_code": "03",
+ "type": null,
+ "latitude": "-15.95940000",
+ "longitude": "-173.78300000"
+ },
+ {
+ "id": 3912,
+ "name": "Tongatapu",
+ "country_id": 222,
+ "country_code": "TO",
+ "country_name": "Tonga",
+ "state_code": "04",
+ "type": null,
+ "latitude": "-21.14659680",
+ "longitude": "-175.25154820"
+ },
+ {
+ "id": 3911,
+ "name": "Vavaสปu",
+ "country_id": 222,
+ "country_code": "TO",
+ "country_name": "Tonga",
+ "state_code": "05",
+ "type": null,
+ "latitude": "-18.62275600",
+ "longitude": "-173.99029820"
+ },
+ {
+ "id": 3362,
+ "name": "Arima",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "ARI",
+ "type": null,
+ "latitude": "46.79316040",
+ "longitude": "-71.25843110"
+ },
+ {
+ "id": 3366,
+ "name": "Chaguanas",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "CHA",
+ "type": null,
+ "latitude": "10.51683870",
+ "longitude": "-61.41144820"
+ },
+ {
+ "id": 3354,
+ "name": "Couva-Tabaquite-Talparo Regional Corporation",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "CTT",
+ "type": null,
+ "latitude": "10.42971450",
+ "longitude": "-61.37352100"
+ },
+ {
+ "id": 3367,
+ "name": "Diego Martin Regional Corporation",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "DMN",
+ "type": null,
+ "latitude": "10.73622860",
+ "longitude": "-61.55448360"
+ },
+ {
+ "id": 3355,
+ "name": "Eastern Tobago",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "ETO",
+ "type": null,
+ "latitude": "11.29793480",
+ "longitude": "-60.55885240"
+ },
+ {
+ "id": 3365,
+ "name": "Penal-Debe Regional Corporation",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "PED",
+ "type": null,
+ "latitude": "10.13374020",
+ "longitude": "-61.44354740"
+ },
+ {
+ "id": 3360,
+ "name": "Point Fortin",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "PTF",
+ "type": null,
+ "latitude": "10.17027370",
+ "longitude": "-61.67133860"
+ },
+ {
+ "id": 3363,
+ "name": "Port of Spain",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "POS",
+ "type": null,
+ "latitude": "10.66031960",
+ "longitude": "-61.50856250"
+ },
+ {
+ "id": 3368,
+ "name": "Princes Town Regional Corporation",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "PRT",
+ "type": null,
+ "latitude": "10.17867460",
+ "longitude": "-61.28019960"
+ },
+ {
+ "id": 3356,
+ "name": "Rio Claro-Mayaro Regional Corporation",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "MRC",
+ "type": null,
+ "latitude": "10.24128320",
+ "longitude": "-61.09372060"
+ },
+ {
+ "id": 3359,
+ "name": "San Fernando",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "SFO",
+ "type": null,
+ "latitude": "34.28194610",
+ "longitude": "-118.43897190"
+ },
+ {
+ "id": 3357,
+ "name": "San Juan-Laventille Regional Corporation",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "SJL",
+ "type": null,
+ "latitude": "10.69085780",
+ "longitude": "-61.45522130"
+ },
+ {
+ "id": 3361,
+ "name": "Sangre Grande Regional Corporation",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "SGE",
+ "type": null,
+ "latitude": "10.58529390",
+ "longitude": "-61.13158130"
+ },
+ {
+ "id": 3364,
+ "name": "Siparia Regional Corporation",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "SIP",
+ "type": null,
+ "latitude": "10.12456260",
+ "longitude": "-61.56032440"
+ },
+ {
+ "id": 3358,
+ "name": "Tunapuna-Piarco Regional Corporation",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "TUP",
+ "type": null,
+ "latitude": "10.68590960",
+ "longitude": "-61.30352480"
+ },
+ {
+ "id": 3353,
+ "name": "Western Tobago",
+ "country_id": 223,
+ "country_code": "TT",
+ "country_name": "Trinidad And Tobago",
+ "state_code": "WTO",
+ "type": null,
+ "latitude": "11.18970720",
+ "longitude": "-60.77954520"
+ },
+ {
+ "id": 2550,
+ "name": "Ariana",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "12",
+ "type": "governorate",
+ "latitude": "36.99227510",
+ "longitude": "10.12551640"
+ },
+ {
+ "id": 2572,
+ "name": "Bรฉja",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "31",
+ "type": "governorate",
+ "latitude": "35.17227160",
+ "longitude": "8.83076260"
+ },
+ {
+ "id": 2566,
+ "name": "Ben Arous",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "13",
+ "type": "governorate",
+ "latitude": "36.64356060",
+ "longitude": "10.21515780"
+ },
+ {
+ "id": 2551,
+ "name": "Bizerte",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "23",
+ "type": "governorate",
+ "latitude": "37.16093970",
+ "longitude": "9.63413500"
+ },
+ {
+ "id": 2558,
+ "name": "Gabรจs",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "81",
+ "type": "governorate",
+ "latitude": "33.94596480",
+ "longitude": "9.72326730"
+ },
+ {
+ "id": 2556,
+ "name": "Gafsa",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "71",
+ "type": "governorate",
+ "latitude": "34.37885050",
+ "longitude": "8.66005860"
+ },
+ {
+ "id": 2552,
+ "name": "Jendouba",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "32",
+ "type": "governorate",
+ "latitude": "36.71818620",
+ "longitude": "8.74811670"
+ },
+ {
+ "id": 2564,
+ "name": "Kairouan",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "41",
+ "type": "governorate",
+ "latitude": "35.67116630",
+ "longitude": "10.10054690"
+ },
+ {
+ "id": 2570,
+ "name": "Kasserine",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "42",
+ "type": "governorate",
+ "latitude": "35.08091480",
+ "longitude": "8.66005860"
+ },
+ {
+ "id": 2562,
+ "name": "Kebili",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "73",
+ "type": "governorate",
+ "latitude": "33.70715510",
+ "longitude": "8.97146230"
+ },
+ {
+ "id": 2561,
+ "name": "Kef",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "33",
+ "type": "governorate",
+ "latitude": "36.12305120",
+ "longitude": "8.66005860"
+ },
+ {
+ "id": 2568,
+ "name": "Mahdia",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "53",
+ "type": "governorate",
+ "latitude": "35.33525580",
+ "longitude": "10.89030990"
+ },
+ {
+ "id": 2555,
+ "name": "Manouba",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "14",
+ "type": "governorate",
+ "latitude": "36.84465040",
+ "longitude": "9.85714160"
+ },
+ {
+ "id": 2560,
+ "name": "Medenine",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "82",
+ "type": "governorate",
+ "latitude": "33.22805650",
+ "longitude": "10.89030990"
+ },
+ {
+ "id": 2553,
+ "name": "Monastir",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "52",
+ "type": "governorate",
+ "latitude": "35.76425150",
+ "longitude": "10.81128850"
+ },
+ {
+ "id": 5116,
+ "name": "Nabeul",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "21",
+ "type": "governorate",
+ "latitude": "36.45245910",
+ "longitude": "10.68032220"
+ },
+ {
+ "id": 2557,
+ "name": "Sfax",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "61",
+ "type": "governorate",
+ "latitude": "34.86065810",
+ "longitude": "10.34978950"
+ },
+ {
+ "id": 2567,
+ "name": "Sidi Bouzid",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "43",
+ "type": "governorate",
+ "latitude": "35.03543860",
+ "longitude": "9.48393920"
+ },
+ {
+ "id": 2563,
+ "name": "Siliana",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "34",
+ "type": "governorate",
+ "latitude": "36.08872080",
+ "longitude": "9.36453350"
+ },
+ {
+ "id": 2571,
+ "name": "Sousse",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "51",
+ "type": "governorate",
+ "latitude": "35.90222670",
+ "longitude": "10.34978950"
+ },
+ {
+ "id": 2559,
+ "name": "Tataouine",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "83",
+ "type": "governorate",
+ "latitude": "32.13441220",
+ "longitude": "10.08072980"
+ },
+ {
+ "id": 2569,
+ "name": "Tozeur",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "72",
+ "type": "governorate",
+ "latitude": "33.97894910",
+ "longitude": "8.04651850"
+ },
+ {
+ "id": 2554,
+ "name": "Tunis",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "11",
+ "type": "governorate",
+ "latitude": "36.83749460",
+ "longitude": "10.19273890"
+ },
+ {
+ "id": 2565,
+ "name": "Zaghouan",
+ "country_id": 224,
+ "country_code": "TN",
+ "country_name": "Tunisia",
+ "state_code": "22",
+ "type": "governorate",
+ "latitude": "36.40911880",
+ "longitude": "10.14231720"
+ },
+ {
+ "id": 2212,
+ "name": "Adana",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "01",
+ "type": "province",
+ "latitude": "37.26123150",
+ "longitude": "35.39050460"
+ },
+ {
+ "id": 2155,
+ "name": "Adฤฑyaman",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "02",
+ "type": "province",
+ "latitude": "37.90782910",
+ "longitude": "38.48499230"
+ },
+ {
+ "id": 2179,
+ "name": "Afyonkarahisar",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "03",
+ "type": "province",
+ "latitude": "38.73910990",
+ "longitude": "30.71200230"
+ },
+ {
+ "id": 2193,
+ "name": "Aฤrฤฑ",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "04",
+ "type": "province",
+ "latitude": "39.62692180",
+ "longitude": "43.02159650"
+ },
+ {
+ "id": 2210,
+ "name": "Aksaray",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "68",
+ "type": "province",
+ "latitude": "38.33520430",
+ "longitude": "33.97500180"
+ },
+ {
+ "id": 2161,
+ "name": "Amasya",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "05",
+ "type": "province",
+ "latitude": "40.65166080",
+ "longitude": "35.90379660"
+ },
+ {
+ "id": 2217,
+ "name": "Ankara",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "06",
+ "type": "province",
+ "latitude": "39.78052450",
+ "longitude": "32.71813750"
+ },
+ {
+ "id": 2169,
+ "name": "Antalya",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "07",
+ "type": "province",
+ "latitude": "37.09516720",
+ "longitude": "31.07937050"
+ },
+ {
+ "id": 2185,
+ "name": "Ardahan",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "75",
+ "type": "province",
+ "latitude": "41.11129640",
+ "longitude": "42.78316740"
+ },
+ {
+ "id": 2191,
+ "name": "Artvin",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "08",
+ "type": "province",
+ "latitude": "41.07866400",
+ "longitude": "41.76282230"
+ },
+ {
+ "id": 2187,
+ "name": "Aydฤฑn",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "09",
+ "type": "province",
+ "latitude": "37.81170330",
+ "longitude": "28.48639630"
+ },
+ {
+ "id": 2175,
+ "name": "Balฤฑkesir",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "10",
+ "type": "province",
+ "latitude": "39.76167820",
+ "longitude": "28.11226790"
+ },
+ {
+ "id": 2148,
+ "name": "Bartฤฑn",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "74",
+ "type": "province",
+ "latitude": "41.58105090",
+ "longitude": "32.46097940"
+ },
+ {
+ "id": 2194,
+ "name": "Batman",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "72",
+ "type": "province",
+ "latitude": "37.83624960",
+ "longitude": "41.36057390"
+ },
+ {
+ "id": 2177,
+ "name": "Bayburt",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "69",
+ "type": "province",
+ "latitude": "40.26032000",
+ "longitude": "40.22804800"
+ },
+ {
+ "id": 2221,
+ "name": "Bilecik",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "11",
+ "type": "province",
+ "latitude": "40.05665550",
+ "longitude": "30.06652360"
+ },
+ {
+ "id": 2153,
+ "name": "Bingรถl",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "12",
+ "type": "province",
+ "latitude": "39.06263540",
+ "longitude": "40.76960950"
+ },
+ {
+ "id": 2215,
+ "name": "Bitlis",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "13",
+ "type": "province",
+ "latitude": "38.65231330",
+ "longitude": "42.42020280"
+ },
+ {
+ "id": 2172,
+ "name": "Bolu",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "14",
+ "type": "province",
+ "latitude": "40.57597660",
+ "longitude": "31.57880860"
+ },
+ {
+ "id": 2209,
+ "name": "Burdur",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "15",
+ "type": "province",
+ "latitude": "37.46126690",
+ "longitude": "30.06652360"
+ },
+ {
+ "id": 2163,
+ "name": "Bursa",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "16",
+ "type": "province",
+ "latitude": "40.06554590",
+ "longitude": "29.23207840"
+ },
+ {
+ "id": 2216,
+ "name": "รanakkale",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "17",
+ "type": "province",
+ "latitude": "40.05101040",
+ "longitude": "26.98524220"
+ },
+ {
+ "id": 2168,
+ "name": "รankฤฑrฤฑ",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "18",
+ "type": "province",
+ "latitude": "40.53690730",
+ "longitude": "33.58838930"
+ },
+ {
+ "id": 2173,
+ "name": "รorum",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "19",
+ "type": "province",
+ "latitude": "40.49982110",
+ "longitude": "34.59862630"
+ },
+ {
+ "id": 2157,
+ "name": "Denizli",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "20",
+ "type": "province",
+ "latitude": "37.61283950",
+ "longitude": "29.23207840"
+ },
+ {
+ "id": 2226,
+ "name": "Diyarbakฤฑr",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "21",
+ "type": "province",
+ "latitude": "38.10663720",
+ "longitude": "40.54268960"
+ },
+ {
+ "id": 2202,
+ "name": "Dรผzce",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "81",
+ "type": "province",
+ "latitude": "40.87705310",
+ "longitude": "31.31927130"
+ },
+ {
+ "id": 2151,
+ "name": "Edirne",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "22",
+ "type": "province",
+ "latitude": "41.15172220",
+ "longitude": "26.51379640"
+ },
+ {
+ "id": 2159,
+ "name": "Elazฤฑฤ",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "23",
+ "type": "province",
+ "latitude": "38.49648040",
+ "longitude": "39.21990290"
+ },
+ {
+ "id": 2160,
+ "name": "Erzincan",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "24",
+ "type": "province",
+ "latitude": "39.76819140",
+ "longitude": "39.05013060"
+ },
+ {
+ "id": 2165,
+ "name": "Erzurum",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "25",
+ "type": "province",
+ "latitude": "40.07467990",
+ "longitude": "41.66945620"
+ },
+ {
+ "id": 2164,
+ "name": "Eskiลehir",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "26",
+ "type": "province",
+ "latitude": "39.63296570",
+ "longitude": "31.26263660"
+ },
+ {
+ "id": 2203,
+ "name": "Gaziantep",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "27",
+ "type": "province",
+ "latitude": "37.07638820",
+ "longitude": "37.38272340"
+ },
+ {
+ "id": 2186,
+ "name": "Giresun",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "28",
+ "type": "province",
+ "latitude": "40.64616720",
+ "longitude": "38.59355110"
+ },
+ {
+ "id": 2204,
+ "name": "Gรผmรผลhane",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "29",
+ "type": "province",
+ "latitude": "40.28036730",
+ "longitude": "39.31432530"
+ },
+ {
+ "id": 2190,
+ "name": "Hakkรขri",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "30",
+ "type": "province",
+ "latitude": "37.44593190",
+ "longitude": "43.74498410"
+ },
+ {
+ "id": 2211,
+ "name": "Hatay",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "31",
+ "type": "province",
+ "latitude": "36.40184880",
+ "longitude": "36.34980970"
+ },
+ {
+ "id": 2166,
+ "name": "Iฤdฤฑr",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "76",
+ "type": "province",
+ "latitude": "39.88798410",
+ "longitude": "44.00483650"
+ },
+ {
+ "id": 2222,
+ "name": "Isparta",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "32",
+ "type": "province",
+ "latitude": "38.02114640",
+ "longitude": "31.07937050"
+ },
+ {
+ "id": 2170,
+ "name": "ฤฐstanbul",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "34",
+ "type": "province",
+ "latitude": "41.16343020",
+ "longitude": "28.76644080"
+ },
+ {
+ "id": 2205,
+ "name": "ฤฐzmir",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "35",
+ "type": "province",
+ "latitude": "38.35916930",
+ "longitude": "27.26761160"
+ },
+ {
+ "id": 2227,
+ "name": "Kahramanmaraล",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "46",
+ "type": "province",
+ "latitude": "37.75030360",
+ "longitude": "36.95410700"
+ },
+ {
+ "id": 2223,
+ "name": "Karabรผk",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "78",
+ "type": "province",
+ "latitude": "41.18748900",
+ "longitude": "32.74174190"
+ },
+ {
+ "id": 2184,
+ "name": "Karaman",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "70",
+ "type": "province",
+ "latitude": "37.24363360",
+ "longitude": "33.61757700"
+ },
+ {
+ "id": 2208,
+ "name": "Kars",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "36",
+ "type": "province",
+ "latitude": "40.28076360",
+ "longitude": "42.99195270"
+ },
+ {
+ "id": 2197,
+ "name": "Kastamonu",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "37",
+ "type": "province",
+ "latitude": "41.41038630",
+ "longitude": "33.69983340"
+ },
+ {
+ "id": 2200,
+ "name": "Kayseri",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "38",
+ "type": "province",
+ "latitude": "38.62568540",
+ "longitude": "35.74068820"
+ },
+ {
+ "id": 2154,
+ "name": "Kilis",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "79",
+ "type": "province",
+ "latitude": "36.82047750",
+ "longitude": "37.16873390"
+ },
+ {
+ "id": 2178,
+ "name": "Kฤฑrฤฑkkale",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "71",
+ "type": "province",
+ "latitude": "39.88768780",
+ "longitude": "33.75552480"
+ },
+ {
+ "id": 2176,
+ "name": "Kฤฑrklareli",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "39",
+ "type": "province",
+ "latitude": "41.72597950",
+ "longitude": "27.48383900"
+ },
+ {
+ "id": 2180,
+ "name": "Kฤฑrลehir",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "40",
+ "type": "province",
+ "latitude": "39.22689050",
+ "longitude": "33.97500180"
+ },
+ {
+ "id": 2195,
+ "name": "Kocaeli",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "41",
+ "type": "province",
+ "latitude": "40.85327040",
+ "longitude": "29.88152030"
+ },
+ {
+ "id": 2171,
+ "name": "Konya",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "42",
+ "type": "province",
+ "latitude": "37.98381340",
+ "longitude": "32.71813750"
+ },
+ {
+ "id": 2149,
+ "name": "Kรผtahya",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "43",
+ "type": "province",
+ "latitude": "39.35813700",
+ "longitude": "29.60354950"
+ },
+ {
+ "id": 2158,
+ "name": "Malatya",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "44",
+ "type": "province",
+ "latitude": "38.40150570",
+ "longitude": "37.95362980"
+ },
+ {
+ "id": 2198,
+ "name": "Manisa",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "45",
+ "type": "province",
+ "latitude": "38.84193730",
+ "longitude": "28.11226790"
+ },
+ {
+ "id": 2224,
+ "name": "Mardin",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "47",
+ "type": "province",
+ "latitude": "37.34429290",
+ "longitude": "40.61964870"
+ },
+ {
+ "id": 2156,
+ "name": "Mersin",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "33",
+ "type": "province",
+ "latitude": "36.81208580",
+ "longitude": "34.64147500"
+ },
+ {
+ "id": 2182,
+ "name": "Muฤla",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "48",
+ "type": "province",
+ "latitude": "37.18358190",
+ "longitude": "28.48639630"
+ },
+ {
+ "id": 2162,
+ "name": "Muล",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "49",
+ "type": "province",
+ "latitude": "38.94618880",
+ "longitude": "41.75389310"
+ },
+ {
+ "id": 2196,
+ "name": "Nevลehir",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "50",
+ "type": "province",
+ "latitude": "38.69393990",
+ "longitude": "34.68565090"
+ },
+ {
+ "id": 2189,
+ "name": "Niฤde",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "51",
+ "type": "province",
+ "latitude": "38.09930860",
+ "longitude": "34.68565090"
+ },
+ {
+ "id": 2174,
+ "name": "Ordu",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "52",
+ "type": "province",
+ "latitude": "40.79905800",
+ "longitude": "37.38990050"
+ },
+ {
+ "id": 2214,
+ "name": "Osmaniye",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "80",
+ "type": "province",
+ "latitude": "37.21302580",
+ "longitude": "36.17626150"
+ },
+ {
+ "id": 2219,
+ "name": "Rize",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "53",
+ "type": "province",
+ "latitude": "40.95814970",
+ "longitude": "40.92269850"
+ },
+ {
+ "id": 2150,
+ "name": "Sakarya",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "54",
+ "type": "province",
+ "latitude": "40.78885500",
+ "longitude": "30.40595400"
+ },
+ {
+ "id": 2220,
+ "name": "Samsun",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "55",
+ "type": "province",
+ "latitude": "41.18648590",
+ "longitude": "36.13226780"
+ },
+ {
+ "id": 2183,
+ "name": "ลanlฤฑurfa",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "63",
+ "type": "province",
+ "latitude": "37.35691020",
+ "longitude": "39.15436770"
+ },
+ {
+ "id": 2207,
+ "name": "Siirt",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "56",
+ "type": "province",
+ "latitude": "37.86588620",
+ "longitude": "42.14945230"
+ },
+ {
+ "id": 4854,
+ "name": "Sinop",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "57",
+ "type": "province",
+ "latitude": "41.55947490",
+ "longitude": "34.85805320"
+ },
+ {
+ "id": 2181,
+ "name": "Sivas",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "58",
+ "type": "province",
+ "latitude": "39.44880390",
+ "longitude": "37.12944970"
+ },
+ {
+ "id": 2225,
+ "name": "ลฤฑrnak",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "73",
+ "type": "province",
+ "latitude": "37.41874810",
+ "longitude": "42.49183380"
+ },
+ {
+ "id": 2167,
+ "name": "Tekirdaฤ",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "59",
+ "type": "province",
+ "latitude": "41.11212270",
+ "longitude": "27.26761160"
+ },
+ {
+ "id": 2199,
+ "name": "Tokat",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "60",
+ "type": "province",
+ "latitude": "40.39027130",
+ "longitude": "36.62518630"
+ },
+ {
+ "id": 2206,
+ "name": "Trabzon",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "61",
+ "type": "province",
+ "latitude": "40.79924100",
+ "longitude": "39.58479440"
+ },
+ {
+ "id": 2192,
+ "name": "Tunceli",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "62",
+ "type": "province",
+ "latitude": "39.30735540",
+ "longitude": "39.43877780"
+ },
+ {
+ "id": 2201,
+ "name": "Uลak",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "64",
+ "type": "province",
+ "latitude": "38.54313190",
+ "longitude": "29.23207840"
+ },
+ {
+ "id": 2152,
+ "name": "Van",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "65",
+ "type": "province",
+ "latitude": "38.36794170",
+ "longitude": "43.71827870"
+ },
+ {
+ "id": 2218,
+ "name": "Yalova",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "77",
+ "type": "province",
+ "latitude": "40.57759860",
+ "longitude": "29.20883030"
+ },
+ {
+ "id": 2188,
+ "name": "Yozgat",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "66",
+ "type": "province",
+ "latitude": "39.72719790",
+ "longitude": "35.10778580"
+ },
+ {
+ "id": 2213,
+ "name": "Zonguldak",
+ "country_id": 225,
+ "country_code": "TR",
+ "country_name": "Turkey",
+ "state_code": "67",
+ "type": "province",
+ "latitude": "41.31249170",
+ "longitude": "31.85982510"
+ },
+ {
+ "id": 3374,
+ "name": "Ahal Region",
+ "country_id": 226,
+ "country_code": "TM",
+ "country_name": "Turkmenistan",
+ "state_code": "A",
+ "type": null,
+ "latitude": "38.63993980",
+ "longitude": "59.47209040"
+ },
+ {
+ "id": 3371,
+ "name": "Ashgabat",
+ "country_id": 226,
+ "country_code": "TM",
+ "country_name": "Turkmenistan",
+ "state_code": "S",
+ "type": null,
+ "latitude": "37.96007660",
+ "longitude": "58.32606290"
+ },
+ {
+ "id": 3372,
+ "name": "Balkan Region",
+ "country_id": 226,
+ "country_code": "TM",
+ "country_name": "Turkmenistan",
+ "state_code": "B",
+ "type": null,
+ "latitude": "41.81014720",
+ "longitude": "21.09373110"
+ },
+ {
+ "id": 3373,
+ "name": "Daลoguz Region",
+ "country_id": 226,
+ "country_code": "TM",
+ "country_name": "Turkmenistan",
+ "state_code": "D",
+ "type": null,
+ "latitude": "41.83687370",
+ "longitude": "59.96519040"
+ },
+ {
+ "id": 3370,
+ "name": "Lebap Region",
+ "country_id": 226,
+ "country_code": "TM",
+ "country_name": "Turkmenistan",
+ "state_code": "L",
+ "type": null,
+ "latitude": "38.12724620",
+ "longitude": "64.71624150"
+ },
+ {
+ "id": 3369,
+ "name": "Mary Region",
+ "country_id": 226,
+ "country_code": "TM",
+ "country_name": "Turkmenistan",
+ "state_code": "M",
+ "type": null,
+ "latitude": "36.94816230",
+ "longitude": "62.45041540"
+ },
+ {
+ "id": 3951,
+ "name": "Funafuti",
+ "country_id": 228,
+ "country_code": "TV",
+ "country_name": "Tuvalu",
+ "state_code": "FUN",
+ "type": null,
+ "latitude": "-8.52114710",
+ "longitude": "179.19619260"
+ },
+ {
+ "id": 3947,
+ "name": "Nanumanga",
+ "country_id": 228,
+ "country_code": "TV",
+ "country_name": "Tuvalu",
+ "state_code": "NMG",
+ "type": null,
+ "latitude": "-6.28580190",
+ "longitude": "176.31992800"
+ },
+ {
+ "id": 3949,
+ "name": "Nanumea",
+ "country_id": 228,
+ "country_code": "TV",
+ "country_name": "Tuvalu",
+ "state_code": "NMA",
+ "type": null,
+ "latitude": "-5.68816170",
+ "longitude": "176.13701480"
+ },
+ {
+ "id": 3946,
+ "name": "Niutao Island Council",
+ "country_id": 228,
+ "country_code": "TV",
+ "country_name": "Tuvalu",
+ "state_code": "NIT",
+ "type": null,
+ "latitude": "-6.10642580",
+ "longitude": "177.34384290"
+ },
+ {
+ "id": 3948,
+ "name": "Nui",
+ "country_id": 228,
+ "country_code": "TV",
+ "country_name": "Tuvalu",
+ "state_code": "NUI",
+ "type": null,
+ "latitude": "-7.23887680",
+ "longitude": "177.14852320"
+ },
+ {
+ "id": 3952,
+ "name": "Nukufetau",
+ "country_id": 228,
+ "country_code": "TV",
+ "country_name": "Tuvalu",
+ "state_code": "NKF",
+ "type": null,
+ "latitude": "-8.00000000",
+ "longitude": "178.50000000"
+ },
+ {
+ "id": 3953,
+ "name": "Nukulaelae",
+ "country_id": 228,
+ "country_code": "TV",
+ "country_name": "Tuvalu",
+ "state_code": "NKL",
+ "type": null,
+ "latitude": "-9.38111100",
+ "longitude": "179.85222200"
+ },
+ {
+ "id": 3950,
+ "name": "Vaitupu",
+ "country_id": 228,
+ "country_code": "TV",
+ "country_name": "Tuvalu",
+ "state_code": "VAI",
+ "type": null,
+ "latitude": "-7.47673270",
+ "longitude": "178.67476750"
+ },
+ {
+ "id": 329,
+ "name": "Abim District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "314",
+ "type": null,
+ "latitude": "2.70669800",
+ "longitude": "33.65953370"
+ },
+ {
+ "id": 361,
+ "name": "Adjumani District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "301",
+ "type": null,
+ "latitude": "3.25485270",
+ "longitude": "31.71954590"
+ },
+ {
+ "id": 392,
+ "name": "Agago District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "322",
+ "type": null,
+ "latitude": "2.92508200",
+ "longitude": "33.34861470"
+ },
+ {
+ "id": 344,
+ "name": "Alebtong District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "323",
+ "type": null,
+ "latitude": "2.25457730",
+ "longitude": "33.34861470"
+ },
+ {
+ "id": 416,
+ "name": "Amolatar District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "315",
+ "type": null,
+ "latitude": "1.60544020",
+ "longitude": "32.80844960"
+ },
+ {
+ "id": 353,
+ "name": "Amudat District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "324",
+ "type": null,
+ "latitude": "1.79162240",
+ "longitude": "34.90655100"
+ },
+ {
+ "id": 352,
+ "name": "Amuria District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "216",
+ "type": null,
+ "latitude": "2.03017000",
+ "longitude": "33.64275330"
+ },
+ {
+ "id": 335,
+ "name": "Amuru District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "316",
+ "type": null,
+ "latitude": "2.96678780",
+ "longitude": "32.08374450"
+ },
+ {
+ "id": 328,
+ "name": "Apac District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "302",
+ "type": null,
+ "latitude": "1.87302630",
+ "longitude": "32.62774550"
+ },
+ {
+ "id": 447,
+ "name": "Arua District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "303",
+ "type": null,
+ "latitude": "2.99598460",
+ "longitude": "31.17103890"
+ },
+ {
+ "id": 441,
+ "name": "Budaka District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "217",
+ "type": null,
+ "latitude": "1.10162770",
+ "longitude": "33.93039910"
+ },
+ {
+ "id": 349,
+ "name": "Bududa District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "218",
+ "type": null,
+ "latitude": "1.00296930",
+ "longitude": "34.33381230"
+ },
+ {
+ "id": 387,
+ "name": "Bugiri District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "201",
+ "type": null,
+ "latitude": "0.53161270",
+ "longitude": "33.75177230"
+ },
+ {
+ "id": 391,
+ "name": "Buhweju District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "420",
+ "type": null,
+ "latitude": "-0.29113590",
+ "longitude": "30.29741990"
+ },
+ {
+ "id": 377,
+ "name": "Buikwe District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "117",
+ "type": null,
+ "latitude": "0.31440460",
+ "longitude": "32.98883190"
+ },
+ {
+ "id": 343,
+ "name": "Bukedea District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "219",
+ "type": null,
+ "latitude": "1.35568980",
+ "longitude": "34.10867930"
+ },
+ {
+ "id": 375,
+ "name": "Bukomansimbi District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "118",
+ "type": null,
+ "latitude": "-0.14327520",
+ "longitude": "31.60548930"
+ },
+ {
+ "id": 385,
+ "name": "Bukwo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "220",
+ "type": null,
+ "latitude": "1.28186510",
+ "longitude": "34.72987650"
+ },
+ {
+ "id": 428,
+ "name": "Bulambuli District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "225",
+ "type": null,
+ "latitude": "1.47988460",
+ "longitude": "34.37544140"
+ },
+ {
+ "id": 389,
+ "name": "Buliisa District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "416",
+ "type": null,
+ "latitude": "2.02996070",
+ "longitude": "31.53700030"
+ },
+ {
+ "id": 419,
+ "name": "Bundibugyo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "401",
+ "type": null,
+ "latitude": "0.68517630",
+ "longitude": "30.02029640"
+ },
+ {
+ "id": 381,
+ "name": "Bunyangabu District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "430",
+ "type": null,
+ "latitude": "0.48709180",
+ "longitude": "30.20510960"
+ },
+ {
+ "id": 386,
+ "name": "Bushenyi District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "402",
+ "type": null,
+ "latitude": "-0.48709180",
+ "longitude": "30.20510960"
+ },
+ {
+ "id": 431,
+ "name": "Busia District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "202",
+ "type": null,
+ "latitude": "0.40447310",
+ "longitude": "34.01958270"
+ },
+ {
+ "id": 365,
+ "name": "Butaleja District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "221",
+ "type": null,
+ "latitude": "0.84749220",
+ "longitude": "33.84112880"
+ },
+ {
+ "id": 384,
+ "name": "Butambala District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "119",
+ "type": null,
+ "latitude": "0.17425000",
+ "longitude": "32.10646680"
+ },
+ {
+ "id": 388,
+ "name": "Butebo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "233",
+ "type": null,
+ "latitude": "1.21411240",
+ "longitude": "33.90808960"
+ },
+ {
+ "id": 414,
+ "name": "Buvuma District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "120",
+ "type": null,
+ "latitude": "-0.37649120",
+ "longitude": "33.25879300"
+ },
+ {
+ "id": 380,
+ "name": "Buyende District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "226",
+ "type": null,
+ "latitude": "1.24136820",
+ "longitude": "33.12390490"
+ },
+ {
+ "id": 396,
+ "name": "Central Region",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "C",
+ "type": null,
+ "latitude": "44.29687500",
+ "longitude": "-94.74017330"
+ },
+ {
+ "id": 341,
+ "name": "Dokolo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "317",
+ "type": null,
+ "latitude": "1.96364210",
+ "longitude": "33.03387670"
+ },
+ {
+ "id": 372,
+ "name": "Eastern Region",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "E",
+ "type": null,
+ "latitude": "6.23740360",
+ "longitude": "-0.45023680"
+ },
+ {
+ "id": 366,
+ "name": "Gomba District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "121",
+ "type": null,
+ "latitude": "0.22297910",
+ "longitude": "31.67393710"
+ },
+ {
+ "id": 413,
+ "name": "Gulu District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "304",
+ "type": null,
+ "latitude": "2.81857760",
+ "longitude": "32.44672380"
+ },
+ {
+ "id": 339,
+ "name": "Ibanda District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "417",
+ "type": null,
+ "latitude": "-0.09648900",
+ "longitude": "30.57395790"
+ },
+ {
+ "id": 340,
+ "name": "Iganga District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "203",
+ "type": null,
+ "latitude": "0.66001370",
+ "longitude": "33.48319060"
+ },
+ {
+ "id": 383,
+ "name": "Isingiro District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "418",
+ "type": null,
+ "latitude": "-0.84354300",
+ "longitude": "30.80394740"
+ },
+ {
+ "id": 367,
+ "name": "Jinja District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "204",
+ "type": null,
+ "latitude": "0.53437430",
+ "longitude": "33.30371430"
+ },
+ {
+ "id": 434,
+ "name": "Kaabong District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "318",
+ "type": null,
+ "latitude": "3.51262150",
+ "longitude": "33.97500180"
+ },
+ {
+ "id": 426,
+ "name": "Kabale District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "404",
+ "type": null,
+ "latitude": "-1.24930840",
+ "longitude": "30.06652360"
+ },
+ {
+ "id": 326,
+ "name": "Kabarole District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "405",
+ "type": null,
+ "latitude": "0.58507910",
+ "longitude": "30.25127280"
+ },
+ {
+ "id": 336,
+ "name": "Kaberamaido District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "213",
+ "type": null,
+ "latitude": "1.69633220",
+ "longitude": "33.21385100"
+ },
+ {
+ "id": 403,
+ "name": "Kagadi District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "427",
+ "type": null,
+ "latitude": "0.94007610",
+ "longitude": "30.81256380"
+ },
+ {
+ "id": 399,
+ "name": "Kakumiro District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "428",
+ "type": null,
+ "latitude": "0.78080350",
+ "longitude": "31.32413890"
+ },
+ {
+ "id": 405,
+ "name": "Kalangala District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "101",
+ "type": null,
+ "latitude": "-0.63505780",
+ "longitude": "32.53727410"
+ },
+ {
+ "id": 398,
+ "name": "Kaliro District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "222",
+ "type": null,
+ "latitude": "1.04311070",
+ "longitude": "33.48319060"
+ },
+ {
+ "id": 394,
+ "name": "Kalungu District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "122",
+ "type": null,
+ "latitude": "-0.09528310",
+ "longitude": "31.76513620"
+ },
+ {
+ "id": 382,
+ "name": "Kampala District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "102",
+ "type": null,
+ "latitude": "0.34759640",
+ "longitude": "32.58251970"
+ },
+ {
+ "id": 334,
+ "name": "Kamuli District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "205",
+ "type": null,
+ "latitude": "0.91871070",
+ "longitude": "33.12390490"
+ },
+ {
+ "id": 360,
+ "name": "Kamwenge District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "413",
+ "type": null,
+ "latitude": "0.22579300",
+ "longitude": "30.48184460"
+ },
+ {
+ "id": 373,
+ "name": "Kanungu District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "414",
+ "type": null,
+ "latitude": "-0.81952530",
+ "longitude": "29.74260400"
+ },
+ {
+ "id": 432,
+ "name": "Kapchorwa District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "206",
+ "type": null,
+ "latitude": "1.33502050",
+ "longitude": "34.39763560"
+ },
+ {
+ "id": 440,
+ "name": "Kasese District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "406",
+ "type": null,
+ "latitude": "0.06462850",
+ "longitude": "30.06652360"
+ },
+ {
+ "id": 420,
+ "name": "Katakwi District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "207",
+ "type": null,
+ "latitude": "1.97310300",
+ "longitude": "34.06414190"
+ },
+ {
+ "id": 368,
+ "name": "Kayunga District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "112",
+ "type": null,
+ "latitude": "0.98601820",
+ "longitude": "32.85357550"
+ },
+ {
+ "id": 436,
+ "name": "Kibaale District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "407",
+ "type": null,
+ "latitude": "0.90668020",
+ "longitude": "31.07937050"
+ },
+ {
+ "id": 347,
+ "name": "Kiboga District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "103",
+ "type": null,
+ "latitude": "0.96575900",
+ "longitude": "31.71954590"
+ },
+ {
+ "id": 338,
+ "name": "Kibuku District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "227",
+ "type": null,
+ "latitude": "1.04528740",
+ "longitude": "33.79925360"
+ },
+ {
+ "id": 355,
+ "name": "Kiruhura District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "419",
+ "type": null,
+ "latitude": "-0.19279980",
+ "longitude": "30.80394740"
+ },
+ {
+ "id": 346,
+ "name": "Kiryandongo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "421",
+ "type": null,
+ "latitude": "2.01799070",
+ "longitude": "32.08374450"
+ },
+ {
+ "id": 409,
+ "name": "Kisoro District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "408",
+ "type": null,
+ "latitude": "-1.22094300",
+ "longitude": "29.64991620"
+ },
+ {
+ "id": 348,
+ "name": "Kitgum District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "305",
+ "type": null,
+ "latitude": "3.33968290",
+ "longitude": "33.16888830"
+ },
+ {
+ "id": 345,
+ "name": "Koboko District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "319",
+ "type": null,
+ "latitude": "3.52370580",
+ "longitude": "31.03351000"
+ },
+ {
+ "id": 401,
+ "name": "Kole District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "325",
+ "type": null,
+ "latitude": "2.37010970",
+ "longitude": "32.76330360"
+ },
+ {
+ "id": 443,
+ "name": "Kotido District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "306",
+ "type": null,
+ "latitude": "3.04156790",
+ "longitude": "33.88577470"
+ },
+ {
+ "id": 425,
+ "name": "Kumi District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "208",
+ "type": null,
+ "latitude": "1.48769990",
+ "longitude": "33.93039910"
+ },
+ {
+ "id": 369,
+ "name": "Kween District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "228",
+ "type": null,
+ "latitude": "1.44387900",
+ "longitude": "34.59713200"
+ },
+ {
+ "id": 325,
+ "name": "Kyankwanzi District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "123",
+ "type": null,
+ "latitude": "1.09660370",
+ "longitude": "31.71954590"
+ },
+ {
+ "id": 437,
+ "name": "Kyegegwa District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "422",
+ "type": null,
+ "latitude": "0.48181930",
+ "longitude": "31.05500930"
+ },
+ {
+ "id": 402,
+ "name": "Kyenjojo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "415",
+ "type": null,
+ "latitude": "0.60929230",
+ "longitude": "30.64012310"
+ },
+ {
+ "id": 448,
+ "name": "Kyotera District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "125",
+ "type": null,
+ "latitude": "-0.63589880",
+ "longitude": "31.54556370"
+ },
+ {
+ "id": 411,
+ "name": "Lamwo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "326",
+ "type": null,
+ "latitude": "3.57075680",
+ "longitude": "32.53727410"
+ },
+ {
+ "id": 342,
+ "name": "Lira District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "307",
+ "type": null,
+ "latitude": "2.23161690",
+ "longitude": "32.94376670"
+ },
+ {
+ "id": 445,
+ "name": "Luuka District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "229",
+ "type": null,
+ "latitude": "0.72505990",
+ "longitude": "33.30371430"
+ },
+ {
+ "id": 433,
+ "name": "Luwero District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "104",
+ "type": null,
+ "latitude": "0.82711180",
+ "longitude": "32.62774550"
+ },
+ {
+ "id": 417,
+ "name": "Lwengo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "124",
+ "type": null,
+ "latitude": "-0.41652880",
+ "longitude": "31.39989950"
+ },
+ {
+ "id": 376,
+ "name": "Lyantonde District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "114",
+ "type": null,
+ "latitude": "-0.22406960",
+ "longitude": "31.21684660"
+ },
+ {
+ "id": 438,
+ "name": "Manafwa District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "223",
+ "type": null,
+ "latitude": "0.90635990",
+ "longitude": "34.28660910"
+ },
+ {
+ "id": 421,
+ "name": "Maracha District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "320",
+ "type": null,
+ "latitude": "3.28731270",
+ "longitude": "30.94030230"
+ },
+ {
+ "id": 356,
+ "name": "Masaka District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "105",
+ "type": null,
+ "latitude": "-0.44636910",
+ "longitude": "31.90179540"
+ },
+ {
+ "id": 354,
+ "name": "Masindi District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "409",
+ "type": null,
+ "latitude": "1.49203630",
+ "longitude": "31.71954590"
+ },
+ {
+ "id": 418,
+ "name": "Mayuge District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "214",
+ "type": null,
+ "latitude": "-0.21829820",
+ "longitude": "33.57280270"
+ },
+ {
+ "id": 350,
+ "name": "Mbale District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "209",
+ "type": null,
+ "latitude": "1.03442740",
+ "longitude": "34.19768820"
+ },
+ {
+ "id": 415,
+ "name": "Mbarara District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "410",
+ "type": null,
+ "latitude": "-0.60715960",
+ "longitude": "30.65450220"
+ },
+ {
+ "id": 435,
+ "name": "Mitooma District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "423",
+ "type": null,
+ "latitude": "-0.61932760",
+ "longitude": "30.02029640"
+ },
+ {
+ "id": 364,
+ "name": "Mityana District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "115",
+ "type": null,
+ "latitude": "0.44548450",
+ "longitude": "32.08374450"
+ },
+ {
+ "id": 395,
+ "name": "Moroto District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "308",
+ "type": null,
+ "latitude": "2.61685450",
+ "longitude": "34.59713200"
+ },
+ {
+ "id": 363,
+ "name": "Moyo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "309",
+ "type": null,
+ "latitude": "3.56964640",
+ "longitude": "31.67393710"
+ },
+ {
+ "id": 327,
+ "name": "Mpigi District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "106",
+ "type": null,
+ "latitude": "0.22735280",
+ "longitude": "32.32492360"
+ },
+ {
+ "id": 371,
+ "name": "Mubende District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "107",
+ "type": null,
+ "latitude": "0.57727580",
+ "longitude": "31.53700030"
+ },
+ {
+ "id": 410,
+ "name": "Mukono District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "108",
+ "type": null,
+ "latitude": "0.28354760",
+ "longitude": "32.76330360"
+ },
+ {
+ "id": 393,
+ "name": "Nakapiripirit District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "311",
+ "type": null,
+ "latitude": "1.96061730",
+ "longitude": "34.59713200"
+ },
+ {
+ "id": 423,
+ "name": "Nakaseke District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "116",
+ "type": null,
+ "latitude": "1.22308480",
+ "longitude": "32.08374450"
+ },
+ {
+ "id": 406,
+ "name": "Nakasongola District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "109",
+ "type": null,
+ "latitude": "1.34897210",
+ "longitude": "32.44672380"
+ },
+ {
+ "id": 351,
+ "name": "Namayingo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "230",
+ "type": null,
+ "latitude": "-0.28035750",
+ "longitude": "33.75177230"
+ },
+ {
+ "id": 400,
+ "name": "Namisindwa District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "234",
+ "type": null,
+ "latitude": "0.90710100",
+ "longitude": "34.35740370"
+ },
+ {
+ "id": 337,
+ "name": "Namutumba District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "224",
+ "type": null,
+ "latitude": "0.84926100",
+ "longitude": "33.66233010"
+ },
+ {
+ "id": 430,
+ "name": "Napak District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "327",
+ "type": null,
+ "latitude": "2.36299450",
+ "longitude": "34.24215970"
+ },
+ {
+ "id": 446,
+ "name": "Nebbi District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "310",
+ "type": null,
+ "latitude": "2.44093920",
+ "longitude": "31.35416310"
+ },
+ {
+ "id": 424,
+ "name": "Ngora District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "231",
+ "type": null,
+ "latitude": "1.49081150",
+ "longitude": "33.75177230"
+ },
+ {
+ "id": 332,
+ "name": "Northern Region",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "N",
+ "type": null,
+ "latitude": "9.54392690",
+ "longitude": "-0.90566230"
+ },
+ {
+ "id": 422,
+ "name": "Ntoroko District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "424",
+ "type": null,
+ "latitude": "1.07881780",
+ "longitude": "30.38966510"
+ },
+ {
+ "id": 404,
+ "name": "Ntungamo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "411",
+ "type": null,
+ "latitude": "-0.98073410",
+ "longitude": "30.25127280"
+ },
+ {
+ "id": 378,
+ "name": "Nwoya District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "328",
+ "type": null,
+ "latitude": "2.56244400",
+ "longitude": "31.90179540"
+ },
+ {
+ "id": 374,
+ "name": "Omoro District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "331",
+ "type": null,
+ "latitude": "2.71522300",
+ "longitude": "32.49200880"
+ },
+ {
+ "id": 390,
+ "name": "Otuke District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "329",
+ "type": null,
+ "latitude": "2.52140590",
+ "longitude": "33.34861470"
+ },
+ {
+ "id": 397,
+ "name": "Oyam District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "321",
+ "type": null,
+ "latitude": "2.27762810",
+ "longitude": "32.44672380"
+ },
+ {
+ "id": 408,
+ "name": "Pader District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "312",
+ "type": null,
+ "latitude": "2.94306820",
+ "longitude": "32.80844960"
+ },
+ {
+ "id": 357,
+ "name": "Pakwach District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "332",
+ "type": null,
+ "latitude": "2.46071410",
+ "longitude": "31.49417380"
+ },
+ {
+ "id": 412,
+ "name": "Pallisa District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "210",
+ "type": null,
+ "latitude": "1.23242060",
+ "longitude": "33.75177230"
+ },
+ {
+ "id": 439,
+ "name": "Rakai District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "110",
+ "type": null,
+ "latitude": "-0.70691350",
+ "longitude": "31.53700030"
+ },
+ {
+ "id": 358,
+ "name": "Rubanda District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "429",
+ "type": null,
+ "latitude": "-1.18611900",
+ "longitude": "29.84535760"
+ },
+ {
+ "id": 442,
+ "name": "Rubirizi District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "425",
+ "type": null,
+ "latitude": "-0.26424100",
+ "longitude": "30.10840330"
+ },
+ {
+ "id": 331,
+ "name": "Rukiga District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "431",
+ "type": null,
+ "latitude": "-1.13263370",
+ "longitude": "30.04341200"
+ },
+ {
+ "id": 324,
+ "name": "Rukungiri District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "412",
+ "type": null,
+ "latitude": "-0.75184900",
+ "longitude": "29.92779470"
+ },
+ {
+ "id": 427,
+ "name": "Sembabule District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "111",
+ "type": null,
+ "latitude": "0.06377150",
+ "longitude": "31.35416310"
+ },
+ {
+ "id": 333,
+ "name": "Serere District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "232",
+ "type": null,
+ "latitude": "1.49940330",
+ "longitude": "33.54900780"
+ },
+ {
+ "id": 407,
+ "name": "Sheema District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "426",
+ "type": null,
+ "latitude": "-0.55152980",
+ "longitude": "30.38966510"
+ },
+ {
+ "id": 429,
+ "name": "Sironko District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "215",
+ "type": null,
+ "latitude": "1.23022740",
+ "longitude": "34.24910640"
+ },
+ {
+ "id": 444,
+ "name": "Soroti District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "211",
+ "type": null,
+ "latitude": "1.72291170",
+ "longitude": "33.52800720"
+ },
+ {
+ "id": 359,
+ "name": "Tororo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "212",
+ "type": null,
+ "latitude": "0.68709940",
+ "longitude": "34.06414190"
+ },
+ {
+ "id": 362,
+ "name": "Wakiso District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "113",
+ "type": null,
+ "latitude": "0.06301900",
+ "longitude": "32.44672380"
+ },
+ {
+ "id": 370,
+ "name": "Western Region",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "W",
+ "type": null,
+ "latitude": "40.76672150",
+ "longitude": "-111.88772030"
+ },
+ {
+ "id": 330,
+ "name": "Yumbe District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "313",
+ "type": null,
+ "latitude": "3.46980230",
+ "longitude": "31.24832910"
+ },
+ {
+ "id": 379,
+ "name": "Zombo District",
+ "country_id": 229,
+ "country_code": "UG",
+ "country_name": "Uganda",
+ "state_code": "330",
+ "type": null,
+ "latitude": "2.55442930",
+ "longitude": "30.94173680"
+ },
+ {
+ "id": 4689,
+ "name": "Autonomous Republic of Crimea",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "43",
+ "type": "republic",
+ "latitude": "44.95211700",
+ "longitude": "34.10241700"
+ },
+ {
+ "id": 4680,
+ "name": "Cherkaska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "71",
+ "type": "region",
+ "latitude": "49.44443300",
+ "longitude": "32.05976700"
+ },
+ {
+ "id": 4692,
+ "name": "Chernihivska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "74",
+ "type": "region",
+ "latitude": "51.49820000",
+ "longitude": "31.28934990"
+ },
+ {
+ "id": 4678,
+ "name": "Chernivetska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "77",
+ "type": "region",
+ "latitude": "48.29168300",
+ "longitude": "25.93521700"
+ },
+ {
+ "id": 4675,
+ "name": "Dnipropetrovska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "12",
+ "type": "region",
+ "latitude": "48.46471700",
+ "longitude": "35.04618300"
+ },
+ {
+ "id": 4691,
+ "name": "Donetska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "14",
+ "type": "region",
+ "latitude": "48.01588300",
+ "longitude": "37.80285000"
+ },
+ {
+ "id": 4682,
+ "name": "Ivano-Frankivska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "26",
+ "type": "region",
+ "latitude": "48.92263300",
+ "longitude": "24.71111700"
+ },
+ {
+ "id": 4686,
+ "name": "Kharkivska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "63",
+ "type": "region",
+ "latitude": "49.99350000",
+ "longitude": "36.23038300"
+ },
+ {
+ "id": 4684,
+ "name": "Khersonska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "65",
+ "type": "region",
+ "latitude": "46.63541700",
+ "longitude": "32.61686700"
+ },
+ {
+ "id": 4681,
+ "name": "Khmelnytska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "68",
+ "type": "region",
+ "latitude": "49.42298300",
+ "longitude": "26.98713310"
+ },
+ {
+ "id": 4677,
+ "name": "Kirovohradska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "35",
+ "type": "region",
+ "latitude": "48.50793300",
+ "longitude": "32.26231700"
+ },
+ {
+ "id": 4676,
+ "name": "Kyiv",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "30",
+ "type": "city",
+ "latitude": "50.45010000",
+ "longitude": "30.52340000"
+ },
+ {
+ "id": 4671,
+ "name": "Kyivska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "32",
+ "type": "region",
+ "latitude": "50.05295060",
+ "longitude": "30.76671340"
+ },
+ {
+ "id": 4673,
+ "name": "Luhanska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "09",
+ "type": "region",
+ "latitude": "48.57404100",
+ "longitude": "39.30781500"
+ },
+ {
+ "id": 4672,
+ "name": "Lvivska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "46",
+ "type": "region",
+ "latitude": "49.83968300",
+ "longitude": "24.02971700"
+ },
+ {
+ "id": 4679,
+ "name": "Mykolaivska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "48",
+ "type": "region",
+ "latitude": "46.97503300",
+ "longitude": "31.99458290"
+ },
+ {
+ "id": 4688,
+ "name": "Odeska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "51",
+ "type": "region",
+ "latitude": "46.48458300",
+ "longitude": "30.73260000"
+ },
+ {
+ "id": 5071,
+ "name": "Poltavska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "53",
+ "type": "region",
+ "latitude": "49.64291960",
+ "longitude": "32.66753390"
+ },
+ {
+ "id": 4683,
+ "name": "Rivnenska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "56",
+ "type": "region",
+ "latitude": "50.61990000",
+ "longitude": "26.25161700"
+ },
+ {
+ "id": 4685,
+ "name": "Sumska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "59",
+ "type": "region",
+ "latitude": "50.90770000",
+ "longitude": "34.79810000"
+ },
+ {
+ "id": 4674,
+ "name": "Ternopilska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "61",
+ "type": "region",
+ "latitude": "49.55351700",
+ "longitude": "25.59476700"
+ },
+ {
+ "id": 4669,
+ "name": "Vinnytska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "05",
+ "type": "region",
+ "latitude": "49.23308300",
+ "longitude": "28.46821690"
+ },
+ {
+ "id": 4690,
+ "name": "Volynska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "07",
+ "type": "region",
+ "latitude": "50.74723300",
+ "longitude": "25.32538300"
+ },
+ {
+ "id": 4670,
+ "name": "Zakarpatska Oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "21",
+ "type": "region",
+ "latitude": "48.62080000",
+ "longitude": "22.28788300"
+ },
+ {
+ "id": 4687,
+ "name": "Zaporizka oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "23",
+ "type": "region",
+ "latitude": "47.83880000",
+ "longitude": "35.13956700"
+ },
+ {
+ "id": 4668,
+ "name": "Zhytomyrska oblast",
+ "country_id": 230,
+ "country_code": "UA",
+ "country_name": "Ukraine",
+ "state_code": "18",
+ "type": "region",
+ "latitude": "50.25465000",
+ "longitude": "28.65866690"
+ },
+ {
+ "id": 3396,
+ "name": "Abu Dhabi Emirate",
+ "country_id": 231,
+ "country_code": "AE",
+ "country_name": "United Arab Emirates",
+ "state_code": "AZ",
+ "type": null,
+ "latitude": "24.45388400",
+ "longitude": "54.37734380"
+ },
+ {
+ "id": 3395,
+ "name": "Ajman Emirate",
+ "country_id": 231,
+ "country_code": "AE",
+ "country_name": "United Arab Emirates",
+ "state_code": "AJ",
+ "type": null,
+ "latitude": "25.40521650",
+ "longitude": "55.51364330"
+ },
+ {
+ "id": 3391,
+ "name": "Dubai",
+ "country_id": 231,
+ "country_code": "AE",
+ "country_name": "United Arab Emirates",
+ "state_code": "DU",
+ "type": null,
+ "latitude": "25.20484930",
+ "longitude": "55.27078280"
+ },
+ {
+ "id": 3393,
+ "name": "Fujairah",
+ "country_id": 231,
+ "country_code": "AE",
+ "country_name": "United Arab Emirates",
+ "state_code": "FU",
+ "type": null,
+ "latitude": "25.12880990",
+ "longitude": "56.32648490"
+ },
+ {
+ "id": 3394,
+ "name": "Ras al-Khaimah",
+ "country_id": 231,
+ "country_code": "AE",
+ "country_name": "United Arab Emirates",
+ "state_code": "RK",
+ "type": null,
+ "latitude": "25.67413430",
+ "longitude": "55.98041730"
+ },
+ {
+ "id": 3390,
+ "name": "Sharjah Emirate",
+ "country_id": 231,
+ "country_code": "AE",
+ "country_name": "United Arab Emirates",
+ "state_code": "SH",
+ "type": null,
+ "latitude": "25.07539740",
+ "longitude": "55.75784030"
+ },
+ {
+ "id": 3392,
+ "name": "Umm al-Quwain",
+ "country_id": 231,
+ "country_code": "AE",
+ "country_name": "United Arab Emirates",
+ "state_code": "UQ",
+ "type": null,
+ "latitude": "25.54263240",
+ "longitude": "55.54753480"
+ },
+ {
+ "id": 2463,
+ "name": "Aberdeen",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ABE",
+ "type": null,
+ "latitude": "57.14971700",
+ "longitude": "-2.09427800"
+ },
+ {
+ "id": 2401,
+ "name": "Aberdeenshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ABD",
+ "type": null,
+ "latitude": "57.28687230",
+ "longitude": "-2.38156840"
+ },
+ {
+ "id": 2387,
+ "name": "Angus",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ANS",
+ "type": null,
+ "latitude": "37.27578860",
+ "longitude": "-95.65010330"
+ },
+ {
+ "id": 2533,
+ "name": "Antrim",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ANT",
+ "type": null,
+ "latitude": "54.71953380",
+ "longitude": "-6.20724980"
+ },
+ {
+ "id": 2412,
+ "name": "Antrim and Newtownabbey",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ANN",
+ "type": null,
+ "latitude": "54.69568870",
+ "longitude": "-5.94810690"
+ },
+ {
+ "id": 2498,
+ "name": "Ards",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ARD",
+ "type": null,
+ "latitude": "42.13918510",
+ "longitude": "-87.86149720"
+ },
+ {
+ "id": 2523,
+ "name": "Ards and North Down",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "AND",
+ "type": null,
+ "latitude": "54.58996450",
+ "longitude": "-5.59849720"
+ },
+ {
+ "id": 2392,
+ "name": "Argyll and Bute",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "AGB",
+ "type": null,
+ "latitude": "56.40062140",
+ "longitude": "-5.48074800"
+ },
+ {
+ "id": 2331,
+ "name": "Armagh City and District Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ARM",
+ "type": null,
+ "latitude": "54.39325920",
+ "longitude": "-6.45634010"
+ },
+ {
+ "id": 2324,
+ "name": "Armagh, Banbridge and Craigavon",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ABC",
+ "type": null,
+ "latitude": "54.39325920",
+ "longitude": "-6.45634010"
+ },
+ {
+ "id": 2378,
+ "name": "Ascension Island",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SH-AC",
+ "type": null,
+ "latitude": "-7.94671660",
+ "longitude": "-14.35591580"
+ },
+ {
+ "id": 2363,
+ "name": "Ballymena Borough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BLA",
+ "type": null,
+ "latitude": "54.86426000",
+ "longitude": "-6.27910740"
+ },
+ {
+ "id": 2361,
+ "name": "Ballymoney",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BLY",
+ "type": null,
+ "latitude": "55.07048880",
+ "longitude": "-6.51737080"
+ },
+ {
+ "id": 2315,
+ "name": "Banbridge",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BNB",
+ "type": null,
+ "latitude": "54.34872900",
+ "longitude": "-6.27048030"
+ },
+ {
+ "id": 2499,
+ "name": "Barnsley",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BNS",
+ "type": null,
+ "latitude": "34.29949560",
+ "longitude": "-84.98458090"
+ },
+ {
+ "id": 2339,
+ "name": "Bath and North East Somerset",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BAS",
+ "type": null,
+ "latitude": "51.32501020",
+ "longitude": "-2.47662410"
+ },
+ {
+ "id": 2507,
+ "name": "Bedford",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BDF",
+ "type": null,
+ "latitude": "32.84401700",
+ "longitude": "-97.14306710"
+ },
+ {
+ "id": 2311,
+ "name": "Belfast district",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BFS",
+ "type": null,
+ "latitude": "54.61703660",
+ "longitude": "-5.95318610"
+ },
+ {
+ "id": 2425,
+ "name": "Birmingham",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BIR",
+ "type": null,
+ "latitude": "33.51858920",
+ "longitude": "-86.81035670"
+ },
+ {
+ "id": 2329,
+ "name": "Blackburn with Darwen",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BBD",
+ "type": null,
+ "latitude": "53.69575220",
+ "longitude": "-2.46829850"
+ },
+ {
+ "id": 2451,
+ "name": "Blackpool",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BPL",
+ "type": null,
+ "latitude": "53.81750530",
+ "longitude": "-3.03567480"
+ },
+ {
+ "id": 2530,
+ "name": "Blaenau Gwent County Borough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BGW",
+ "type": null,
+ "latitude": "51.78757790",
+ "longitude": "-3.20439310"
+ },
+ {
+ "id": 2504,
+ "name": "Bolton",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BOL",
+ "type": null,
+ "latitude": "44.37264760",
+ "longitude": "-72.87876250"
+ },
+ {
+ "id": 2342,
+ "name": "Bournemouth",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BMH",
+ "type": null,
+ "latitude": "50.71916400",
+ "longitude": "-1.88076900"
+ },
+ {
+ "id": 2470,
+ "name": "Bracknell Forest",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BRC",
+ "type": null,
+ "latitude": "51.41538280",
+ "longitude": "-0.75364950"
+ },
+ {
+ "id": 2529,
+ "name": "Bradford",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BRD",
+ "type": null,
+ "latitude": "53.79598400",
+ "longitude": "-1.75939800"
+ },
+ {
+ "id": 2452,
+ "name": "Bridgend County Borough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BGE",
+ "type": null,
+ "latitude": "51.50831990",
+ "longitude": "-3.58120750"
+ },
+ {
+ "id": 2395,
+ "name": "Brighton and Hove",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BNH",
+ "type": null,
+ "latitude": "50.82262880",
+ "longitude": "-0.13704700"
+ },
+ {
+ "id": 2405,
+ "name": "Buckinghamshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BKM",
+ "type": null,
+ "latitude": "51.80722040",
+ "longitude": "-0.81276640"
+ },
+ {
+ "id": 2459,
+ "name": "Bury",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BUR",
+ "type": null,
+ "latitude": "53.59334980",
+ "longitude": "-2.29660540"
+ },
+ {
+ "id": 2298,
+ "name": "Caerphilly County Borough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CAY",
+ "type": null,
+ "latitude": "51.66044650",
+ "longitude": "-3.21787240"
+ },
+ {
+ "id": 2517,
+ "name": "Calderdale",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CLD",
+ "type": null,
+ "latitude": "53.72478450",
+ "longitude": "-1.86583570"
+ },
+ {
+ "id": 2423,
+ "name": "Cambridgeshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CAM",
+ "type": null,
+ "latitude": "52.20529730",
+ "longitude": "0.12181950"
+ },
+ {
+ "id": 2484,
+ "name": "Carmarthenshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CMN",
+ "type": null,
+ "latitude": "51.85723090",
+ "longitude": "-4.31159590"
+ },
+ {
+ "id": 2439,
+ "name": "Carrickfergus Borough Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CKF",
+ "type": null,
+ "latitude": "54.72568430",
+ "longitude": "-5.80937190"
+ },
+ {
+ "id": 2525,
+ "name": "Castlereagh",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CSR",
+ "type": null,
+ "latitude": "54.57567900",
+ "longitude": "-5.88840280"
+ },
+ {
+ "id": 2316,
+ "name": "Causeway Coast and Glens",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CCG",
+ "type": null,
+ "latitude": "55.04318300",
+ "longitude": "-6.67412880"
+ },
+ {
+ "id": 2303,
+ "name": "Central Bedfordshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CBF",
+ "type": null,
+ "latitude": "52.00297440",
+ "longitude": "-0.46513890"
+ },
+ {
+ "id": 2509,
+ "name": "Ceredigion",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CGN",
+ "type": null,
+ "latitude": "52.21914290",
+ "longitude": "-3.93212560"
+ },
+ {
+ "id": 2444,
+ "name": "Cheshire East",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CHE",
+ "type": null,
+ "latitude": "53.16104460",
+ "longitude": "-2.21859320"
+ },
+ {
+ "id": 2442,
+ "name": "Cheshire West and Chester",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CHW",
+ "type": null,
+ "latitude": "53.23029740",
+ "longitude": "-2.71511170"
+ },
+ {
+ "id": 2528,
+ "name": "City and County of Cardiff",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CRF",
+ "type": null,
+ "latitude": "51.48158100",
+ "longitude": "-3.17909000"
+ },
+ {
+ "id": 2433,
+ "name": "City and County of Swansea",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SWA",
+ "type": null,
+ "latitude": "51.62144000",
+ "longitude": "-3.94364600"
+ },
+ {
+ "id": 2413,
+ "name": "City of Bristol",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BST",
+ "type": null,
+ "latitude": "41.67352200",
+ "longitude": "-72.94653750"
+ },
+ {
+ "id": 2485,
+ "name": "City of Derby",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DER",
+ "type": null,
+ "latitude": "37.54837550",
+ "longitude": "-97.24851910"
+ },
+ {
+ "id": 2475,
+ "name": "City of Kingston upon Hull",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "KHL",
+ "type": null,
+ "latitude": "53.76762360",
+ "longitude": "-0.32741980"
+ },
+ {
+ "id": 2318,
+ "name": "City of Leicester",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LCE",
+ "type": null,
+ "latitude": "52.63687780",
+ "longitude": "-1.13975920"
+ },
+ {
+ "id": 2424,
+ "name": "City of London",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LND",
+ "type": null,
+ "latitude": "51.51234430",
+ "longitude": "-0.09098520"
+ },
+ {
+ "id": 2359,
+ "name": "City of Nottingham",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NGM",
+ "type": null,
+ "latitude": "52.95478320",
+ "longitude": "-1.15810860"
+ },
+ {
+ "id": 2297,
+ "name": "City of Peterborough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "PTE",
+ "type": null,
+ "latitude": "44.30936360",
+ "longitude": "-78.32015300"
+ },
+ {
+ "id": 2514,
+ "name": "City of Plymouth",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "PLY",
+ "type": null,
+ "latitude": "42.37089410",
+ "longitude": "-83.46971410"
+ },
+ {
+ "id": 2305,
+ "name": "City of Portsmouth",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "POR",
+ "type": null,
+ "latitude": "36.83291500",
+ "longitude": "-76.29755490"
+ },
+ {
+ "id": 2294,
+ "name": "City of Southampton",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "STH",
+ "type": null,
+ "latitude": "50.90970040",
+ "longitude": "-1.40435090"
+ },
+ {
+ "id": 2506,
+ "name": "City of Stoke-on-Trent",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "STE",
+ "type": null,
+ "latitude": "53.00266800",
+ "longitude": "-2.17940400"
+ },
+ {
+ "id": 2372,
+ "name": "City of Sunderland",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SND",
+ "type": null,
+ "latitude": "54.88614890",
+ "longitude": "-1.47857970"
+ },
+ {
+ "id": 2357,
+ "name": "City of Westminster",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WSM",
+ "type": null,
+ "latitude": "39.57659770",
+ "longitude": "-76.99721260"
+ },
+ {
+ "id": 2489,
+ "name": "City of Wolverhampton",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WLV",
+ "type": null,
+ "latitude": "52.58891200",
+ "longitude": "-2.15646300"
+ },
+ {
+ "id": 2426,
+ "name": "City of York",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "YOR",
+ "type": null,
+ "latitude": "53.95996510",
+ "longitude": "-1.08729790"
+ },
+ {
+ "id": 2450,
+ "name": "Clackmannanshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CLK",
+ "type": null,
+ "latitude": "56.10753510",
+ "longitude": "-3.75294090"
+ },
+ {
+ "id": 2461,
+ "name": "Coleraine Borough Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CLR",
+ "type": null,
+ "latitude": "55.14515700",
+ "longitude": "-6.67598140"
+ },
+ {
+ "id": 2352,
+ "name": "Conwy County Borough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CWY",
+ "type": null,
+ "latitude": "53.29350130",
+ "longitude": "-3.72651610"
+ },
+ {
+ "id": 2445,
+ "name": "Cookstown District Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CKT",
+ "type": null,
+ "latitude": "54.64181580",
+ "longitude": "-6.74438950"
+ },
+ {
+ "id": 2312,
+ "name": "Cornwall",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CON",
+ "type": null,
+ "latitude": "50.26604710",
+ "longitude": "-5.05271250"
+ },
+ {
+ "id": 2406,
+ "name": "County Durham",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DUR",
+ "type": null,
+ "latitude": "54.72940990",
+ "longitude": "-1.88115980"
+ },
+ {
+ "id": 2438,
+ "name": "Coventry",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "COV",
+ "type": null,
+ "latitude": "52.40682200",
+ "longitude": "-1.51969300"
+ },
+ {
+ "id": 2449,
+ "name": "Craigavon Borough Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CGV",
+ "type": null,
+ "latitude": "54.39325920",
+ "longitude": "-6.45634010"
+ },
+ {
+ "id": 2334,
+ "name": "Cumbria",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CMA",
+ "type": null,
+ "latitude": "54.57723230",
+ "longitude": "-2.79748350"
+ },
+ {
+ "id": 2389,
+ "name": "Darlington",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DAL",
+ "type": null,
+ "latitude": "34.29987620",
+ "longitude": "-79.87617410"
+ },
+ {
+ "id": 2497,
+ "name": "Denbighshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DEN",
+ "type": null,
+ "latitude": "53.18422880",
+ "longitude": "-3.42249850"
+ },
+ {
+ "id": 2403,
+ "name": "Derbyshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DBY",
+ "type": null,
+ "latitude": "53.10467820",
+ "longitude": "-1.56238850"
+ },
+ {
+ "id": 2446,
+ "name": "Derry City and Strabane",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DRS",
+ "type": null,
+ "latitude": "55.00474430",
+ "longitude": "-7.32092220"
+ },
+ {
+ "id": 2417,
+ "name": "Derry City Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DRY",
+ "type": null,
+ "latitude": "54.96907780",
+ "longitude": "-7.19583510"
+ },
+ {
+ "id": 2491,
+ "name": "Devon",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DEV",
+ "type": null,
+ "latitude": "50.71555910",
+ "longitude": "-3.53087500"
+ },
+ {
+ "id": 2364,
+ "name": "Doncaster",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DNC",
+ "type": null,
+ "latitude": "53.52282000",
+ "longitude": "-1.12846200"
+ },
+ {
+ "id": 2345,
+ "name": "Dorset",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DOR",
+ "type": null,
+ "latitude": "50.74876350",
+ "longitude": "-2.34447860"
+ },
+ {
+ "id": 2304,
+ "name": "Down District Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DOW",
+ "type": null,
+ "latitude": "54.24342870",
+ "longitude": "-5.95779590"
+ },
+ {
+ "id": 2457,
+ "name": "Dudley",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DUD",
+ "type": null,
+ "latitude": "42.04336610",
+ "longitude": "-71.92760330"
+ },
+ {
+ "id": 2415,
+ "name": "Dumfries and Galloway",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DGY",
+ "type": null,
+ "latitude": "55.07010730",
+ "longitude": "-3.60525810"
+ },
+ {
+ "id": 2511,
+ "name": "Dundee",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DND",
+ "type": null,
+ "latitude": "56.46201800",
+ "longitude": "-2.97072100"
+ },
+ {
+ "id": 2508,
+ "name": "Dungannon and South Tyrone Borough Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "DGN",
+ "type": null,
+ "latitude": "54.50826840",
+ "longitude": "-6.76658910"
+ },
+ {
+ "id": 2374,
+ "name": "East Ayrshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "EAY",
+ "type": null,
+ "latitude": "55.45184960",
+ "longitude": "-4.26444780"
+ },
+ {
+ "id": 2454,
+ "name": "East Dunbartonshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "EDU",
+ "type": null,
+ "latitude": "55.97431620",
+ "longitude": "-4.20229800"
+ },
+ {
+ "id": 2462,
+ "name": "East Lothian",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ELN",
+ "type": null,
+ "latitude": "55.94933830",
+ "longitude": "-2.77044640"
+ },
+ {
+ "id": 2333,
+ "name": "East Renfrewshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ERW",
+ "type": null,
+ "latitude": "55.77047350",
+ "longitude": "-4.33598210"
+ },
+ {
+ "id": 2370,
+ "name": "East Riding of Yorkshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ERY",
+ "type": null,
+ "latitude": "53.84161680",
+ "longitude": "-0.43441060"
+ },
+ {
+ "id": 2414,
+ "name": "East Sussex",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ESX",
+ "type": null,
+ "latitude": "50.90859550",
+ "longitude": "0.24941660"
+ },
+ {
+ "id": 2428,
+ "name": "Edinburgh",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "EDH",
+ "type": null,
+ "latitude": "55.95325200",
+ "longitude": "-3.18826700"
+ },
+ {
+ "id": 2336,
+ "name": "England",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ENG",
+ "type": null,
+ "latitude": "52.35551770",
+ "longitude": "-1.17431970"
+ },
+ {
+ "id": 2410,
+ "name": "Essex",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ESS",
+ "type": null,
+ "latitude": "51.57424470",
+ "longitude": "0.48567810"
+ },
+ {
+ "id": 2344,
+ "name": "Falkirk",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "FAL",
+ "type": null,
+ "latitude": "56.00187750",
+ "longitude": "-3.78391310"
+ },
+ {
+ "id": 2366,
+ "name": "Fermanagh and Omagh",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "FMO",
+ "type": null,
+ "latitude": "54.45135240",
+ "longitude": "-7.71250180"
+ },
+ {
+ "id": 2531,
+ "name": "Fermanagh District Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "FER",
+ "type": null,
+ "latitude": "54.34479780",
+ "longitude": "-7.63842180"
+ },
+ {
+ "id": 2479,
+ "name": "Fife",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "FIF",
+ "type": null,
+ "latitude": "56.20820780",
+ "longitude": "-3.14951750"
+ },
+ {
+ "id": 2437,
+ "name": "Flintshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "FLN",
+ "type": null,
+ "latitude": "53.16686580",
+ "longitude": "-3.14189080"
+ },
+ {
+ "id": 2431,
+ "name": "Gateshead",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "GAT",
+ "type": null,
+ "latitude": "54.95268000",
+ "longitude": "-1.60341100"
+ },
+ {
+ "id": 2404,
+ "name": "Glasgow",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "GLG",
+ "type": null,
+ "latitude": "55.86423700",
+ "longitude": "-4.25180600"
+ },
+ {
+ "id": 2373,
+ "name": "Gloucestershire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "GLS",
+ "type": null,
+ "latitude": "51.86421120",
+ "longitude": "-2.23803350"
+ },
+ {
+ "id": 2379,
+ "name": "Gwynedd",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "GWN",
+ "type": null,
+ "latitude": "52.92772660",
+ "longitude": "-4.13348360"
+ },
+ {
+ "id": 2466,
+ "name": "Halton",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HAL",
+ "type": null,
+ "latitude": "43.53253720",
+ "longitude": "-79.87448360"
+ },
+ {
+ "id": 2435,
+ "name": "Hampshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HAM",
+ "type": null,
+ "latitude": "51.05769480",
+ "longitude": "-1.30806290"
+ },
+ {
+ "id": 2309,
+ "name": "Hartlepool",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HPL",
+ "type": null,
+ "latitude": "54.69174500",
+ "longitude": "-1.21292600"
+ },
+ {
+ "id": 2500,
+ "name": "Herefordshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HEF",
+ "type": null,
+ "latitude": "52.07651640",
+ "longitude": "-2.65441820"
+ },
+ {
+ "id": 2369,
+ "name": "Hertfordshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HRT",
+ "type": null,
+ "latitude": "51.80978230",
+ "longitude": "-0.23767440"
+ },
+ {
+ "id": 2383,
+ "name": "Highland",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HLD",
+ "type": null,
+ "latitude": "36.29675080",
+ "longitude": "-95.83803660"
+ },
+ {
+ "id": 2388,
+ "name": "Inverclyde",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "IVC",
+ "type": null,
+ "latitude": "55.93165690",
+ "longitude": "-4.68001580"
+ },
+ {
+ "id": 2289,
+ "name": "Isle of Wight",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "IOW",
+ "type": null,
+ "latitude": "50.69384790",
+ "longitude": "-1.30473400"
+ },
+ {
+ "id": 2343,
+ "name": "Isles of Scilly",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "IOS",
+ "type": null,
+ "latitude": "49.92772610",
+ "longitude": "-6.32749660"
+ },
+ {
+ "id": 2464,
+ "name": "Kent",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "KEN",
+ "type": null,
+ "latitude": "41.15366740",
+ "longitude": "-81.35788590"
+ },
+ {
+ "id": 2371,
+ "name": "Kirklees",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "KIR",
+ "type": null,
+ "latitude": "53.59334320",
+ "longitude": "-1.80095090"
+ },
+ {
+ "id": 2330,
+ "name": "Knowsley",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "KWL",
+ "type": null,
+ "latitude": "53.45459400",
+ "longitude": "-2.85290700"
+ },
+ {
+ "id": 2495,
+ "name": "Lancashire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LAN",
+ "type": null,
+ "latitude": "53.76322540",
+ "longitude": "-2.70440520"
+ },
+ {
+ "id": 2515,
+ "name": "Larne Borough Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LRN",
+ "type": null,
+ "latitude": "54.85780030",
+ "longitude": "-5.82362240"
+ },
+ {
+ "id": 2503,
+ "name": "Leeds",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LDS",
+ "type": null,
+ "latitude": "53.80075540",
+ "longitude": "-1.54907740"
+ },
+ {
+ "id": 2516,
+ "name": "Leicestershire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LEC",
+ "type": null,
+ "latitude": "52.77257100",
+ "longitude": "-1.20521260"
+ },
+ {
+ "id": 2382,
+ "name": "Limavady Borough Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LMV",
+ "type": null,
+ "latitude": "55.05168200",
+ "longitude": "-6.94919440"
+ },
+ {
+ "id": 2355,
+ "name": "Lincolnshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LIN",
+ "type": null,
+ "latitude": "52.94518890",
+ "longitude": "-0.16012460"
+ },
+ {
+ "id": 2460,
+ "name": "Lisburn and Castlereagh",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LBC",
+ "type": null,
+ "latitude": "54.49815840",
+ "longitude": "-6.13067910"
+ },
+ {
+ "id": 2494,
+ "name": "Lisburn City Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LSB",
+ "type": null,
+ "latitude": "54.49815840",
+ "longitude": "-6.13067910"
+ },
+ {
+ "id": 2340,
+ "name": "Liverpool",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LIV",
+ "type": null,
+ "latitude": "32.65649810",
+ "longitude": "-115.47632410"
+ },
+ {
+ "id": 2356,
+ "name": "London Borough of Barking and Dagenham",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BDG",
+ "type": null,
+ "latitude": "51.55406660",
+ "longitude": "0.13401700"
+ },
+ {
+ "id": 2520,
+ "name": "London Borough of Barnet",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BNE",
+ "type": null,
+ "latitude": "51.60496730",
+ "longitude": "-0.20762950"
+ },
+ {
+ "id": 2307,
+ "name": "London Borough of Bexley",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BEX",
+ "type": null,
+ "latitude": "51.45190210",
+ "longitude": "0.11717860"
+ },
+ {
+ "id": 2291,
+ "name": "London Borough of Brent",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BEN",
+ "type": null,
+ "latitude": "51.56728080",
+ "longitude": "-0.27105680"
+ },
+ {
+ "id": 2490,
+ "name": "London Borough of Bromley",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "BRY",
+ "type": null,
+ "latitude": "51.36797050",
+ "longitude": "0.07006200"
+ },
+ {
+ "id": 2349,
+ "name": "London Borough of Camden",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CMD",
+ "type": null,
+ "latitude": "51.54547360",
+ "longitude": "-0.16279020"
+ },
+ {
+ "id": 2512,
+ "name": "London Borough of Croydon",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "CRY",
+ "type": null,
+ "latitude": "51.38274460",
+ "longitude": "-0.09851630"
+ },
+ {
+ "id": 2532,
+ "name": "London Borough of Ealing",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "EAL",
+ "type": null,
+ "latitude": "51.52503660",
+ "longitude": "-0.34139650"
+ },
+ {
+ "id": 2476,
+ "name": "London Borough of Enfield",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ENF",
+ "type": null,
+ "latitude": "51.66229090",
+ "longitude": "-0.11806510"
+ },
+ {
+ "id": 2411,
+ "name": "London Borough of Hackney",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HCK",
+ "type": null,
+ "latitude": "51.57344500",
+ "longitude": "-0.07243760"
+ },
+ {
+ "id": 2448,
+ "name": "London Borough of Hammersmith and Fulham",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HMF",
+ "type": null,
+ "latitude": "51.49901560",
+ "longitude": "-0.22915000"
+ },
+ {
+ "id": 2306,
+ "name": "London Borough of Haringey",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HRY",
+ "type": null,
+ "latitude": "51.59061130",
+ "longitude": "-0.11097090"
+ },
+ {
+ "id": 2385,
+ "name": "London Borough of Harrow",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HRW",
+ "type": null,
+ "latitude": "51.58816270",
+ "longitude": "-0.34228510"
+ },
+ {
+ "id": 2347,
+ "name": "London Borough of Havering",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HAV",
+ "type": null,
+ "latitude": "51.57792400",
+ "longitude": "0.21208290"
+ },
+ {
+ "id": 2376,
+ "name": "London Borough of Hillingdon",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HIL",
+ "type": null,
+ "latitude": "51.53518320",
+ "longitude": "-0.44813780"
+ },
+ {
+ "id": 2380,
+ "name": "London Borough of Hounslow",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "HNS",
+ "type": null,
+ "latitude": "51.48283580",
+ "longitude": "-0.38820620"
+ },
+ {
+ "id": 2319,
+ "name": "London Borough of Islington",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ISL",
+ "type": null,
+ "latitude": "51.54650630",
+ "longitude": "-0.10580580"
+ },
+ {
+ "id": 2396,
+ "name": "London Borough of Lambeth",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LBH",
+ "type": null,
+ "latitude": "51.45714770",
+ "longitude": "-0.12306810"
+ },
+ {
+ "id": 2358,
+ "name": "London Borough of Lewisham",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "LEW",
+ "type": null,
+ "latitude": "51.44145790",
+ "longitude": "-0.01170060"
+ },
+ {
+ "id": 2483,
+ "name": "London Borough of Merton",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MRT",
+ "type": null,
+ "latitude": "51.40977420",
+ "longitude": "-0.21080840"
+ },
+ {
+ "id": 2418,
+ "name": "London Borough of Newham",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NWM",
+ "type": null,
+ "latitude": "51.52551620",
+ "longitude": "0.03521630"
+ },
+ {
+ "id": 2397,
+ "name": "London Borough of Redbridge",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "RDB",
+ "type": null,
+ "latitude": "51.58861210",
+ "longitude": "0.08239820"
+ },
+ {
+ "id": 2501,
+ "name": "London Borough of Richmond upon Thames",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "RIC",
+ "type": null,
+ "latitude": "51.46130540",
+ "longitude": "-0.30377090"
+ },
+ {
+ "id": 2432,
+ "name": "London Borough of Southwark",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SWK",
+ "type": null,
+ "latitude": "51.48805720",
+ "longitude": "-0.07628380"
+ },
+ {
+ "id": 2313,
+ "name": "London Borough of Sutton",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "STN",
+ "type": null,
+ "latitude": "51.35737620",
+ "longitude": "-0.17527960"
+ },
+ {
+ "id": 2390,
+ "name": "London Borough of Tower Hamlets",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "TWH",
+ "type": null,
+ "latitude": "51.52026070",
+ "longitude": "-0.02933960"
+ },
+ {
+ "id": 2326,
+ "name": "London Borough of Waltham Forest",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WFT",
+ "type": null,
+ "latitude": "51.58863830",
+ "longitude": "-0.01176250"
+ },
+ {
+ "id": 2434,
+ "name": "London Borough of Wandsworth",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WND",
+ "type": null,
+ "latitude": "51.45682740",
+ "longitude": "-0.18966380"
+ },
+ {
+ "id": 2322,
+ "name": "Magherafelt District Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MFT",
+ "type": null,
+ "latitude": "54.75532790",
+ "longitude": "-6.60774870"
+ },
+ {
+ "id": 2398,
+ "name": "Manchester",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MAN",
+ "type": null,
+ "latitude": "53.48075930",
+ "longitude": "-2.24263050"
+ },
+ {
+ "id": 2381,
+ "name": "Medway",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MDW",
+ "type": null,
+ "latitude": "42.14176410",
+ "longitude": "-71.39672560"
+ },
+ {
+ "id": 2328,
+ "name": "Merthyr Tydfil County Borough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MTY",
+ "type": null,
+ "latitude": "51.74674740",
+ "longitude": "-3.38132750"
+ },
+ {
+ "id": 2320,
+ "name": "Metropolitan Borough of Wigan",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WGN",
+ "type": null,
+ "latitude": "53.51348120",
+ "longitude": "-2.61069990"
+ },
+ {
+ "id": 2429,
+ "name": "Mid and East Antrim",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MEA",
+ "type": null,
+ "latitude": "54.93993410",
+ "longitude": "-6.11374230"
+ },
+ {
+ "id": 2399,
+ "name": "Mid Ulster",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MUL",
+ "type": null,
+ "latitude": "54.64113010",
+ "longitude": "-6.75225490"
+ },
+ {
+ "id": 2332,
+ "name": "Middlesbrough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MDB",
+ "type": null,
+ "latitude": "54.57422700",
+ "longitude": "-1.23495600"
+ },
+ {
+ "id": 2519,
+ "name": "Midlothian",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MLN",
+ "type": null,
+ "latitude": "32.47533500",
+ "longitude": "-97.01031810"
+ },
+ {
+ "id": 2416,
+ "name": "Milton Keynes",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MIK",
+ "type": null,
+ "latitude": "52.08520380",
+ "longitude": "-0.73331330"
+ },
+ {
+ "id": 2402,
+ "name": "Monmouthshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MON",
+ "type": null,
+ "latitude": "51.81161000",
+ "longitude": "-2.71634170"
+ },
+ {
+ "id": 2360,
+ "name": "Moray",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MRY",
+ "type": null,
+ "latitude": "57.64984760",
+ "longitude": "-3.31680390"
+ },
+ {
+ "id": 2348,
+ "name": "Moyle District Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "MYL",
+ "type": null,
+ "latitude": "55.20473270",
+ "longitude": "-6.25317400"
+ },
+ {
+ "id": 2351,
+ "name": "Neath Port Talbot County Borough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NTL",
+ "type": null,
+ "latitude": "51.59785190",
+ "longitude": "-3.78396680"
+ },
+ {
+ "id": 2458,
+ "name": "Newcastle upon Tyne",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NET",
+ "type": null,
+ "latitude": "54.97825200",
+ "longitude": "-1.61778000"
+ },
+ {
+ "id": 2524,
+ "name": "Newport",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NWP",
+ "type": null,
+ "latitude": "37.52782340",
+ "longitude": "-94.10438760"
+ },
+ {
+ "id": 2350,
+ "name": "Newry and Mourne District Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NYM",
+ "type": null,
+ "latitude": "54.17425050",
+ "longitude": "-6.33919920"
+ },
+ {
+ "id": 2534,
+ "name": "Newry, Mourne and Down",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NMD",
+ "type": null,
+ "latitude": "54.24342870",
+ "longitude": "-5.95779590"
+ },
+ {
+ "id": 2317,
+ "name": "Newtownabbey Borough Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NTA",
+ "type": null,
+ "latitude": "54.67924220",
+ "longitude": "-5.95911020"
+ },
+ {
+ "id": 2473,
+ "name": "Norfolk",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NFK",
+ "type": null,
+ "latitude": "36.85076890",
+ "longitude": "-76.28587260"
+ },
+ {
+ "id": 2535,
+ "name": "North Ayrshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NAY",
+ "type": null,
+ "latitude": "55.64167310",
+ "longitude": "-4.75946000"
+ },
+ {
+ "id": 2513,
+ "name": "North Down Borough Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NDN",
+ "type": null,
+ "latitude": "54.65362970",
+ "longitude": "-5.67249250"
+ },
+ {
+ "id": 2384,
+ "name": "North East Lincolnshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NEL",
+ "type": null,
+ "latitude": "53.56682010",
+ "longitude": "-0.08150660"
+ },
+ {
+ "id": 2487,
+ "name": "North Lanarkshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NLK",
+ "type": null,
+ "latitude": "55.86624320",
+ "longitude": "-3.96131440"
+ },
+ {
+ "id": 2453,
+ "name": "North Lincolnshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NLN",
+ "type": null,
+ "latitude": "53.60555920",
+ "longitude": "-0.55965820"
+ },
+ {
+ "id": 2430,
+ "name": "North Somerset",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NSM",
+ "type": null,
+ "latitude": "51.38790280",
+ "longitude": "-2.77810910"
+ },
+ {
+ "id": 2521,
+ "name": "North Tyneside",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NTY",
+ "type": null,
+ "latitude": "55.01823990",
+ "longitude": "-1.48584360"
+ },
+ {
+ "id": 2522,
+ "name": "North Yorkshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NYK",
+ "type": null,
+ "latitude": "53.99150280",
+ "longitude": "-1.54120150"
+ },
+ {
+ "id": 2480,
+ "name": "Northamptonshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NTH",
+ "type": null,
+ "latitude": "52.27299440",
+ "longitude": "-0.87555150"
+ },
+ {
+ "id": 2337,
+ "name": "Northern Ireland",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NIR",
+ "type": null,
+ "latitude": "54.78771490",
+ "longitude": "-6.49231450"
+ },
+ {
+ "id": 2365,
+ "name": "Northumberland",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NBL",
+ "type": null,
+ "latitude": "55.20825420",
+ "longitude": "-2.07841380"
+ },
+ {
+ "id": 2456,
+ "name": "Nottinghamshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "NTT",
+ "type": null,
+ "latitude": "53.10031900",
+ "longitude": "-0.99363060"
+ },
+ {
+ "id": 2477,
+ "name": "Oldham",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "OLD",
+ "type": null,
+ "latitude": "42.20405980",
+ "longitude": "-71.20481190"
+ },
+ {
+ "id": 2314,
+ "name": "Omagh District Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "OMH",
+ "type": null,
+ "latitude": "54.45135240",
+ "longitude": "-7.71250180"
+ },
+ {
+ "id": 2474,
+ "name": "Orkney Islands",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ORK",
+ "type": null,
+ "latitude": "58.98094010",
+ "longitude": "-2.96052060"
+ },
+ {
+ "id": 2353,
+ "name": "Outer Hebrides",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ELS",
+ "type": null,
+ "latitude": "57.75989180",
+ "longitude": "-7.01940340"
+ },
+ {
+ "id": 2321,
+ "name": "Oxfordshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "OXF",
+ "type": null,
+ "latitude": "51.76120560",
+ "longitude": "-1.24646740"
+ },
+ {
+ "id": 2486,
+ "name": "Pembrokeshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "PEM",
+ "type": null,
+ "latitude": "51.67407800",
+ "longitude": "-4.90887850"
+ },
+ {
+ "id": 2325,
+ "name": "Perth and Kinross",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "PKN",
+ "type": null,
+ "latitude": "56.39538170",
+ "longitude": "-3.42835470"
+ },
+ {
+ "id": 2302,
+ "name": "Poole",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "POL",
+ "type": null,
+ "latitude": "50.71505000",
+ "longitude": "-1.98724800"
+ },
+ {
+ "id": 2441,
+ "name": "Powys",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "POW",
+ "type": null,
+ "latitude": "52.64642490",
+ "longitude": "-3.32609040"
+ },
+ {
+ "id": 2455,
+ "name": "Reading",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "RDG",
+ "type": null,
+ "latitude": "36.14866590",
+ "longitude": "-95.98400120"
+ },
+ {
+ "id": 2527,
+ "name": "Redcar and Cleveland",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "RCC",
+ "type": null,
+ "latitude": "54.59713440",
+ "longitude": "-1.07759970"
+ },
+ {
+ "id": 2443,
+ "name": "Renfrewshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "RFW",
+ "type": null,
+ "latitude": "55.84665400",
+ "longitude": "-4.53312590"
+ },
+ {
+ "id": 2301,
+ "name": "Rhondda Cynon Taf",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "RCT",
+ "type": null,
+ "latitude": "51.64902070",
+ "longitude": "-3.42886920"
+ },
+ {
+ "id": 2327,
+ "name": "Rochdale",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "RCH",
+ "type": null,
+ "latitude": "53.60971360",
+ "longitude": "-2.15610000"
+ },
+ {
+ "id": 2308,
+ "name": "Rotherham",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ROT",
+ "type": null,
+ "latitude": "53.43260350",
+ "longitude": "-1.36350090"
+ },
+ {
+ "id": 2492,
+ "name": "Royal Borough of Greenwich",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "GRE",
+ "type": null,
+ "latitude": "51.48346270",
+ "longitude": "0.05862020"
+ },
+ {
+ "id": 2368,
+ "name": "Royal Borough of Kensington and Chelsea",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "KEC",
+ "type": null,
+ "latitude": "51.49908050",
+ "longitude": "-0.19382530"
+ },
+ {
+ "id": 2481,
+ "name": "Royal Borough of Kingston upon Thames",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "KTT",
+ "type": null,
+ "latitude": "51.37811700",
+ "longitude": "-0.29270900"
+ },
+ {
+ "id": 2472,
+ "name": "Rutland",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "RUT",
+ "type": null,
+ "latitude": "43.61062370",
+ "longitude": "-72.97260650"
+ },
+ {
+ "id": 2502,
+ "name": "Saint Helena",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SH-HL",
+ "type": null,
+ "latitude": "-15.96501040",
+ "longitude": "-5.70892410"
+ },
+ {
+ "id": 2493,
+ "name": "Salford",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SLF",
+ "type": null,
+ "latitude": "53.48752350",
+ "longitude": "-2.29012640"
+ },
+ {
+ "id": 2341,
+ "name": "Sandwell",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SAW",
+ "type": null,
+ "latitude": "52.53616740",
+ "longitude": "-2.01079300"
+ },
+ {
+ "id": 2335,
+ "name": "Scotland",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SCT",
+ "type": null,
+ "latitude": "56.49067120",
+ "longitude": "-4.20264580"
+ },
+ {
+ "id": 2346,
+ "name": "Scottish Borders",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SCB",
+ "type": null,
+ "latitude": "55.54856970",
+ "longitude": "-2.78613880"
+ },
+ {
+ "id": 2518,
+ "name": "Sefton",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SFT",
+ "type": null,
+ "latitude": "53.50344490",
+ "longitude": "-2.97035900"
+ },
+ {
+ "id": 2295,
+ "name": "Sheffield",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SHF",
+ "type": null,
+ "latitude": "36.09507430",
+ "longitude": "-80.27884660"
+ },
+ {
+ "id": 2300,
+ "name": "Shetland Islands",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "ZET",
+ "type": null,
+ "latitude": "60.52965070",
+ "longitude": "-1.26594090"
+ },
+ {
+ "id": 2407,
+ "name": "Shropshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SHR",
+ "type": null,
+ "latitude": "52.70636570",
+ "longitude": "-2.74178490"
+ },
+ {
+ "id": 2427,
+ "name": "Slough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SLG",
+ "type": null,
+ "latitude": "51.51053840",
+ "longitude": "-0.59504060"
+ },
+ {
+ "id": 2469,
+ "name": "Solihull",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SOL",
+ "type": null,
+ "latitude": "52.41181100",
+ "longitude": "-1.77761000"
+ },
+ {
+ "id": 2386,
+ "name": "Somerset",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SOM",
+ "type": null,
+ "latitude": "51.10509700",
+ "longitude": "-2.92623070"
+ },
+ {
+ "id": 2377,
+ "name": "South Ayrshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SAY",
+ "type": null,
+ "latitude": "55.45889880",
+ "longitude": "-4.62919940"
+ },
+ {
+ "id": 2400,
+ "name": "South Gloucestershire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SGC",
+ "type": null,
+ "latitude": "51.52643610",
+ "longitude": "-2.47284870"
+ },
+ {
+ "id": 2362,
+ "name": "South Lanarkshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SLK",
+ "type": null,
+ "latitude": "55.67359090",
+ "longitude": "-3.78196610"
+ },
+ {
+ "id": 2409,
+ "name": "South Tyneside",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "STY",
+ "type": null,
+ "latitude": "54.96366930",
+ "longitude": "-1.44186340"
+ },
+ {
+ "id": 2323,
+ "name": "Southend-on-Sea",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SOS",
+ "type": null,
+ "latitude": "51.54592690",
+ "longitude": "0.70771230"
+ },
+ {
+ "id": 2290,
+ "name": "St Helens",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SHN",
+ "type": null,
+ "latitude": "45.85896100",
+ "longitude": "-122.82123560"
+ },
+ {
+ "id": 2447,
+ "name": "Staffordshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "STS",
+ "type": null,
+ "latitude": "52.87927450",
+ "longitude": "-2.05718680"
+ },
+ {
+ "id": 2488,
+ "name": "Stirling",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "STG",
+ "type": null,
+ "latitude": "56.11652270",
+ "longitude": "-3.93690290"
+ },
+ {
+ "id": 2394,
+ "name": "Stockport",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SKP",
+ "type": null,
+ "latitude": "53.41063160",
+ "longitude": "-2.15753320"
+ },
+ {
+ "id": 2421,
+ "name": "Stockton-on-Tees",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "STT",
+ "type": null,
+ "latitude": "54.57045510",
+ "longitude": "-1.32898210"
+ },
+ {
+ "id": 2393,
+ "name": "Strabane District Council",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "STB",
+ "type": null,
+ "latitude": "54.82738650",
+ "longitude": "-7.46331030"
+ },
+ {
+ "id": 2467,
+ "name": "Suffolk",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SFK",
+ "type": null,
+ "latitude": "52.18724720",
+ "longitude": "0.97078010"
+ },
+ {
+ "id": 2526,
+ "name": "Surrey",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SRY",
+ "type": null,
+ "latitude": "51.31475930",
+ "longitude": "-0.55995010"
+ },
+ {
+ "id": 2422,
+ "name": "Swindon",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "SWD",
+ "type": null,
+ "latitude": "51.55577390",
+ "longitude": "-1.77971760"
+ },
+ {
+ "id": 2367,
+ "name": "Tameside",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "TAM",
+ "type": null,
+ "latitude": "53.48058280",
+ "longitude": "-2.08098910"
+ },
+ {
+ "id": 2310,
+ "name": "Telford and Wrekin",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "TFW",
+ "type": null,
+ "latitude": "52.74099160",
+ "longitude": "-2.48685860"
+ },
+ {
+ "id": 2468,
+ "name": "Thurrock",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "THR",
+ "type": null,
+ "latitude": "51.49345570",
+ "longitude": "0.35291970"
+ },
+ {
+ "id": 2478,
+ "name": "Torbay",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "TOB",
+ "type": null,
+ "latitude": "50.43923290",
+ "longitude": "-3.53698990"
+ },
+ {
+ "id": 2496,
+ "name": "Torfaen",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "TOF",
+ "type": null,
+ "latitude": "51.70022530",
+ "longitude": "-3.04460150"
+ },
+ {
+ "id": 2293,
+ "name": "Trafford",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "TRF",
+ "type": null,
+ "latitude": "40.38562460",
+ "longitude": "-79.75893470"
+ },
+ {
+ "id": 2375,
+ "name": "United Kingdom",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "UKM",
+ "type": null,
+ "latitude": "55.37805100",
+ "longitude": "-3.43597300"
+ },
+ {
+ "id": 2299,
+ "name": "Vale of Glamorgan",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "VGL",
+ "type": null,
+ "latitude": "51.40959580",
+ "longitude": "-3.48481670"
+ },
+ {
+ "id": 2465,
+ "name": "Wakefield",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WKF",
+ "type": null,
+ "latitude": "42.50393950",
+ "longitude": "-71.07233910"
+ },
+ {
+ "id": 2338,
+ "name": "Wales",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WLS",
+ "type": null,
+ "latitude": "52.13066070",
+ "longitude": "-3.78371170"
+ },
+ {
+ "id": 2292,
+ "name": "Walsall",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WLL",
+ "type": null,
+ "latitude": "52.58621400",
+ "longitude": "-1.98291900"
+ },
+ {
+ "id": 2420,
+ "name": "Warrington",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WRT",
+ "type": null,
+ "latitude": "40.24927410",
+ "longitude": "-75.13406040"
+ },
+ {
+ "id": 2505,
+ "name": "Warwickshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WAR",
+ "type": null,
+ "latitude": "52.26713530",
+ "longitude": "-1.46752160"
+ },
+ {
+ "id": 2471,
+ "name": "West Berkshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WBK",
+ "type": null,
+ "latitude": "51.43082550",
+ "longitude": "-1.14449270"
+ },
+ {
+ "id": 2440,
+ "name": "West Dunbartonshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WDU",
+ "type": null,
+ "latitude": "55.94509250",
+ "longitude": "-4.56462590"
+ },
+ {
+ "id": 2354,
+ "name": "West Lothian",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WLN",
+ "type": null,
+ "latitude": "55.90701980",
+ "longitude": "-3.55171670"
+ },
+ {
+ "id": 2296,
+ "name": "West Sussex",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WSX",
+ "type": null,
+ "latitude": "50.92801430",
+ "longitude": "-0.46170750"
+ },
+ {
+ "id": 2391,
+ "name": "Wiltshire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WIL",
+ "type": null,
+ "latitude": "51.34919960",
+ "longitude": "-1.99271050"
+ },
+ {
+ "id": 2482,
+ "name": "Windsor and Maidenhead",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WNM",
+ "type": null,
+ "latitude": "51.47997120",
+ "longitude": "-0.62425650"
+ },
+ {
+ "id": 2408,
+ "name": "Wirral",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WRL",
+ "type": null,
+ "latitude": "53.37271810",
+ "longitude": "-3.07375400"
+ },
+ {
+ "id": 2419,
+ "name": "Wokingham",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WOK",
+ "type": null,
+ "latitude": "51.41045700",
+ "longitude": "-0.83386100"
+ },
+ {
+ "id": 2510,
+ "name": "Worcestershire",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WOR",
+ "type": null,
+ "latitude": "52.25452250",
+ "longitude": "-2.26683820"
+ },
+ {
+ "id": 2436,
+ "name": "Wrexham County Borough",
+ "country_id": 232,
+ "country_code": "GB",
+ "country_name": "United Kingdom",
+ "state_code": "WRX",
+ "type": null,
+ "latitude": "53.03013780",
+ "longitude": "-3.02614870"
+ },
+ {
+ "id": 1456,
+ "name": "Alabama",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "AL",
+ "type": "state",
+ "latitude": "32.31823140",
+ "longitude": "-86.90229800"
+ },
+ {
+ "id": 1400,
+ "name": "Alaska",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "AK",
+ "type": "state",
+ "latitude": "64.20084130",
+ "longitude": "-149.49367330"
+ },
+ {
+ "id": 1424,
+ "name": "American Samoa",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "AS",
+ "type": "outlying area",
+ "latitude": "-14.27097200",
+ "longitude": "-170.13221700"
+ },
+ {
+ "id": 1434,
+ "name": "Arizona",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "AZ",
+ "type": "state",
+ "latitude": "34.04892810",
+ "longitude": "-111.09373110"
+ },
+ {
+ "id": 1444,
+ "name": "Arkansas",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "AR",
+ "type": "state",
+ "latitude": "35.20105000",
+ "longitude": "-91.83183340"
+ },
+ {
+ "id": 1402,
+ "name": "Baker Island",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UM-81",
+ "type": "islands \/ groups of islands",
+ "latitude": "0.19362660",
+ "longitude": "-176.47690800"
+ },
+ {
+ "id": 1416,
+ "name": "California",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "CA",
+ "type": "state",
+ "latitude": "36.77826100",
+ "longitude": "-119.41793240"
+ },
+ {
+ "id": 1450,
+ "name": "Colorado",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "CO",
+ "type": "state",
+ "latitude": "39.55005070",
+ "longitude": "-105.78206740"
+ },
+ {
+ "id": 1435,
+ "name": "Connecticut",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "CT",
+ "type": "state",
+ "latitude": "41.60322070",
+ "longitude": "-73.08774900"
+ },
+ {
+ "id": 1399,
+ "name": "Delaware",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "DE",
+ "type": "state",
+ "latitude": "38.91083250",
+ "longitude": "-75.52766990"
+ },
+ {
+ "id": 1437,
+ "name": "District of Columbia",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "DC",
+ "type": "district",
+ "latitude": "38.90719230",
+ "longitude": "-77.03687070"
+ },
+ {
+ "id": 1436,
+ "name": "Florida",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "FL",
+ "type": "state",
+ "latitude": "27.66482740",
+ "longitude": "-81.51575350"
+ },
+ {
+ "id": 1455,
+ "name": "Georgia",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "GA",
+ "type": "state",
+ "latitude": "32.16562210",
+ "longitude": "-82.90007510"
+ },
+ {
+ "id": 1412,
+ "name": "Guam",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "GU",
+ "type": "outlying area",
+ "latitude": "13.44430400",
+ "longitude": "144.79373100"
+ },
+ {
+ "id": 1411,
+ "name": "Hawaii",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "HI",
+ "type": "state",
+ "latitude": "19.89676620",
+ "longitude": "-155.58278180"
+ },
+ {
+ "id": 1398,
+ "name": "Howland Island",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UM-84",
+ "type": "islands \/ groups of islands",
+ "latitude": "0.81132190",
+ "longitude": "-176.61827360"
+ },
+ {
+ "id": 1460,
+ "name": "Idaho",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "ID",
+ "type": "state",
+ "latitude": "44.06820190",
+ "longitude": "-114.74204080"
+ },
+ {
+ "id": 1425,
+ "name": "Illinois",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "IL",
+ "type": "state",
+ "latitude": "40.63312490",
+ "longitude": "-89.39852830"
+ },
+ {
+ "id": 1440,
+ "name": "Indiana",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "IN",
+ "type": "state",
+ "latitude": "40.26719410",
+ "longitude": "-86.13490190"
+ },
+ {
+ "id": 1459,
+ "name": "Iowa",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "IA",
+ "type": "state",
+ "latitude": "41.87800250",
+ "longitude": "-93.09770200"
+ },
+ {
+ "id": 1410,
+ "name": "Jarvis Island",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UM-86",
+ "type": "islands \/ groups of islands",
+ "latitude": "-0.37435030",
+ "longitude": "-159.99672060"
+ },
+ {
+ "id": 1428,
+ "name": "Johnston Atoll",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UM-67",
+ "type": "islands \/ groups of islands",
+ "latitude": "16.72950350",
+ "longitude": "-169.53364770"
+ },
+ {
+ "id": 1406,
+ "name": "Kansas",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "KS",
+ "type": "state",
+ "latitude": "39.01190200",
+ "longitude": "-98.48424650"
+ },
+ {
+ "id": 1419,
+ "name": "Kentucky",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "KY",
+ "type": "state",
+ "latitude": "37.83933320",
+ "longitude": "-84.27001790"
+ },
+ {
+ "id": 1403,
+ "name": "Kingman Reef",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UM-89",
+ "type": "islands \/ groups of islands",
+ "latitude": "6.38333300",
+ "longitude": "-162.41666700"
+ },
+ {
+ "id": 1457,
+ "name": "Louisiana",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "LA",
+ "type": "state",
+ "latitude": "30.98429770",
+ "longitude": "-91.96233270"
+ },
+ {
+ "id": 1453,
+ "name": "Maine",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "ME",
+ "type": "state",
+ "latitude": "45.25378300",
+ "longitude": "-69.44546890"
+ },
+ {
+ "id": 1401,
+ "name": "Maryland",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "MD",
+ "type": "state",
+ "latitude": "39.04575490",
+ "longitude": "-76.64127120"
+ },
+ {
+ "id": 1433,
+ "name": "Massachusetts",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "MA",
+ "type": "state",
+ "latitude": "42.40721070",
+ "longitude": "-71.38243740"
+ },
+ {
+ "id": 1426,
+ "name": "Michigan",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "MI",
+ "type": "state",
+ "latitude": "44.31484430",
+ "longitude": "-85.60236430"
+ },
+ {
+ "id": 1438,
+ "name": "Midway Atoll",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UM-71",
+ "type": "islands \/ groups of islands",
+ "latitude": "28.20721680",
+ "longitude": "-177.37349260"
+ },
+ {
+ "id": 1420,
+ "name": "Minnesota",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "MN",
+ "type": "state",
+ "latitude": "46.72955300",
+ "longitude": "-94.68589980"
+ },
+ {
+ "id": 1430,
+ "name": "Mississippi",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "MS",
+ "type": "state",
+ "latitude": "32.35466790",
+ "longitude": "-89.39852830"
+ },
+ {
+ "id": 1451,
+ "name": "Missouri",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "MO",
+ "type": "state",
+ "latitude": "37.96425290",
+ "longitude": "-91.83183340"
+ },
+ {
+ "id": 1446,
+ "name": "Montana",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "MT",
+ "type": "state",
+ "latitude": "46.87968220",
+ "longitude": "-110.36256580"
+ },
+ {
+ "id": 1439,
+ "name": "Navassa Island",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UM-76",
+ "type": "islands \/ groups of islands",
+ "latitude": "18.41006890",
+ "longitude": "-75.01146120"
+ },
+ {
+ "id": 1408,
+ "name": "Nebraska",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "NE",
+ "type": "state",
+ "latitude": "41.49253740",
+ "longitude": "-99.90181310"
+ },
+ {
+ "id": 1458,
+ "name": "Nevada",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "NV",
+ "type": "state",
+ "latitude": "38.80260970",
+ "longitude": "-116.41938900"
+ },
+ {
+ "id": 1404,
+ "name": "New Hampshire",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "NH",
+ "type": "state",
+ "latitude": "43.19385160",
+ "longitude": "-71.57239530"
+ },
+ {
+ "id": 1417,
+ "name": "New Jersey",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "NJ",
+ "type": "state",
+ "latitude": "40.05832380",
+ "longitude": "-74.40566120"
+ },
+ {
+ "id": 1423,
+ "name": "New Mexico",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "NM",
+ "type": "state",
+ "latitude": "34.51994020",
+ "longitude": "-105.87009010"
+ },
+ {
+ "id": 1452,
+ "name": "New York",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "NY",
+ "type": "state",
+ "latitude": "40.71277530",
+ "longitude": "-74.00597280"
+ },
+ {
+ "id": 1447,
+ "name": "North Carolina",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "NC",
+ "type": "state",
+ "latitude": "35.75957310",
+ "longitude": "-79.01929970"
+ },
+ {
+ "id": 1418,
+ "name": "North Dakota",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "ND",
+ "type": "state",
+ "latitude": "47.55149260",
+ "longitude": "-101.00201190"
+ },
+ {
+ "id": 1431,
+ "name": "Northern Mariana Islands",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "MP",
+ "type": "outlying area",
+ "latitude": "15.09790000",
+ "longitude": "145.67390000"
+ },
+ {
+ "id": 4851,
+ "name": "Ohio",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "OH",
+ "type": "state",
+ "latitude": "40.41728710",
+ "longitude": "-82.90712300"
+ },
+ {
+ "id": 1421,
+ "name": "Oklahoma",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "OK",
+ "type": "state",
+ "latitude": "35.46756020",
+ "longitude": "-97.51642760"
+ },
+ {
+ "id": 1415,
+ "name": "Oregon",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "OR",
+ "type": "state",
+ "latitude": "43.80413340",
+ "longitude": "-120.55420120"
+ },
+ {
+ "id": 1448,
+ "name": "Palmyra Atoll",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UM-95",
+ "type": "islands \/ groups of islands",
+ "latitude": "5.88850260",
+ "longitude": "-162.07866560"
+ },
+ {
+ "id": 1422,
+ "name": "Pennsylvania",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "PA",
+ "type": "state",
+ "latitude": "41.20332160",
+ "longitude": "-77.19452470"
+ },
+ {
+ "id": 1449,
+ "name": "Puerto Rico",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "PR",
+ "type": "outlying area",
+ "latitude": "18.22083300",
+ "longitude": "-66.59014900"
+ },
+ {
+ "id": 1461,
+ "name": "Rhode Island",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "RI",
+ "type": "state",
+ "latitude": "41.58009450",
+ "longitude": "-71.47742910"
+ },
+ {
+ "id": 1443,
+ "name": "South Carolina",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "SC",
+ "type": "state",
+ "latitude": "33.83608100",
+ "longitude": "-81.16372450"
+ },
+ {
+ "id": 1445,
+ "name": "South Dakota",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "SD",
+ "type": "state",
+ "latitude": "43.96951480",
+ "longitude": "-99.90181310"
+ },
+ {
+ "id": 1454,
+ "name": "Tennessee",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "TN",
+ "type": "state",
+ "latitude": "35.51749130",
+ "longitude": "-86.58044730"
+ },
+ {
+ "id": 1407,
+ "name": "Texas",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "TX",
+ "type": "state",
+ "latitude": "31.96859880",
+ "longitude": "-99.90181310"
+ },
+ {
+ "id": 1432,
+ "name": "United States Minor Outlying Islands",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UM",
+ "type": "outlying area",
+ "latitude": "19.28231920",
+ "longitude": "166.64704700"
+ },
+ {
+ "id": 1413,
+ "name": "United States Virgin Islands",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "VI",
+ "type": "outlying area",
+ "latitude": "18.33576500",
+ "longitude": "-64.89633500"
+ },
+ {
+ "id": 1414,
+ "name": "Utah",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UT",
+ "type": "state",
+ "latitude": "39.32098010",
+ "longitude": "-111.09373110"
+ },
+ {
+ "id": 1409,
+ "name": "Vermont",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "VT",
+ "type": "state",
+ "latitude": "44.55880280",
+ "longitude": "-72.57784150"
+ },
+ {
+ "id": 1427,
+ "name": "Virginia",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "VA",
+ "type": "state",
+ "latitude": "37.43157340",
+ "longitude": "-78.65689420"
+ },
+ {
+ "id": 1405,
+ "name": "Wake Island",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "UM-79",
+ "type": "islands \/ groups of islands",
+ "latitude": "19.27961900",
+ "longitude": "166.64993480"
+ },
+ {
+ "id": 1462,
+ "name": "Washington",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "WA",
+ "type": "state",
+ "latitude": "47.75107410",
+ "longitude": "-120.74013850"
+ },
+ {
+ "id": 1429,
+ "name": "West Virginia",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "WV",
+ "type": "state",
+ "latitude": "38.59762620",
+ "longitude": "-80.45490260"
+ },
+ {
+ "id": 1441,
+ "name": "Wisconsin",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "WI",
+ "type": "state",
+ "latitude": "43.78443970",
+ "longitude": "-88.78786780"
+ },
+ {
+ "id": 1442,
+ "name": "Wyoming",
+ "country_id": 233,
+ "country_code": "US",
+ "country_name": "United States",
+ "state_code": "WY",
+ "type": "state",
+ "latitude": "43.07596780",
+ "longitude": "-107.29028390"
+ },
+ {
+ "id": 5212,
+ "name": "Baker Island",
+ "country_id": 234,
+ "country_code": "UM",
+ "country_name": "United States Minor Outlying Islands",
+ "state_code": "81",
+ "type": "island",
+ "latitude": "0.19362660",
+ "longitude": "-176.47690800"
+ },
+ {
+ "id": 5213,
+ "name": "Howland Island",
+ "country_id": 234,
+ "country_code": "UM",
+ "country_name": "United States Minor Outlying Islands",
+ "state_code": "84",
+ "type": "island",
+ "latitude": "0.81132190",
+ "longitude": "-176.61827360"
+ },
+ {
+ "id": 5214,
+ "name": "Jarvis Island",
+ "country_id": 234,
+ "country_code": "UM",
+ "country_name": "United States Minor Outlying Islands",
+ "state_code": "86",
+ "type": "island",
+ "latitude": "-0.37435030",
+ "longitude": "-159.99672060"
+ },
+ {
+ "id": 5215,
+ "name": "Johnston Atoll",
+ "country_id": 234,
+ "country_code": "UM",
+ "country_name": "United States Minor Outlying Islands",
+ "state_code": "67",
+ "type": "island",
+ "latitude": "16.72950350",
+ "longitude": "-169.53364770"
+ },
+ {
+ "id": 5216,
+ "name": "Kingman Reef",
+ "country_id": 234,
+ "country_code": "UM",
+ "country_name": "United States Minor Outlying Islands",
+ "state_code": "89",
+ "type": "island",
+ "latitude": "6.38333300",
+ "longitude": "-162.41666700"
+ },
+ {
+ "id": 5217,
+ "name": "Midway Islands",
+ "country_id": 234,
+ "country_code": "UM",
+ "country_name": "United States Minor Outlying Islands",
+ "state_code": "71",
+ "type": "island",
+ "latitude": "28.20721680",
+ "longitude": "-177.37349260"
+ },
+ {
+ "id": 5218,
+ "name": "Navassa Island",
+ "country_id": 234,
+ "country_code": "UM",
+ "country_name": "United States Minor Outlying Islands",
+ "state_code": "76",
+ "type": "island",
+ "latitude": "18.41006890",
+ "longitude": "-75.01146120"
+ },
+ {
+ "id": 5219,
+ "name": "Palmyra Atoll",
+ "country_id": 234,
+ "country_code": "UM",
+ "country_name": "United States Minor Outlying Islands",
+ "state_code": "95",
+ "type": "island",
+ "latitude": "5.88850260",
+ "longitude": "-162.07866560"
+ },
+ {
+ "id": 5220,
+ "name": "Wake Island",
+ "country_id": 234,
+ "country_code": "UM",
+ "country_name": "United States Minor Outlying Islands",
+ "state_code": "79",
+ "type": "island",
+ "latitude": "19.27961900",
+ "longitude": "166.64993480"
+ },
+ {
+ "id": 3205,
+ "name": "Artigas Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "AR",
+ "type": null,
+ "latitude": "-30.61751120",
+ "longitude": "-56.95945590"
+ },
+ {
+ "id": 3213,
+ "name": "Canelones Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "CA",
+ "type": null,
+ "latitude": "-34.54087170",
+ "longitude": "-55.93076000"
+ },
+ {
+ "id": 3211,
+ "name": "Cerro Largo Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "CL",
+ "type": null,
+ "latitude": "-32.44110320",
+ "longitude": "-54.35217530"
+ },
+ {
+ "id": 3208,
+ "name": "Colonia Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "CO",
+ "type": null,
+ "latitude": "-34.12946780",
+ "longitude": "-57.66051840"
+ },
+ {
+ "id": 3209,
+ "name": "Durazno Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "DU",
+ "type": null,
+ "latitude": "-33.02324540",
+ "longitude": "-56.02846440"
+ },
+ {
+ "id": 3203,
+ "name": "Flores Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "FS",
+ "type": null,
+ "latitude": "-33.57337530",
+ "longitude": "-56.89450280"
+ },
+ {
+ "id": 3217,
+ "name": "Florida Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "FD",
+ "type": null,
+ "latitude": "28.03594950",
+ "longitude": "-82.45792890"
+ },
+ {
+ "id": 3215,
+ "name": "Lavalleja Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "LA",
+ "type": null,
+ "latitude": "-33.92261750",
+ "longitude": "-54.97657940"
+ },
+ {
+ "id": 3206,
+ "name": "Maldonado Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "-34.55979320",
+ "longitude": "-54.86285520"
+ },
+ {
+ "id": 3218,
+ "name": "Montevideo Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "MO",
+ "type": null,
+ "latitude": "-34.81815870",
+ "longitude": "-56.21382560"
+ },
+ {
+ "id": 3212,
+ "name": "Paysandรบ Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "PA",
+ "type": null,
+ "latitude": "-32.06673660",
+ "longitude": "-57.33647890"
+ },
+ {
+ "id": 3210,
+ "name": "Rรญo Negro Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "RN",
+ "type": null,
+ "latitude": "-32.76763560",
+ "longitude": "-57.42952070"
+ },
+ {
+ "id": 3207,
+ "name": "Rivera Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "RV",
+ "type": null,
+ "latitude": "-31.48174210",
+ "longitude": "-55.24357590"
+ },
+ {
+ "id": 3216,
+ "name": "Rocha Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "RO",
+ "type": null,
+ "latitude": "-33.96900810",
+ "longitude": "-54.02148500"
+ },
+ {
+ "id": 3220,
+ "name": "Salto Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "-31.38802800",
+ "longitude": "-57.96124550"
+ },
+ {
+ "id": 3204,
+ "name": "San Josรฉ Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "SJ",
+ "type": null,
+ "latitude": "37.34929680",
+ "longitude": "-121.90560490"
+ },
+ {
+ "id": 3219,
+ "name": "Soriano Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "SO",
+ "type": null,
+ "latitude": "-33.51027920",
+ "longitude": "-57.74981030"
+ },
+ {
+ "id": 3221,
+ "name": "Tacuarembรณ Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "-31.72068370",
+ "longitude": "-55.98598870"
+ },
+ {
+ "id": 3214,
+ "name": "Treinta y Tres Department",
+ "country_id": 235,
+ "country_code": "UY",
+ "country_name": "Uruguay",
+ "state_code": "TT",
+ "type": null,
+ "latitude": "-33.06850860",
+ "longitude": "-54.28586270"
+ },
+ {
+ "id": 2540,
+ "name": "Andijan Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "AN",
+ "type": null,
+ "latitude": "40.76859410",
+ "longitude": "72.23637900"
+ },
+ {
+ "id": 2541,
+ "name": "Bukhara Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "BU",
+ "type": null,
+ "latitude": "40.25041620",
+ "longitude": "63.20321510"
+ },
+ {
+ "id": 2538,
+ "name": "Fergana Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "FA",
+ "type": null,
+ "latitude": "40.45680810",
+ "longitude": "71.28742090"
+ },
+ {
+ "id": 2545,
+ "name": "Jizzakh Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "JI",
+ "type": null,
+ "latitude": "40.47064150",
+ "longitude": "67.57085360"
+ },
+ {
+ "id": 2548,
+ "name": "Karakalpakstan",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "QR",
+ "type": null,
+ "latitude": "43.80413340",
+ "longitude": "59.44579880"
+ },
+ {
+ "id": 2537,
+ "name": "Namangan Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "NG",
+ "type": null,
+ "latitude": "41.05100370",
+ "longitude": "71.09731700"
+ },
+ {
+ "id": 2542,
+ "name": "Navoiy Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "NW",
+ "type": null,
+ "latitude": "42.69885750",
+ "longitude": "64.63376850"
+ },
+ {
+ "id": 2543,
+ "name": "Qashqadaryo Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "QA",
+ "type": null,
+ "latitude": "38.89862310",
+ "longitude": "66.04635340"
+ },
+ {
+ "id": 2544,
+ "name": "Samarqand Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "39.62701200",
+ "longitude": "66.97497310"
+ },
+ {
+ "id": 2547,
+ "name": "Sirdaryo Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "SI",
+ "type": null,
+ "latitude": "40.38638080",
+ "longitude": "68.71549750"
+ },
+ {
+ "id": 2546,
+ "name": "Surxondaryo Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "SU",
+ "type": null,
+ "latitude": "37.94090050",
+ "longitude": "67.57085360"
+ },
+ {
+ "id": 2536,
+ "name": "Tashkent",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "TK",
+ "type": null,
+ "latitude": "41.29949580",
+ "longitude": "69.24007340"
+ },
+ {
+ "id": 2549,
+ "name": "Tashkent Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "TO",
+ "type": null,
+ "latitude": "41.22132340",
+ "longitude": "69.85974060"
+ },
+ {
+ "id": 2539,
+ "name": "Xorazm Region",
+ "country_id": 236,
+ "country_code": "UZ",
+ "country_name": "Uzbekistan",
+ "state_code": "XO",
+ "type": null,
+ "latitude": "41.35653360",
+ "longitude": "60.85666860"
+ },
+ {
+ "id": 4775,
+ "name": "Malampa",
+ "country_id": 237,
+ "country_code": "VU",
+ "country_name": "Vanuatu",
+ "state_code": "MAP",
+ "type": null,
+ "latitude": "-16.40114050",
+ "longitude": "167.60778650"
+ },
+ {
+ "id": 4773,
+ "name": "Penama",
+ "country_id": 237,
+ "country_code": "VU",
+ "country_name": "Vanuatu",
+ "state_code": "PAM",
+ "type": null,
+ "latitude": "-15.37957580",
+ "longitude": "167.90531820"
+ },
+ {
+ "id": 4776,
+ "name": "Sanma",
+ "country_id": 237,
+ "country_code": "VU",
+ "country_name": "Vanuatu",
+ "state_code": "SAM",
+ "type": null,
+ "latitude": "-15.48400170",
+ "longitude": "166.91820970"
+ },
+ {
+ "id": 4774,
+ "name": "Shefa",
+ "country_id": 237,
+ "country_code": "VU",
+ "country_name": "Vanuatu",
+ "state_code": "SEE",
+ "type": null,
+ "latitude": "32.80576500",
+ "longitude": "35.16997100"
+ },
+ {
+ "id": 4777,
+ "name": "Tafea",
+ "country_id": 237,
+ "country_code": "VU",
+ "country_name": "Vanuatu",
+ "state_code": "TAE",
+ "type": null,
+ "latitude": "-18.72378270",
+ "longitude": "169.06450560"
+ },
+ {
+ "id": 4772,
+ "name": "Torba",
+ "country_id": 237,
+ "country_code": "VU",
+ "country_name": "Vanuatu",
+ "state_code": "TOB",
+ "type": null,
+ "latitude": "37.07653000",
+ "longitude": "27.45657300"
+ },
+ {
+ "id": 2044,
+ "name": "Amazonas",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "Z",
+ "type": "state",
+ "latitude": "-3.41684270",
+ "longitude": "-65.85606460"
+ },
+ {
+ "id": 2050,
+ "name": "Anzoรกtegui",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "B",
+ "type": "state",
+ "latitude": "8.59130730",
+ "longitude": "-63.95861110"
+ },
+ {
+ "id": 4856,
+ "name": "Apure",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "C",
+ "type": "state",
+ "latitude": "6.92694830",
+ "longitude": "-68.52471490"
+ },
+ {
+ "id": 2047,
+ "name": "Aragua",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "D",
+ "type": "state",
+ "latitude": "10.06357580",
+ "longitude": "-67.28478750"
+ },
+ {
+ "id": 2049,
+ "name": "Barinas",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "E",
+ "type": "state",
+ "latitude": "8.62314980",
+ "longitude": "-70.23710450"
+ },
+ {
+ "id": 2039,
+ "name": "Bolรญvar",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "F",
+ "type": "state",
+ "latitude": "37.61448380",
+ "longitude": "-93.41047490"
+ },
+ {
+ "id": 2040,
+ "name": "Carabobo",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "G",
+ "type": "state",
+ "latitude": "10.11764330",
+ "longitude": "-68.04775090"
+ },
+ {
+ "id": 2034,
+ "name": "Cojedes",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "H",
+ "type": "state",
+ "latitude": "9.38166820",
+ "longitude": "-68.33392750"
+ },
+ {
+ "id": 2051,
+ "name": "Delta Amacuro",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "Y",
+ "type": "state",
+ "latitude": "8.84993070",
+ "longitude": "-61.14031960"
+ },
+ {
+ "id": 4855,
+ "name": "Distrito Capital",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "A",
+ "type": "capital district",
+ "latitude": "41.26148460",
+ "longitude": "-95.93108070"
+ },
+ {
+ "id": 2035,
+ "name": "Falcรณn",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "I",
+ "type": "state",
+ "latitude": "11.18106740",
+ "longitude": "-69.85974060"
+ },
+ {
+ "id": 2046,
+ "name": "Federal Dependencies of Venezuela",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "W",
+ "type": "federal dependency",
+ "latitude": "10.93770530",
+ "longitude": "-65.35695730"
+ },
+ {
+ "id": 2045,
+ "name": "Guรกrico",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "J",
+ "type": "state",
+ "latitude": "8.74893090",
+ "longitude": "-66.23671720"
+ },
+ {
+ "id": 2055,
+ "name": "La Guaira",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "X",
+ "type": "state",
+ "latitude": "29.30522680",
+ "longitude": "-94.79138540"
+ },
+ {
+ "id": 2038,
+ "name": "Lara",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "K",
+ "type": "state",
+ "latitude": "33.98221650",
+ "longitude": "-118.13227470"
+ },
+ {
+ "id": 2053,
+ "name": "Mรฉrida",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "L",
+ "type": "state",
+ "latitude": "20.96737020",
+ "longitude": "-89.59258570"
+ },
+ {
+ "id": 2037,
+ "name": "Miranda",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "M",
+ "type": "state",
+ "latitude": "42.35193830",
+ "longitude": "-71.52907660"
+ },
+ {
+ "id": 2054,
+ "name": "Monagas",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "N",
+ "type": "state",
+ "latitude": "9.32416520",
+ "longitude": "-63.01475780"
+ },
+ {
+ "id": 2052,
+ "name": "Nueva Esparta",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "O",
+ "type": "state",
+ "latitude": "10.99707230",
+ "longitude": "-63.91132960"
+ },
+ {
+ "id": 2036,
+ "name": "Portuguesa",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "P",
+ "type": "state",
+ "latitude": "9.09439990",
+ "longitude": "-69.09702300"
+ },
+ {
+ "id": 2056,
+ "name": "Sucre",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "R",
+ "type": "state",
+ "latitude": "-19.03534500",
+ "longitude": "-65.25921280"
+ },
+ {
+ "id": 2048,
+ "name": "Tรกchira",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "S",
+ "type": "state",
+ "latitude": "7.91370010",
+ "longitude": "-72.14161320"
+ },
+ {
+ "id": 2043,
+ "name": "Trujillo",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "T",
+ "type": "state",
+ "latitude": "36.67343430",
+ "longitude": "-121.62875880"
+ },
+ {
+ "id": 2041,
+ "name": "Yaracuy",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "U",
+ "type": "state",
+ "latitude": "10.33938900",
+ "longitude": "-68.81088490"
+ },
+ {
+ "id": 2042,
+ "name": "Zulia",
+ "country_id": 239,
+ "country_code": "VE",
+ "country_name": "Venezuela",
+ "state_code": "V",
+ "type": "state",
+ "latitude": "10.29102370",
+ "longitude": "-72.14161320"
+ },
+ {
+ "id": 3794,
+ "name": "An Giang",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "44",
+ "type": null,
+ "latitude": "10.52158360",
+ "longitude": "105.12589550"
+ },
+ {
+ "id": 3770,
+ "name": "Bร Rแปa-Vลฉng Tร u",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "43",
+ "type": null,
+ "latitude": "10.54173970",
+ "longitude": "107.24299760"
+ },
+ {
+ "id": 3815,
+ "name": "Bแบฏc Giang",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "54",
+ "type": null,
+ "latitude": "21.28199210",
+ "longitude": "106.19747690"
+ },
+ {
+ "id": 3822,
+ "name": "Bแบฏc Kแบกn",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "53",
+ "type": null,
+ "latitude": "22.30329230",
+ "longitude": "105.87600400"
+ },
+ {
+ "id": 3804,
+ "name": "Bแบกc Liรชu",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "55",
+ "type": null,
+ "latitude": "9.29400270",
+ "longitude": "105.72156630"
+ },
+ {
+ "id": 3791,
+ "name": "Bแบฏc Ninh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "56",
+ "type": null,
+ "latitude": "21.12144400",
+ "longitude": "106.11105010"
+ },
+ {
+ "id": 3796,
+ "name": "Bแบฟn Tre",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "50",
+ "type": null,
+ "latitude": "10.24335560",
+ "longitude": "106.37555100"
+ },
+ {
+ "id": 3785,
+ "name": "Bรฌnh Dฦฐฦกng",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "57",
+ "type": null,
+ "latitude": "11.32540240",
+ "longitude": "106.47701700"
+ },
+ {
+ "id": 3830,
+ "name": "Bรฌnh ฤแปnh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "31",
+ "type": null,
+ "latitude": "14.16653240",
+ "longitude": "108.90268300"
+ },
+ {
+ "id": 3797,
+ "name": "Bรฌnh Phฦฐแปc",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "58",
+ "type": null,
+ "latitude": "11.75118940",
+ "longitude": "106.72346390"
+ },
+ {
+ "id": 3787,
+ "name": "Bรฌnh Thuแบญn",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "40",
+ "type": null,
+ "latitude": "11.09037030",
+ "longitude": "108.07207810"
+ },
+ {
+ "id": 3778,
+ "name": "Cร Mau",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "59",
+ "type": null,
+ "latitude": "9.15267280",
+ "longitude": "105.19607950"
+ },
+ {
+ "id": 4925,
+ "name": "Cแบงn Thฦก",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "CT",
+ "type": null,
+ "latitude": "10.03418510",
+ "longitude": "105.72255070"
+ },
+ {
+ "id": 3782,
+ "name": "Cao Bแบฑng",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "04",
+ "type": null,
+ "latitude": "22.63568900",
+ "longitude": "106.25221430"
+ },
+ {
+ "id": 3806,
+ "name": "ฤร Nแบตng",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "DN",
+ "type": null,
+ "latitude": "16.05440680",
+ "longitude": "108.20216670"
+ },
+ {
+ "id": 3829,
+ "name": "ฤแบฏk Lแบฏk",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "33",
+ "type": null,
+ "latitude": "12.71001160",
+ "longitude": "108.23775190"
+ },
+ {
+ "id": 3823,
+ "name": "ฤแบฏk Nรดng",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "72",
+ "type": null,
+ "latitude": "12.26464760",
+ "longitude": "107.60980600"
+ },
+ {
+ "id": 3773,
+ "name": "ฤiแปn Biรชn",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "71",
+ "type": null,
+ "latitude": "21.80423090",
+ "longitude": "103.10765250"
+ },
+ {
+ "id": 3821,
+ "name": "ฤแปng Nai",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "39",
+ "type": null,
+ "latitude": "11.06863050",
+ "longitude": "107.16759760"
+ },
+ {
+ "id": 3769,
+ "name": "ฤแปng Thรกp",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "45",
+ "type": null,
+ "latitude": "10.49379890",
+ "longitude": "105.68817880"
+ },
+ {
+ "id": 3813,
+ "name": "Gia Lai",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "30",
+ "type": null,
+ "latitude": "13.80789430",
+ "longitude": "108.10937500"
+ },
+ {
+ "id": 3779,
+ "name": "Hร Giang",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "03",
+ "type": null,
+ "latitude": "22.80255880",
+ "longitude": "104.97844940"
+ },
+ {
+ "id": 3802,
+ "name": "Hร Nam",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "63",
+ "type": null,
+ "latitude": "20.58351960",
+ "longitude": "105.92299000"
+ },
+ {
+ "id": 3810,
+ "name": "Hร Nแปi",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "HN",
+ "type": null,
+ "latitude": "21.02776440",
+ "longitude": "105.83415980"
+ },
+ {
+ "id": 3816,
+ "name": "Hร Tฤฉnh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "23",
+ "type": null,
+ "latitude": "18.35595370",
+ "longitude": "105.88774940"
+ },
+ {
+ "id": 3827,
+ "name": "Hแบฃi Dฦฐฦกng",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "61",
+ "type": null,
+ "latitude": "20.93734130",
+ "longitude": "106.31455420"
+ },
+ {
+ "id": 3783,
+ "name": "Hแบฃi Phรฒng",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "HP",
+ "type": null,
+ "latitude": "20.84491150",
+ "longitude": "106.68808410"
+ },
+ {
+ "id": 3777,
+ "name": "Hแบญu Giang",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "73",
+ "type": null,
+ "latitude": "9.75789800",
+ "longitude": "105.64125270"
+ },
+ {
+ "id": 3811,
+ "name": "Hแป Chรญ Minh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "SG",
+ "type": null,
+ "latitude": "10.82309890",
+ "longitude": "106.62966380"
+ },
+ {
+ "id": 3799,
+ "name": "Hรฒa Bรฌnh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "14",
+ "type": null,
+ "latitude": "20.68612650",
+ "longitude": "105.31311850"
+ },
+ {
+ "id": 3768,
+ "name": "Hฦฐng Yรชn",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "66",
+ "type": null,
+ "latitude": "20.85257110",
+ "longitude": "106.01699710"
+ },
+ {
+ "id": 3793,
+ "name": "Khรกnh Hรฒa",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "34",
+ "type": null,
+ "latitude": "12.25850980",
+ "longitude": "109.05260760"
+ },
+ {
+ "id": 3800,
+ "name": "Kiรชn Giang",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "47",
+ "type": null,
+ "latitude": "9.82495870",
+ "longitude": "105.12589550"
+ },
+ {
+ "id": 3772,
+ "name": "Kon Tum",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "28",
+ "type": null,
+ "latitude": "14.34974030",
+ "longitude": "108.00046060"
+ },
+ {
+ "id": 3825,
+ "name": "Lai Chรขu",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "01",
+ "type": null,
+ "latitude": "22.38622270",
+ "longitude": "103.47026310"
+ },
+ {
+ "id": 3818,
+ "name": "Lรขm ฤแปng",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "35",
+ "type": null,
+ "latitude": "11.57527910",
+ "longitude": "108.14286690"
+ },
+ {
+ "id": 3792,
+ "name": "Lแบกng Sฦกn",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "09",
+ "type": null,
+ "latitude": "21.85370800",
+ "longitude": "106.76151900"
+ },
+ {
+ "id": 3817,
+ "name": "Lร o Cai",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "02",
+ "type": null,
+ "latitude": "22.48094310",
+ "longitude": "103.97549590"
+ },
+ {
+ "id": 3808,
+ "name": "Long An",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "41",
+ "type": null,
+ "latitude": "10.56071680",
+ "longitude": "106.64976230"
+ },
+ {
+ "id": 3789,
+ "name": "Nam ฤแปnh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "67",
+ "type": null,
+ "latitude": "20.43882250",
+ "longitude": "106.16210530"
+ },
+ {
+ "id": 3780,
+ "name": "Nghแป An",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "22",
+ "type": null,
+ "latitude": "19.23424890",
+ "longitude": "104.92003650"
+ },
+ {
+ "id": 3786,
+ "name": "Ninh Bรฌnh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "18",
+ "type": null,
+ "latitude": "20.25061490",
+ "longitude": "105.97445360"
+ },
+ {
+ "id": 3788,
+ "name": "Ninh Thuแบญn",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "36",
+ "type": null,
+ "latitude": "11.67387670",
+ "longitude": "108.86295720"
+ },
+ {
+ "id": 3801,
+ "name": "Phรบ Thแป",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "68",
+ "type": null,
+ "latitude": "21.26844300",
+ "longitude": "105.20455730"
+ },
+ {
+ "id": 3824,
+ "name": "Phรบ Yรชn",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "32",
+ "type": null,
+ "latitude": "13.08818610",
+ "longitude": "109.09287640"
+ },
+ {
+ "id": 3809,
+ "name": "Quแบฃng Bรฌnh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "24",
+ "type": null,
+ "latitude": "17.61027150",
+ "longitude": "106.34874740"
+ },
+ {
+ "id": 3776,
+ "name": "Quแบฃng Nam",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "27",
+ "type": null,
+ "latitude": "15.53935380",
+ "longitude": "108.01910200"
+ },
+ {
+ "id": 3828,
+ "name": "Quแบฃng Ngรฃi",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "29",
+ "type": null,
+ "latitude": "15.12138730",
+ "longitude": "108.80441450"
+ },
+ {
+ "id": 3814,
+ "name": "Quแบฃng Ninh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "13",
+ "type": null,
+ "latitude": "21.00638200",
+ "longitude": "107.29251440"
+ },
+ {
+ "id": 3803,
+ "name": "Quแบฃng Trแป",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "25",
+ "type": null,
+ "latitude": "16.74030740",
+ "longitude": "107.18546790"
+ },
+ {
+ "id": 3819,
+ "name": "Sรณc Trฤng",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "52",
+ "type": null,
+ "latitude": "9.60252100",
+ "longitude": "105.97390490"
+ },
+ {
+ "id": 3812,
+ "name": "Sฦกn La",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "05",
+ "type": null,
+ "latitude": "21.10222840",
+ "longitude": "103.72891670"
+ },
+ {
+ "id": 3826,
+ "name": "Tรขy Ninh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "37",
+ "type": null,
+ "latitude": "11.33515540",
+ "longitude": "106.10988540"
+ },
+ {
+ "id": 3775,
+ "name": "Thรกi Bรฌnh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "20",
+ "type": null,
+ "latitude": "20.44634710",
+ "longitude": "106.33658280"
+ },
+ {
+ "id": 3807,
+ "name": "Thรกi Nguyรชn",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "69",
+ "type": null,
+ "latitude": "21.56715590",
+ "longitude": "105.82520380"
+ },
+ {
+ "id": 3771,
+ "name": "Thanh Hรณa",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "21",
+ "type": null,
+ "latitude": "19.80669200",
+ "longitude": "105.78518160"
+ },
+ {
+ "id": 3798,
+ "name": "Thแปซa Thiรชn-Huแบฟ",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "26",
+ "type": null,
+ "latitude": "16.46739700",
+ "longitude": "107.59053260"
+ },
+ {
+ "id": 3781,
+ "name": "Tiแปn Giang",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "46",
+ "type": null,
+ "latitude": "10.44933240",
+ "longitude": "106.34205040"
+ },
+ {
+ "id": 3805,
+ "name": "Trร Vinh",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "51",
+ "type": null,
+ "latitude": "9.81274100",
+ "longitude": "106.29929120"
+ },
+ {
+ "id": 3795,
+ "name": "Tuyรชn Quang",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "07",
+ "type": null,
+ "latitude": "21.77672460",
+ "longitude": "105.22801960"
+ },
+ {
+ "id": 3790,
+ "name": "Vฤฉnh Long",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "49",
+ "type": null,
+ "latitude": "10.23957400",
+ "longitude": "105.95719280"
+ },
+ {
+ "id": 3774,
+ "name": "Vฤฉnh Phรบc",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "70",
+ "type": null,
+ "latitude": "21.36088050",
+ "longitude": "105.54743730"
+ },
+ {
+ "id": 3784,
+ "name": "Yรชn Bรกi",
+ "country_id": 240,
+ "country_code": "VN",
+ "country_name": "Vietnam",
+ "state_code": "06",
+ "type": null,
+ "latitude": "21.71676890",
+ "longitude": "104.89858780"
+ },
+ {
+ "id": 5074,
+ "name": "Saint Croix",
+ "country_id": 242,
+ "country_code": "VI",
+ "country_name": "Virgin Islands (US)",
+ "state_code": "SC",
+ "type": "district",
+ "latitude": "17.72935200",
+ "longitude": "-64.73437050"
+ },
+ {
+ "id": 5073,
+ "name": "Saint John",
+ "country_id": 242,
+ "country_code": "VI",
+ "country_name": "Virgin Islands (US)",
+ "state_code": "SJ",
+ "type": "district",
+ "latitude": "18.33561690",
+ "longitude": "-64.80028000"
+ },
+ {
+ "id": 5072,
+ "name": "Saint Thomas",
+ "country_id": 242,
+ "country_code": "VI",
+ "country_name": "Virgin Islands (US)",
+ "state_code": "ST",
+ "type": "district",
+ "latitude": "18.34284590",
+ "longitude": "-65.07701800"
+ },
+ {
+ "id": 1242,
+ "name": "'Adan",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "AD",
+ "type": null,
+ "latitude": "12.82574810",
+ "longitude": "44.79438040"
+ },
+ {
+ "id": 1250,
+ "name": "'Amran",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "AM",
+ "type": null,
+ "latitude": "16.25692140",
+ "longitude": "43.94367880"
+ },
+ {
+ "id": 1237,
+ "name": "Abyan",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "AB",
+ "type": null,
+ "latitude": "13.63434130",
+ "longitude": "46.05632120"
+ },
+ {
+ "id": 1240,
+ "name": "Al Bayda'",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "BA",
+ "type": null,
+ "latitude": "14.35886620",
+ "longitude": "45.44980650"
+ },
+ {
+ "id": 1241,
+ "name": "Al Hudaydah",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "HU",
+ "type": null,
+ "latitude": "15.30530720",
+ "longitude": "43.01948970"
+ },
+ {
+ "id": 1243,
+ "name": "Al Jawf",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "JA",
+ "type": null,
+ "latitude": "16.79018190",
+ "longitude": "45.29938620"
+ },
+ {
+ "id": 1251,
+ "name": "Al Mahrah",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "MR",
+ "type": null,
+ "latitude": "16.52384230",
+ "longitude": "51.68342750"
+ },
+ {
+ "id": 1235,
+ "name": "Al Mahwit",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "MW",
+ "type": null,
+ "latitude": "15.39632290",
+ "longitude": "43.56069460"
+ },
+ {
+ "id": 1232,
+ "name": "Amanat Al Asimah",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "SA",
+ "type": null,
+ "latitude": "15.36944510",
+ "longitude": "44.19100660"
+ },
+ {
+ "id": 1246,
+ "name": "Dhamar",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "DH",
+ "type": null,
+ "latitude": "14.71953440",
+ "longitude": "44.24790150"
+ },
+ {
+ "id": 1238,
+ "name": "Hadhramaut",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "HD",
+ "type": null,
+ "latitude": "16.93041350",
+ "longitude": "49.36531490"
+ },
+ {
+ "id": 1244,
+ "name": "Hajjah",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "HJ",
+ "type": null,
+ "latitude": "16.11806310",
+ "longitude": "43.32946600"
+ },
+ {
+ "id": 1233,
+ "name": "Ibb",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "IB",
+ "type": null,
+ "latitude": "14.14157170",
+ "longitude": "44.24790150"
+ },
+ {
+ "id": 1245,
+ "name": "Lahij",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "LA",
+ "type": null,
+ "latitude": "13.14895880",
+ "longitude": "44.85054950"
+ },
+ {
+ "id": 1234,
+ "name": "Ma'rib",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "15.51588800",
+ "longitude": "45.44980650"
+ },
+ {
+ "id": 1248,
+ "name": "Raymah",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "RA",
+ "type": null,
+ "latitude": "14.62776820",
+ "longitude": "43.71424840"
+ },
+ {
+ "id": 1249,
+ "name": "Saada",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "SD",
+ "type": null,
+ "latitude": "16.84765280",
+ "longitude": "43.94367880"
+ },
+ {
+ "id": 1236,
+ "name": "Sana'a",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "SN",
+ "type": null,
+ "latitude": "15.31689130",
+ "longitude": "44.47480180"
+ },
+ {
+ "id": 1247,
+ "name": "Shabwah",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "SH",
+ "type": null,
+ "latitude": "14.75463030",
+ "longitude": "46.51626200"
+ },
+ {
+ "id": 1239,
+ "name": "Socotra",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "SU",
+ "type": null,
+ "latitude": "12.46342050",
+ "longitude": "53.82373850"
+ },
+ {
+ "id": 1231,
+ "name": "Ta'izz",
+ "country_id": 245,
+ "country_code": "YE",
+ "country_name": "Yemen",
+ "state_code": "TA",
+ "type": null,
+ "latitude": "13.57758860",
+ "longitude": "44.01779890"
+ },
+ {
+ "id": 1986,
+ "name": "Central Province",
+ "country_id": 246,
+ "country_code": "ZM",
+ "country_name": "Zambia",
+ "state_code": "02",
+ "type": null,
+ "latitude": "7.25649960",
+ "longitude": "80.72144170"
+ },
+ {
+ "id": 1984,
+ "name": "Copperbelt Province",
+ "country_id": 246,
+ "country_code": "ZM",
+ "country_name": "Zambia",
+ "state_code": "08",
+ "type": null,
+ "latitude": "-13.05700730",
+ "longitude": "27.54958460"
+ },
+ {
+ "id": 1991,
+ "name": "Eastern Province",
+ "country_id": 246,
+ "country_code": "ZM",
+ "country_name": "Zambia",
+ "state_code": "03",
+ "type": null,
+ "latitude": "23.16696880",
+ "longitude": "49.36531490"
+ },
+ {
+ "id": 1987,
+ "name": "Luapula Province",
+ "country_id": 246,
+ "country_code": "ZM",
+ "country_name": "Zambia",
+ "state_code": "04",
+ "type": null,
+ "latitude": "-11.56483100",
+ "longitude": "29.04599270"
+ },
+ {
+ "id": 1988,
+ "name": "Lusaka Province",
+ "country_id": 246,
+ "country_code": "ZM",
+ "country_name": "Zambia",
+ "state_code": "09",
+ "type": null,
+ "latitude": "-15.36571290",
+ "longitude": "29.23207840"
+ },
+ {
+ "id": 1989,
+ "name": "Muchinga Province",
+ "country_id": 246,
+ "country_code": "ZM",
+ "country_name": "Zambia",
+ "state_code": "10",
+ "type": null,
+ "latitude": "-15.38219300",
+ "longitude": "28.26158000"
+ },
+ {
+ "id": 1982,
+ "name": "Northern Province",
+ "country_id": 246,
+ "country_code": "ZM",
+ "country_name": "Zambia",
+ "state_code": "05",
+ "type": null,
+ "latitude": "8.88550270",
+ "longitude": "80.27673270"
+ },
+ {
+ "id": 1985,
+ "name": "Northwestern Province",
+ "country_id": 246,
+ "country_code": "ZM",
+ "country_name": "Zambia",
+ "state_code": "06",
+ "type": null,
+ "latitude": "-13.00502580",
+ "longitude": "24.90422080"
+ },
+ {
+ "id": 1990,
+ "name": "Southern Province",
+ "country_id": 246,
+ "country_code": "ZM",
+ "country_name": "Zambia",
+ "state_code": "07",
+ "type": null,
+ "latitude": "6.23737500",
+ "longitude": "80.54384500"
+ },
+ {
+ "id": 1983,
+ "name": "Western Province",
+ "country_id": 246,
+ "country_code": "ZM",
+ "country_name": "Zambia",
+ "state_code": "01",
+ "type": null,
+ "latitude": "6.90160860",
+ "longitude": "80.00877460"
+ },
+ {
+ "id": 1956,
+ "name": "Bulawayo Province",
+ "country_id": 247,
+ "country_code": "ZW",
+ "country_name": "Zimbabwe",
+ "state_code": "BU",
+ "type": null,
+ "latitude": "-20.14895050",
+ "longitude": "28.53310380"
+ },
+ {
+ "id": 1958,
+ "name": "Harare Province",
+ "country_id": 247,
+ "country_code": "ZW",
+ "country_name": "Zimbabwe",
+ "state_code": "HA",
+ "type": null,
+ "latitude": "-17.82162880",
+ "longitude": "31.04922590"
+ },
+ {
+ "id": 1959,
+ "name": "Manicaland",
+ "country_id": 247,
+ "country_code": "ZW",
+ "country_name": "Zimbabwe",
+ "state_code": "MA",
+ "type": null,
+ "latitude": "-18.92163860",
+ "longitude": "32.17460500"
+ },
+ {
+ "id": 1955,
+ "name": "Mashonaland Central Province",
+ "country_id": 247,
+ "country_code": "ZW",
+ "country_name": "Zimbabwe",
+ "state_code": "MC",
+ "type": null,
+ "latitude": "-16.76442950",
+ "longitude": "31.07937050"
+ },
+ {
+ "id": 1951,
+ "name": "Mashonaland East Province",
+ "country_id": 247,
+ "country_code": "ZW",
+ "country_name": "Zimbabwe",
+ "state_code": "ME",
+ "type": null,
+ "latitude": "-18.58716420",
+ "longitude": "31.26263660"
+ },
+ {
+ "id": 1953,
+ "name": "Mashonaland West Province",
+ "country_id": 247,
+ "country_code": "ZW",
+ "country_name": "Zimbabwe",
+ "state_code": "MW",
+ "type": null,
+ "latitude": "-17.48510290",
+ "longitude": "29.78892480"
+ },
+ {
+ "id": 1960,
+ "name": "Masvingo Province",
+ "country_id": 247,
+ "country_code": "ZW",
+ "country_name": "Zimbabwe",
+ "state_code": "MV",
+ "type": null,
+ "latitude": "-20.62415090",
+ "longitude": "31.26263660"
+ },
+ {
+ "id": 1954,
+ "name": "Matabeleland North Province",
+ "country_id": 247,
+ "country_code": "ZW",
+ "country_name": "Zimbabwe",
+ "state_code": "MN",
+ "type": null,
+ "latitude": "-18.53315660",
+ "longitude": "27.54958460"
+ },
+ {
+ "id": 1952,
+ "name": "Matabeleland South Province",
+ "country_id": 247,
+ "country_code": "ZW",
+ "country_name": "Zimbabwe",
+ "state_code": "MS",
+ "type": null,
+ "latitude": "-21.05233700",
+ "longitude": "29.04599270"
+ },
+ {
+ "id": 1957,
+ "name": "Midlands Province",
+ "country_id": 247,
+ "country_code": "ZW",
+ "country_name": "Zimbabwe",
+ "state_code": "MI",
+ "type": null,
+ "latitude": "-19.05520090",
+ "longitude": "29.60354950"
+ }
+]
diff --git a/app/deploy.php b/app/deploy.php
index 3d870d8..07f134a 100644
--- a/app/deploy.php
+++ b/app/deploy.php
@@ -44,20 +44,41 @@ function getDefaultEnv(mixed $variable, mixed $default = null)
before('deploy', 'slack:notify');
+task('artisan:db:wipe', function () {
+ cd('{{release_or_current_path}}');
+ run('php artisan db:wipe --force');
+});
+
task('artisan:cycle:migrate', function () {
cd('{{release_or_current_path}}');
- run('php artisan cycle:migrate');
+ run('php artisan cycle:migrate --force');
});
+/*
+ * This task is needed because of the following issue:
+ * When adding new entity to the project, the repository injector
+ * will not be able to find the entity role for the repository,
+ * because of existing cache.
+ */
+task('cache:clear', function () {
+ cd('{{current_path}}');
+ run('php artisan cache:clear');
+});
+
+before('deploy', 'cache:clear');
+
task('deploy', [
'deploy:prepare',
'deploy:vendors',
'artisan:storage:link',
+ 'artisan:cache:clear',
'artisan:config:cache',
'artisan:route:cache',
'artisan:view:cache',
'artisan:event:cache',
+ 'artisan:db:wipe',
'artisan:cycle:migrate',
+ 'artisan:db:seed',
'deploy:publish',
]);
diff --git a/app/deptrac.yaml b/app/deptrac.yaml
new file mode 100644
index 0000000..1f0ab51
--- /dev/null
+++ b/app/deptrac.yaml
@@ -0,0 +1,66 @@
+deptrac:
+ paths:
+ - src/
+ - database/
+ - tests/
+
+ exclude_files:
+ - '#.*test.*#'
+
+ layers:
+ - name: Domain
+ collectors:
+ - type: directory
+ regex: src/Domain/.*
+
+ - name: Application
+ collectors:
+ - type: directory
+ regex: src/Application/.*
+
+ - name: Bridge
+ collectors:
+ - type: directory
+ regex: src/Bridge/.*
+
+ - name: Infrastructure
+ collectors:
+ - type: directory
+ regex: src/Infrastructure/.*
+
+ - name: DatabaseSeeders
+ collectors:
+ - type: directory
+ regex: database/seeders/.*
+
+ - name: DatabaseFactories
+ collectors:
+ - type: directory
+ regex: database/factories/.*
+
+ - name: Tests
+ collectors:
+ - type: directory
+ regex: tests/.*
+
+ ruleset:
+ Domain: ~
+ Application:
+ - Domain
+ Bridge:
+ - Application
+ - Domain
+ - Infrastructure
+ Infrastructure:
+ - Domain
+ DatabaseSeeders:
+ - DatabaseFactories
+ DatabaseFactories:
+ - Domain
+ Tests:
+ - Domain
+ - Application
+ - Bridge
+ - Infrastructure
+ - DatabaseSeeders
+ - DatabaseFactories
diff --git a/app/phpunit.xml.dist b/app/phpunit.xml.dist
index 8174e95..338cd6b 100644
--- a/app/phpunit.xml.dist
+++ b/app/phpunit.xml.dist
@@ -5,11 +5,17 @@
colors="true"
>
-
- ./tests/Unit
+
+ ./tests/Application
-
- ./tests/Feature
+
+ ./tests/Bridge
+
+
+ ./tests/Domain
+
+
+ ./tests/Infrastructure
@@ -21,11 +27,11 @@
-
-
+
+
diff --git a/app/public/admin-openapi.json b/app/public/admin-openapi.json
new file mode 100644
index 0000000..21a40bd
--- /dev/null
+++ b/app/public/admin-openapi.json
@@ -0,0 +1,1026 @@
+{
+ "openapi": "3.0.0",
+ "info": {
+ "title": "WOD Operations API",
+ "description": "WOD Operations Ecommerce API",
+ "contact": {
+ "name": "John Doe",
+ "email": "support@wayof.dev"
+ },
+ "version": "1.0.0"
+ },
+ "paths": {
+ "/api/admin/categories": {
+ "get": {
+ "tags": [
+ "categories"
+ ],
+ "summary": "Get list of categories.",
+ "description": "Get list of categories.",
+ "operationId": "f3673971d0f4ddb16b98f8d0b9a53a4d",
+ "responses": {
+ "200": {
+ "description": "OK"
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "categories"
+ ],
+ "summary": "Store new product",
+ "description": "This endpoint stores new product into database storage.",
+ "operationId": "b9215817b901d3496022eef065a49b7e",
+ "requestBody": {
+ "description": "Product data",
+ "required": true,
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/StoreCategoryDto"
+ }
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "description": "Created",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewCategoryDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ },
+ "422": {
+ "description": "Unprocessable Entity"
+ }
+ }
+ }
+ },
+ "/api/admin/categories/{category_id}": {
+ "get": {
+ "tags": [
+ "categories"
+ ],
+ "summary": "Get single category.",
+ "description": "This endpoint returns a single category.",
+ "operationId": "f4e0721222c05878c6120897d60f9518",
+ "parameters": [
+ {
+ "name": "category_id",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewCategoryDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ },
+ "put": {
+ "tags": [
+ "categories"
+ ],
+ "summary": "Update category contents.",
+ "description": "This endpoint updates fields of category.",
+ "operationId": "7caf79913d8508be8fba19d9daadc57b",
+ "parameters": [
+ {
+ "name": "category_id",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "requestBody": {
+ "description": "Category data",
+ "required": true,
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/UpdateCategoryDto"
+ }
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "description": "Created",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewCategoryDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ },
+ "422": {
+ "description": "Unprocessable Entity"
+ }
+ }
+ }
+ },
+ "/api/admin/clients": {
+ "get": {
+ "tags": [
+ "clients"
+ ],
+ "summary": "Get list of clients.",
+ "description": "This endpoint returns a list of clients in private collection.",
+ "operationId": "8a31be582d33fceb7c432e1ae1820ef2",
+ "responses": {
+ "200": {
+ "description": "OK"
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/admin/clients/{client_id}": {
+ "get": {
+ "tags": [
+ "clients"
+ ],
+ "summary": "Get single client.",
+ "description": "This endpoint returns a single client.",
+ "operationId": "1b5ce09575df524e07604a38a8806a36",
+ "parameters": [
+ {
+ "name": "client_id",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewClientDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/admin/network": {
+ "get": {
+ "tags": [
+ "network"
+ ],
+ "summary": "Network status.",
+ "description": "Get network status and requested by response.",
+ "operationId": "15dfc4a69d9b4fc5768179e34901c352",
+ "responses": {
+ "200": {
+ "description": "OK"
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/admin/orders": {
+ "get": {
+ "tags": [
+ "orders"
+ ],
+ "summary": "Get list of orders.",
+ "description": "This endpoint returns a list of orders in private collection.",
+ "operationId": "6c9329c781d3ccd8bffbf337cdf65fed",
+ "responses": {
+ "200": {
+ "description": "OK"
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/admin/orders/{order_id}": {
+ "get": {
+ "tags": [
+ "orders"
+ ],
+ "summary": "Get single order.",
+ "description": "This endpoint returns a single order.",
+ "operationId": "32fc90837d7679c263e6ce7c83dbaf7a",
+ "parameters": [
+ {
+ "name": "order_id",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewOrderDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/admin/products": {
+ "get": {
+ "tags": [
+ "products"
+ ],
+ "summary": "Get list of products.",
+ "description": "This endpoint returns a list of products in private collection.",
+ "operationId": "137414675086ac4ba5696a2eff046f4f",
+ "responses": {
+ "200": {
+ "description": "OK"
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ },
+ "post": {
+ "tags": [
+ "products"
+ ],
+ "summary": "Store new product",
+ "description": "This endpoint stores new product into database storage.",
+ "operationId": "52207caf8cfb2f922b8f731529d396e1",
+ "requestBody": {
+ "description": "Product data",
+ "required": true,
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/StoreProductDto"
+ }
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "description": "Created",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewProductDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ },
+ "422": {
+ "description": "Unprocessable Entity"
+ }
+ }
+ }
+ },
+ "/api/admin/products/{product_id}": {
+ "get": {
+ "tags": [
+ "products"
+ ],
+ "summary": "Get single product.",
+ "description": "This endpoint returns a single product.",
+ "operationId": "21c497082e6c82c6ec1067ff53819243",
+ "parameters": [
+ {
+ "name": "product_id",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewProductDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ },
+ "put": {
+ "tags": [
+ "products"
+ ],
+ "summary": "Update category contents.",
+ "description": "This endpoint updates fields of category.",
+ "operationId": "8c3c094bf07ec4186f7c651abd646fe6",
+ "parameters": [
+ {
+ "name": "product_id",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "requestBody": {
+ "description": "Product data",
+ "required": true,
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/UpdateProductDto"
+ }
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "description": "Created",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewProductDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ },
+ "422": {
+ "description": "Unprocessable Entity"
+ }
+ }
+ }
+ }
+ },
+ "components": {
+ "schemas": {
+ "FootprintDto": {
+ "title": "Footprint",
+ "description": "Footprint data.",
+ "properties": {
+ "id": {
+ "type": "string",
+ "format": "uuid"
+ },
+ "party": {
+ "type": "string",
+ "format": "string",
+ "example": "user"
+ },
+ "realm": {
+ "type": "string",
+ "format": "string",
+ "example": "front-office"
+ }
+ },
+ "type": "object"
+ },
+ "SignatureDto": {
+ "title": "Signature",
+ "description": "Signature data.",
+ "properties": {
+ "at": {
+ "type": "string",
+ "format": "date-time",
+ "nullable": true
+ },
+ "by": {
+ "schema": "Application\\Auth\\Dto\\FootprintDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/FootprintDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "StoreCartDto": {
+ "title": "Cart",
+ "description": "Cart data for storing new category."
+ },
+ "ViewCartDto": {
+ "title": "Cart",
+ "description": "Cart response data.",
+ "properties": {
+ "incrementalId": {
+ "type": "integer",
+ "format": "int64",
+ "example": 1
+ },
+ "id": {
+ "type": "string",
+ "format": "uuid"
+ },
+ "created": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "updated": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "deleted": {
+ "schema": "Application\\Auth\\Dto\\SignatureDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/SignatureDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "StoreCategoryDto": {
+ "title": "Category",
+ "description": "Category data for storing new category.",
+ "properties": {
+ "name": {
+ "description": "Name of the product.",
+ "type": "string",
+ "example": "Awesome Jacket"
+ },
+ "gender": {
+ "description": "Gender of the category.",
+ "type": "string",
+ "example": "male"
+ }
+ },
+ "type": "object"
+ },
+ "UpdateCategoryDto": {
+ "title": "Category",
+ "description": "Category data for updating category.",
+ "properties": {
+ "name": {
+ "description": "Name of the product.",
+ "type": "string",
+ "example": "Awesome Jacket",
+ "nullable": true
+ },
+ "gender": {
+ "description": "Gender of the category.",
+ "type": "string",
+ "example": "male"
+ }
+ },
+ "type": "object"
+ },
+ "ViewCategoryDto": {
+ "title": "Category",
+ "description": "Category response data.",
+ "properties": {
+ "incrementalId": {
+ "type": "integer",
+ "format": "int64",
+ "example": 1
+ },
+ "id": {
+ "type": "string",
+ "format": "uuid"
+ },
+ "name": {
+ "type": "string",
+ "example": "Men Jackets"
+ },
+ "gender": {
+ "description": "Gender of the category.",
+ "type": "string",
+ "example": "male"
+ },
+ "created": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "updated": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "deleted": {
+ "schema": "Application\\Auth\\Dto\\SignatureDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/SignatureDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ViewClientDto": {
+ "title": "Client",
+ "description": "Client response data.",
+ "properties": {
+ "incrementalId": {
+ "type": "integer",
+ "format": "int64",
+ "example": 1
+ },
+ "id": {
+ "type": "string",
+ "format": "uuid",
+ "nullable": true
+ },
+ "userId": {
+ "type": "string",
+ "format": "uuid",
+ "nullable": true
+ },
+ "email": {
+ "type": "string",
+ "example": "john.doe@example.com",
+ "nullable": true
+ },
+ "username": {
+ "type": "string",
+ "example": "john-doe",
+ "nullable": true
+ },
+ "firstName": {
+ "type": "string",
+ "example": "John",
+ "nullable": true
+ },
+ "lastName": {
+ "type": "string",
+ "example": "Doe",
+ "nullable": true
+ },
+ "company": {
+ "type": "string",
+ "example": "Big Fat Company LLC",
+ "nullable": true
+ },
+ "created": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "updated": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "deleted": {
+ "schema": "Application\\Auth\\Dto\\SignatureDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/SignatureDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ViewIsoDto": {
+ "title": "ISO 3166-1 country codes",
+ "description": "This schema contains ISO 3166-1 country codes.",
+ "properties": {
+ "alpha2": {
+ "type": "string",
+ "format": "string",
+ "example": "LV",
+ "nullable": true
+ },
+ "alpha3": {
+ "type": "string",
+ "format": "string",
+ "example": "LVA",
+ "nullable": true
+ },
+ "numeric": {
+ "type": "string",
+ "format": "string",
+ "example": "428",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "ViewStateDto": {
+ "title": "Country state",
+ "description": "This schema contains country state.",
+ "properties": {
+ "id": {
+ "type": "integer",
+ "format": "integer",
+ "example": 1
+ },
+ "code": {
+ "type": "string",
+ "format": "string",
+ "example": "TX"
+ },
+ "name": {
+ "type": "string",
+ "format": "string",
+ "example": "Texas"
+ }
+ },
+ "type": "object"
+ },
+ "ViewCountryDto": {
+ "title": "Country",
+ "description": "Country response data.",
+ "properties": {
+ "id": {
+ "type": "string",
+ "format": "string",
+ "example": "lv"
+ },
+ "name": {
+ "type": "string",
+ "example": "Latvia"
+ },
+ "emoji": {
+ "type": "string",
+ "format": "string",
+ "example": "๐ฑ๐ป"
+ },
+ "code": {
+ "$ref": "#/components/schemas/ViewIsoDto"
+ }
+ },
+ "type": "object"
+ },
+ "ViewOrderDto": {
+ "title": "Order",
+ "description": "Order response data.",
+ "properties": {
+ "incrementalId": {
+ "type": "integer",
+ "format": "int64",
+ "example": 1
+ },
+ "id": {
+ "type": "string",
+ "format": "uuid"
+ },
+ "created": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "updated": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "deleted": {
+ "schema": "Application\\Auth\\Dto\\SignatureDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/SignatureDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "StoreCategoryToProductDto": {
+ "title": "Category",
+ "description": "Category data.",
+ "properties": {
+ "id": {
+ "type": "string",
+ "format": "string",
+ "example": "10ab5df0-693a-4cd8-8ed5-1e702947d4d0"
+ }
+ },
+ "type": "object"
+ },
+ "StoreCodeDto": {
+ "title": "Code",
+ "description": "Code data.",
+ "properties": {
+ "sku": {
+ "type": "string",
+ "format": "string",
+ "example": "AWSP123",
+ "nullable": true
+ },
+ "ian": {
+ "type": "string",
+ "format": "string",
+ "example": "5901234123457",
+ "nullable": true
+ },
+ "upc": {
+ "type": "string",
+ "format": "string",
+ "example": "012345678905",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "UpdateCodeDto": {
+ "title": "Code",
+ "description": "Code data.",
+ "properties": {
+ "sku": {
+ "type": "string",
+ "format": "string",
+ "example": "AWSP123",
+ "nullable": true
+ },
+ "ian": {
+ "type": "string",
+ "format": "string",
+ "example": "5901234123457",
+ "nullable": true
+ },
+ "upc": {
+ "type": "string",
+ "format": "string",
+ "example": "012345678905",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "ViewCodeDto": {
+ "title": "Code",
+ "description": "Code data.",
+ "properties": {
+ "sku": {
+ "type": "string",
+ "format": "string",
+ "example": "AWSP123",
+ "nullable": true
+ },
+ "ian": {
+ "type": "string",
+ "format": "string",
+ "example": "5901234123457",
+ "nullable": true
+ },
+ "upc": {
+ "type": "string",
+ "format": "string",
+ "example": "012345678905",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "StoreSeoDto": {
+ "title": "Seo",
+ "description": "Seo data.",
+ "properties": {
+ "slug": {
+ "type": "string",
+ "format": "string",
+ "example": "awesome-jacket",
+ "nullable": true
+ },
+ "title": {
+ "type": "string",
+ "format": "string",
+ "example": "Awesome Jacket",
+ "nullable": true
+ },
+ "description": {
+ "type": "string",
+ "format": "string",
+ "example": "This is an awesome jacket",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "UpdateSeoDto": {
+ "title": "Seo",
+ "description": "Seo data.",
+ "properties": {
+ "slug": {
+ "type": "string",
+ "format": "string",
+ "example": "awesome-jacket",
+ "nullable": true
+ },
+ "title": {
+ "type": "string",
+ "format": "string",
+ "example": "Awesome Jacket",
+ "nullable": true
+ },
+ "description": {
+ "type": "string",
+ "format": "string",
+ "example": "This is an awesome jacket",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "ViewSeoDto": {
+ "title": "Seo",
+ "description": "Seo data.",
+ "properties": {
+ "slug": {
+ "type": "string",
+ "format": "string",
+ "example": "awesome-jacket",
+ "nullable": true
+ },
+ "title": {
+ "type": "string",
+ "format": "string",
+ "example": "Awesome Jacket",
+ "nullable": true
+ },
+ "description": {
+ "type": "string",
+ "format": "string",
+ "example": "This is an awesome jacket",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "StoreProductDto": {
+ "title": "Product",
+ "description": "Product data for storing a new product.",
+ "properties": {
+ "name": {
+ "description": "Name of the product.",
+ "type": "string",
+ "example": "Awesome Jacket"
+ },
+ "status": {
+ "description": "Is product enabled and shown on site?",
+ "example": "true"
+ },
+ "description": {
+ "description": "Description of the product.",
+ "type": "string",
+ "example": "This is an awesome jacket"
+ },
+ "category": {
+ "$ref": "#/components/schemas/StoreCategoryToProductDto"
+ },
+ "code": {
+ "$ref": "#/components/schemas/StoreCodeDto"
+ },
+ "seo": {
+ "schema": "Application\\Product\\Dto\\Seo\\StoreSeoDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/StoreSeoDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "UpdateProductDto": {
+ "title": "Product",
+ "description": "Product data for storing a new product.",
+ "properties": {
+ "name": {
+ "description": "Name of the product.",
+ "type": "string",
+ "example": "Awesome Jacket",
+ "nullable": true
+ },
+ "status": {
+ "description": "Is product enabled and shown on site?",
+ "example": "true",
+ "nullable": true
+ },
+ "description": {
+ "description": "Description of the product.",
+ "type": "string",
+ "example": "This is an awesome jacket",
+ "nullable": true
+ },
+ "code": {
+ "schema": "Application\\Product\\Dto\\Code\\UpdateCodeDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/UpdateCodeDto"
+ }
+ ]
+ },
+ "seo": {
+ "schema": "Application\\Product\\Dto\\Seo\\UpdateSeoDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/UpdateSeoDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ViewProductDto": {
+ "title": "Product",
+ "description": "Product response data.",
+ "properties": {
+ "incrementalId": {
+ "type": "integer",
+ "format": "int64",
+ "example": 1
+ },
+ "id": {
+ "type": "string",
+ "format": "uuid"
+ },
+ "name": {
+ "description": "Name of the product.",
+ "type": "string",
+ "example": "Awesome Jacket"
+ },
+ "status": {
+ "description": "Is product enabled and shown on site?",
+ "example": "true"
+ },
+ "description": {
+ "description": "Description of the product.",
+ "type": "string",
+ "example": "This is an awesome jacket"
+ },
+ "category": {
+ "$ref": "#/components/schemas/ViewCategoryDto"
+ },
+ "code": {
+ "$ref": "#/components/schemas/ViewCodeDto"
+ },
+ "seo": {
+ "$ref": "#/components/schemas/ViewSeoDto"
+ },
+ "created": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "updated": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "deleted": {
+ "schema": "Application\\Auth\\Dto\\SignatureDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/SignatureDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ }
+ }
+ }
+}
diff --git a/app/public/public-openapi.json b/app/public/public-openapi.json
new file mode 100644
index 0000000..31981a4
--- /dev/null
+++ b/app/public/public-openapi.json
@@ -0,0 +1,879 @@
+{
+ "openapi": "3.0.0",
+ "info": {
+ "title": "WOD Customers API",
+ "description": "WOD Customers Ecommerce API",
+ "contact": {
+ "name": "John Doe",
+ "email": "support@wayof.dev"
+ },
+ "version": "1.0.0"
+ },
+ "paths": {
+ "/api/public/carts/{cart_id}": {
+ "get": {
+ "tags": [
+ "carts"
+ ],
+ "summary": "Get single cart.",
+ "description": "This endpoint returns a single cart.",
+ "operationId": "2b2c44313068f32df4ab01168303404b",
+ "parameters": [
+ {
+ "name": "cart_id",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewCartDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/public/carts": {
+ "post": {
+ "tags": [
+ "carts"
+ ],
+ "summary": "Store new cart",
+ "description": "This endpoint stores new cart into database storage.",
+ "operationId": "e54074b8868eb8383074c57701b278bf",
+ "requestBody": {
+ "description": "Cart data",
+ "required": true,
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/StoreCartDto"
+ }
+ }
+ }
+ },
+ "responses": {
+ "201": {
+ "description": "Created",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewCartDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ },
+ "422": {
+ "description": "Unprocessable Entity"
+ }
+ }
+ }
+ },
+ "/api/public/categories": {
+ "get": {
+ "tags": [
+ "categories"
+ ],
+ "summary": "Get list of categories.",
+ "description": "Get list of categories.",
+ "operationId": "d6e5c13670a3bb8ec6e4a2273289fa5b",
+ "responses": {
+ "200": {
+ "description": "OK"
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/public/categories/{category_id}": {
+ "get": {
+ "tags": [
+ "categories"
+ ],
+ "summary": "Get single category.",
+ "description": "This endpoint returns a single category.",
+ "operationId": "caa1706d9e7cbe66e52b76be50d3a8c4",
+ "parameters": [
+ {
+ "name": "category_id",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewCategoryDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/public/countries": {
+ "get": {
+ "tags": [
+ "countries"
+ ],
+ "summary": "Get list of countries.",
+ "description": "Get list of countries.",
+ "operationId": "8b52c41590f59f26e0c65be1094b9536",
+ "responses": {
+ "200": {
+ "description": "OK"
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/public/countries/{country_id}": {
+ "get": {
+ "tags": [
+ "countries"
+ ],
+ "summary": "Get single country.",
+ "description": "This endpoint returns a single country.",
+ "operationId": "40121a0c8be63e84cd73b66b44c45461",
+ "parameters": [
+ {
+ "name": "country_id",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewCountryDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/public/network": {
+ "get": {
+ "tags": [
+ "network"
+ ],
+ "summary": "Network status.",
+ "description": "Get network status and requested by response.",
+ "operationId": "1ea3c1d87a80aa03d135a3a98503f1d0",
+ "responses": {
+ "200": {
+ "description": "OK"
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/public/products": {
+ "get": {
+ "tags": [
+ "products"
+ ],
+ "summary": "Get list of products",
+ "description": "Get list of products",
+ "operationId": "041bd97f66b09999210cd29e5b5f9214",
+ "responses": {
+ "200": {
+ "description": "OK"
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ },
+ "/api/public/products/{product_id}": {
+ "get": {
+ "tags": [
+ "products"
+ ],
+ "summary": "Get single product.",
+ "description": "This endpoint returns a single product.",
+ "operationId": "c250c36690cd5060212890673a98ca1f",
+ "parameters": [
+ {
+ "name": "product_id",
+ "in": "path",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/ViewProductDto"
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ }
+ }
+ }
+ }
+ },
+ "components": {
+ "schemas": {
+ "FootprintDto": {
+ "title": "Footprint",
+ "description": "Footprint data.",
+ "properties": {
+ "id": {
+ "type": "string",
+ "format": "uuid"
+ },
+ "party": {
+ "type": "string",
+ "format": "string",
+ "example": "user"
+ },
+ "realm": {
+ "type": "string",
+ "format": "string",
+ "example": "front-office"
+ }
+ },
+ "type": "object"
+ },
+ "SignatureDto": {
+ "title": "Signature",
+ "description": "Signature data.",
+ "properties": {
+ "at": {
+ "type": "string",
+ "format": "date-time",
+ "nullable": true
+ },
+ "by": {
+ "schema": "Application\\Auth\\Dto\\FootprintDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/FootprintDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "StoreCartDto": {
+ "title": "Cart",
+ "description": "Cart data for storing new category."
+ },
+ "ViewCartDto": {
+ "title": "Cart",
+ "description": "Cart response data.",
+ "properties": {
+ "incrementalId": {
+ "type": "integer",
+ "format": "int64",
+ "example": 1
+ },
+ "id": {
+ "type": "string",
+ "format": "uuid"
+ },
+ "created": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "updated": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "deleted": {
+ "schema": "Application\\Auth\\Dto\\SignatureDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/SignatureDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "StoreCategoryDto": {
+ "title": "Category",
+ "description": "Category data for storing new category.",
+ "properties": {
+ "name": {
+ "description": "Name of the product.",
+ "type": "string",
+ "example": "Awesome Jacket"
+ },
+ "gender": {
+ "description": "Gender of the category.",
+ "type": "string",
+ "example": "male"
+ }
+ },
+ "type": "object"
+ },
+ "UpdateCategoryDto": {
+ "title": "Category",
+ "description": "Category data for updating category.",
+ "properties": {
+ "name": {
+ "description": "Name of the product.",
+ "type": "string",
+ "example": "Awesome Jacket",
+ "nullable": true
+ },
+ "gender": {
+ "description": "Gender of the category.",
+ "type": "string",
+ "example": "male"
+ }
+ },
+ "type": "object"
+ },
+ "ViewCategoryDto": {
+ "title": "Category",
+ "description": "Category response data.",
+ "properties": {
+ "incrementalId": {
+ "type": "integer",
+ "format": "int64",
+ "example": 1
+ },
+ "id": {
+ "type": "string",
+ "format": "uuid"
+ },
+ "name": {
+ "type": "string",
+ "example": "Men Jackets"
+ },
+ "gender": {
+ "description": "Gender of the category.",
+ "type": "string",
+ "example": "male"
+ },
+ "created": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "updated": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "deleted": {
+ "schema": "Application\\Auth\\Dto\\SignatureDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/SignatureDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ViewClientDto": {
+ "title": "Client",
+ "description": "Client response data.",
+ "properties": {
+ "incrementalId": {
+ "type": "integer",
+ "format": "int64",
+ "example": 1
+ },
+ "id": {
+ "type": "string",
+ "format": "uuid",
+ "nullable": true
+ },
+ "userId": {
+ "type": "string",
+ "format": "uuid",
+ "nullable": true
+ },
+ "email": {
+ "type": "string",
+ "example": "john.doe@example.com",
+ "nullable": true
+ },
+ "username": {
+ "type": "string",
+ "example": "john-doe",
+ "nullable": true
+ },
+ "firstName": {
+ "type": "string",
+ "example": "John",
+ "nullable": true
+ },
+ "lastName": {
+ "type": "string",
+ "example": "Doe",
+ "nullable": true
+ },
+ "company": {
+ "type": "string",
+ "example": "Big Fat Company LLC",
+ "nullable": true
+ },
+ "created": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "updated": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "deleted": {
+ "schema": "Application\\Auth\\Dto\\SignatureDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/SignatureDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ViewIsoDto": {
+ "title": "ISO 3166-1 country codes",
+ "description": "This schema contains ISO 3166-1 country codes.",
+ "properties": {
+ "alpha2": {
+ "type": "string",
+ "format": "string",
+ "example": "LV",
+ "nullable": true
+ },
+ "alpha3": {
+ "type": "string",
+ "format": "string",
+ "example": "LVA",
+ "nullable": true
+ },
+ "numeric": {
+ "type": "string",
+ "format": "string",
+ "example": "428",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "ViewStateDto": {
+ "title": "Country state",
+ "description": "This schema contains country state.",
+ "properties": {
+ "id": {
+ "type": "integer",
+ "format": "integer",
+ "example": 1
+ },
+ "code": {
+ "type": "string",
+ "format": "string",
+ "example": "TX"
+ },
+ "name": {
+ "type": "string",
+ "format": "string",
+ "example": "Texas"
+ }
+ },
+ "type": "object"
+ },
+ "ViewCountryDto": {
+ "title": "Country",
+ "description": "Country response data.",
+ "properties": {
+ "id": {
+ "type": "string",
+ "format": "string",
+ "example": "lv"
+ },
+ "name": {
+ "type": "string",
+ "example": "Latvia"
+ },
+ "emoji": {
+ "type": "string",
+ "format": "string",
+ "example": "๐ฑ๐ป"
+ },
+ "code": {
+ "$ref": "#/components/schemas/ViewIsoDto"
+ }
+ },
+ "type": "object"
+ },
+ "ViewOrderDto": {
+ "title": "Order",
+ "description": "Order response data.",
+ "properties": {
+ "incrementalId": {
+ "type": "integer",
+ "format": "int64",
+ "example": 1
+ },
+ "id": {
+ "type": "string",
+ "format": "uuid"
+ },
+ "created": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "updated": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "deleted": {
+ "schema": "Application\\Auth\\Dto\\SignatureDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/SignatureDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "StoreCategoryToProductDto": {
+ "title": "Category",
+ "description": "Category data.",
+ "properties": {
+ "id": {
+ "type": "string",
+ "format": "string",
+ "example": "10ab5df0-693a-4cd8-8ed5-1e702947d4d0"
+ }
+ },
+ "type": "object"
+ },
+ "StoreCodeDto": {
+ "title": "Code",
+ "description": "Code data.",
+ "properties": {
+ "sku": {
+ "type": "string",
+ "format": "string",
+ "example": "AWSP123",
+ "nullable": true
+ },
+ "ian": {
+ "type": "string",
+ "format": "string",
+ "example": "5901234123457",
+ "nullable": true
+ },
+ "upc": {
+ "type": "string",
+ "format": "string",
+ "example": "012345678905",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "UpdateCodeDto": {
+ "title": "Code",
+ "description": "Code data.",
+ "properties": {
+ "sku": {
+ "type": "string",
+ "format": "string",
+ "example": "AWSP123",
+ "nullable": true
+ },
+ "ian": {
+ "type": "string",
+ "format": "string",
+ "example": "5901234123457",
+ "nullable": true
+ },
+ "upc": {
+ "type": "string",
+ "format": "string",
+ "example": "012345678905",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "ViewCodeDto": {
+ "title": "Code",
+ "description": "Code data.",
+ "properties": {
+ "sku": {
+ "type": "string",
+ "format": "string",
+ "example": "AWSP123",
+ "nullable": true
+ },
+ "ian": {
+ "type": "string",
+ "format": "string",
+ "example": "5901234123457",
+ "nullable": true
+ },
+ "upc": {
+ "type": "string",
+ "format": "string",
+ "example": "012345678905",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "StoreSeoDto": {
+ "title": "Seo",
+ "description": "Seo data.",
+ "properties": {
+ "slug": {
+ "type": "string",
+ "format": "string",
+ "example": "awesome-jacket",
+ "nullable": true
+ },
+ "title": {
+ "type": "string",
+ "format": "string",
+ "example": "Awesome Jacket",
+ "nullable": true
+ },
+ "description": {
+ "type": "string",
+ "format": "string",
+ "example": "This is an awesome jacket",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "UpdateSeoDto": {
+ "title": "Seo",
+ "description": "Seo data.",
+ "properties": {
+ "slug": {
+ "type": "string",
+ "format": "string",
+ "example": "awesome-jacket",
+ "nullable": true
+ },
+ "title": {
+ "type": "string",
+ "format": "string",
+ "example": "Awesome Jacket",
+ "nullable": true
+ },
+ "description": {
+ "type": "string",
+ "format": "string",
+ "example": "This is an awesome jacket",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "ViewSeoDto": {
+ "title": "Seo",
+ "description": "Seo data.",
+ "properties": {
+ "slug": {
+ "type": "string",
+ "format": "string",
+ "example": "awesome-jacket",
+ "nullable": true
+ },
+ "title": {
+ "type": "string",
+ "format": "string",
+ "example": "Awesome Jacket",
+ "nullable": true
+ },
+ "description": {
+ "type": "string",
+ "format": "string",
+ "example": "This is an awesome jacket",
+ "nullable": true
+ }
+ },
+ "type": "object"
+ },
+ "StoreProductDto": {
+ "title": "Product",
+ "description": "Product data for storing a new product.",
+ "properties": {
+ "name": {
+ "description": "Name of the product.",
+ "type": "string",
+ "example": "Awesome Jacket"
+ },
+ "status": {
+ "description": "Is product enabled and shown on site?",
+ "example": "true"
+ },
+ "description": {
+ "description": "Description of the product.",
+ "type": "string",
+ "example": "This is an awesome jacket"
+ },
+ "category": {
+ "$ref": "#/components/schemas/StoreCategoryToProductDto"
+ },
+ "code": {
+ "$ref": "#/components/schemas/StoreCodeDto"
+ },
+ "seo": {
+ "schema": "Application\\Product\\Dto\\Seo\\StoreSeoDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/StoreSeoDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "UpdateProductDto": {
+ "title": "Product",
+ "description": "Product data for storing a new product.",
+ "properties": {
+ "name": {
+ "description": "Name of the product.",
+ "type": "string",
+ "example": "Awesome Jacket",
+ "nullable": true
+ },
+ "status": {
+ "description": "Is product enabled and shown on site?",
+ "example": "true",
+ "nullable": true
+ },
+ "description": {
+ "description": "Description of the product.",
+ "type": "string",
+ "example": "This is an awesome jacket",
+ "nullable": true
+ },
+ "code": {
+ "schema": "Application\\Product\\Dto\\Code\\UpdateCodeDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/UpdateCodeDto"
+ }
+ ]
+ },
+ "seo": {
+ "schema": "Application\\Product\\Dto\\Seo\\UpdateSeoDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/UpdateSeoDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "ViewProductDto": {
+ "title": "Product",
+ "description": "Product response data.",
+ "properties": {
+ "incrementalId": {
+ "type": "integer",
+ "format": "int64",
+ "example": 1
+ },
+ "id": {
+ "type": "string",
+ "format": "uuid"
+ },
+ "name": {
+ "description": "Name of the product.",
+ "type": "string",
+ "example": "Awesome Jacket"
+ },
+ "status": {
+ "description": "Is product enabled and shown on site?",
+ "example": "true"
+ },
+ "description": {
+ "description": "Description of the product.",
+ "type": "string",
+ "example": "This is an awesome jacket"
+ },
+ "category": {
+ "$ref": "#/components/schemas/ViewCategoryDto"
+ },
+ "code": {
+ "$ref": "#/components/schemas/ViewCodeDto"
+ },
+ "seo": {
+ "$ref": "#/components/schemas/ViewSeoDto"
+ },
+ "created": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "updated": {
+ "$ref": "#/components/schemas/SignatureDto"
+ },
+ "deleted": {
+ "schema": "Application\\Auth\\Dto\\SignatureDto",
+ "nullable": true,
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/SignatureDto"
+ }
+ ]
+ }
+ },
+ "type": "object"
+ }
+ }
+ }
+}
diff --git a/app/routes/api.php b/app/routes/api.php
deleted file mode 100644
index 2710a81..0000000
--- a/app/routes/api.php
+++ /dev/null
@@ -1,19 +0,0 @@
-get('/user', function (Request $request) {
- return $request->user();
-});
diff --git a/app/src/Application/Auth/Dto/AuthAssembler.php b/app/src/Application/Auth/Dto/AuthAssembler.php
new file mode 100644
index 0000000..1d6d8f5
--- /dev/null
+++ b/app/src/Application/Auth/Dto/AuthAssembler.php
@@ -0,0 +1,35 @@
+at = $signature->at();
+ $dto->by = $this->toAuthFootprintDto($signature->by());
+
+ return $dto;
+ }
+
+ public function toAuthFootprintDto(?Footprint $footprint): FootprintDto
+ {
+ $dto = new FootprintDto();
+
+ if (null === $footprint) {
+ return $dto;
+ }
+
+ $dto->id = $footprint->id()->toString();
+ $dto->realm = $footprint->realm();
+ $dto->party = $footprint->party();
+
+ return $dto;
+ }
+}
diff --git a/app/src/Application/Auth/Dto/FootprintDto.php b/app/src/Application/Auth/Dto/FootprintDto.php
new file mode 100644
index 0000000..627a5dd
--- /dev/null
+++ b/app/src/Application/Auth/Dto/FootprintDto.php
@@ -0,0 +1,29 @@
+toArray());
+ }
+}
diff --git a/app/src/Application/Cart/Commands/StoreCart.php b/app/src/Application/Cart/Commands/StoreCart.php
new file mode 100644
index 0000000..9527324
--- /dev/null
+++ b/app/src/Application/Cart/Commands/StoreCart.php
@@ -0,0 +1,40 @@
+footprint(),
+ );
+ }
+
+ /**
+ * @throws AssertionFailedException
+ */
+ public function footprint(): ?Footprint
+ {
+ if (null !== $this->tokenFootprint) {
+ return $this->fromTokenFootprint($this->tokenFootprint);
+ }
+
+ return null;
+ }
+}
diff --git a/app/src/Application/Cart/Commands/ViewCart.php b/app/src/Application/Cart/Commands/ViewCart.php
new file mode 100644
index 0000000..8104d5c
--- /dev/null
+++ b/app/src/Application/Cart/Commands/ViewCart.php
@@ -0,0 +1,19 @@
+cart;
+ }
+}
diff --git a/app/src/Application/Cart/Dto/CartAssembler.php b/app/src/Application/Cart/Dto/CartAssembler.php
new file mode 100644
index 0000000..0d5eaa7
--- /dev/null
+++ b/app/src/Application/Cart/Dto/CartAssembler.php
@@ -0,0 +1,32 @@
+incrementalId = $cart->incrementalId();
+ $dto->id = $cart->id()->toString();
+ $dto->created = $this->auth->toAuthSignatureDto($cart->created());
+ $dto->updated = $this->auth->toAuthSignatureDto($cart->updated());
+ $dto->deleted = null;
+
+ if (null !== $cart->deleted()) {
+ $dto->deleted = $this->auth->toAuthSignatureDto($cart->deleted());
+ }
+
+ return $dto;
+ }
+}
diff --git a/app/src/Application/Cart/Dto/StoreCartDto.php b/app/src/Application/Cart/Dto/StoreCartDto.php
new file mode 100644
index 0000000..8735fce
--- /dev/null
+++ b/app/src/Application/Cart/Dto/StoreCartDto.php
@@ -0,0 +1,15 @@
+factory->create(
+ $command->toCartInput()
+ );
+
+ // @phpstan-ignore-next-line
+ $this->repository->persist($product);
+
+ return $this->assembler->toViewCartDto($product);
+ }
+}
diff --git a/app/src/Application/Cart/Services/ViewCartService.php b/app/src/Application/Cart/Services/ViewCartService.php
new file mode 100644
index 0000000..8d69ed9
--- /dev/null
+++ b/app/src/Application/Cart/Services/ViewCartService.php
@@ -0,0 +1,22 @@
+assembler->toViewCartDto($command->cart());
+ }
+}
diff --git a/app/src/Application/Category/Commands/CategoryCommand.php b/app/src/Application/Category/Commands/CategoryCommand.php
new file mode 100644
index 0000000..82cad26
--- /dev/null
+++ b/app/src/Application/Category/Commands/CategoryCommand.php
@@ -0,0 +1,20 @@
+toArray());
+ }
+}
diff --git a/app/src/Application/Category/Commands/ListCategories.php b/app/src/Application/Category/Commands/ListCategories.php
new file mode 100644
index 0000000..e03d87c
--- /dev/null
+++ b/app/src/Application/Category/Commands/ListCategories.php
@@ -0,0 +1,20 @@
+query);
+ }
+}
diff --git a/app/src/Application/Category/Commands/StoreCategory.php b/app/src/Application/Category/Commands/StoreCategory.php
new file mode 100644
index 0000000..10c9fd7
--- /dev/null
+++ b/app/src/Application/Category/Commands/StoreCategory.php
@@ -0,0 +1,40 @@
+dto->name,
+ $this->dto->gender,
+ $this->footprint(),
+ );
+ }
+
+ /**
+ * @throws AssertionFailedException
+ */
+ public function footprint(): Footprint
+ {
+ return $this->fromTokenFootprint($this->tokenFootprint);
+ }
+}
diff --git a/app/src/Application/Category/Commands/UpdateCategory.php b/app/src/Application/Category/Commands/UpdateCategory.php
new file mode 100644
index 0000000..1d69f5a
--- /dev/null
+++ b/app/src/Application/Category/Commands/UpdateCategory.php
@@ -0,0 +1,39 @@
+category;
+ }
+
+ public function dto(): UpdateCategoryDto
+ {
+ return $this->dto;
+ }
+
+ /**
+ * @throws AssertionFailedException
+ */
+ public function footprint(): Footprint
+ {
+ return $this->fromTokenFootprint($this->tokenFootprint);
+ }
+}
diff --git a/app/src/Application/Category/Commands/ViewCategory.php b/app/src/Application/Category/Commands/ViewCategory.php
new file mode 100644
index 0000000..5bc9e5e
--- /dev/null
+++ b/app/src/Application/Category/Commands/ViewCategory.php
@@ -0,0 +1,19 @@
+category;
+ }
+}
diff --git a/app/src/Application/Category/Dto/CategoryAssembler.php b/app/src/Application/Category/Dto/CategoryAssembler.php
new file mode 100644
index 0000000..ee74326
--- /dev/null
+++ b/app/src/Application/Category/Dto/CategoryAssembler.php
@@ -0,0 +1,34 @@
+incrementalId = $category->incrementalId();
+ $dto->id = $category->id()->toString();
+ $dto->name = $category->name();
+ $dto->gender = $category->gender();
+ $dto->created = $this->auth->toAuthSignatureDto($category->created());
+ $dto->updated = $this->auth->toAuthSignatureDto($category->updated());
+ $dto->deleted = null;
+
+ if (null !== $category->deleted()) {
+ $dto->deleted = $this->auth->toAuthSignatureDto($category->deleted());
+ }
+
+ return $dto;
+ }
+}
diff --git a/app/src/Application/Category/Dto/QueryCategoryDto.php b/app/src/Application/Category/Dto/QueryCategoryDto.php
new file mode 100644
index 0000000..be9234d
--- /dev/null
+++ b/app/src/Application/Category/Dto/QueryCategoryDto.php
@@ -0,0 +1,16 @@
+criteria();
+
+ $this->categories->pushCriteria(new FilterBy($criteria->parameters()));
+ $this->categories->pushCriteria(new LimitBy($criteria->limit()));
+ $this->categories->pushCriteria(new OrderBy($criteria->orderBy()));
+
+ $collection = $this->categories->paginate(
+ perPage: $pagination->perPage(),
+ page: $pagination->page()
+ );
+ $collection->getCollection()->transform(function ($item): ViewCategoryDto {
+ return $this->assembler->toViewCategoryDto($item);
+ });
+
+ return $collection;
+ }
+}
diff --git a/app/src/Application/Category/Services/StoreCategoryService.php b/app/src/Application/Category/Services/StoreCategoryService.php
new file mode 100644
index 0000000..61a71e8
--- /dev/null
+++ b/app/src/Application/Category/Services/StoreCategoryService.php
@@ -0,0 +1,37 @@
+factory->create(
+ $command->toCategoryInput()
+ );
+
+ // @phpstan-ignore-next-line
+ $this->repository->persist($product);
+
+ return $this->assembler->toViewCategoryDto($product);
+ }
+}
diff --git a/app/src/Application/Category/Services/UpdateCategoryService.php b/app/src/Application/Category/Services/UpdateCategoryService.php
new file mode 100644
index 0000000..3339a27
--- /dev/null
+++ b/app/src/Application/Category/Services/UpdateCategoryService.php
@@ -0,0 +1,45 @@
+category();
+ $signature = new Signature($this->clock->now(), $command->footprint());
+
+ if (isset($command->dto()->name)) {
+ $category->changeName($command->dto()->name, $signature);
+ }
+
+ if (isset($command->dto()->gender)) {
+ $category->changeGender($command->dto()->gender, $signature);
+ }
+
+ // @phpstan-ignore-next-line
+ $this->repository->persist($category);
+
+ return $this->assembler->toViewCategoryDto($category);
+ }
+}
diff --git a/app/src/Application/Category/Services/ViewCategoryService.php b/app/src/Application/Category/Services/ViewCategoryService.php
new file mode 100644
index 0000000..5445b48
--- /dev/null
+++ b/app/src/Application/Category/Services/ViewCategoryService.php
@@ -0,0 +1,22 @@
+assembler->toViewCategoryDto($command->category());
+ }
+}
diff --git a/app/src/Application/Client/Address/Commands/ListAddresses.php b/app/src/Application/Client/Address/Commands/ListAddresses.php
new file mode 100644
index 0000000..df575a8
--- /dev/null
+++ b/app/src/Application/Client/Address/Commands/ListAddresses.php
@@ -0,0 +1,20 @@
+query);
+ }
+}
diff --git a/app/src/Domain/User/Contracts/.gitkeep b/app/src/Application/Client/Address/Commands/ViewAddress.php
similarity index 100%
rename from app/src/Domain/User/Contracts/.gitkeep
rename to app/src/Application/Client/Address/Commands/ViewAddress.php
diff --git a/app/src/Domain/User/Events/.gitkeep b/app/src/Application/Client/Address/Dto/AddressAssembler.php
similarity index 100%
rename from app/src/Domain/User/Events/.gitkeep
rename to app/src/Application/Client/Address/Dto/AddressAssembler.php
diff --git a/app/src/Infrastructure/.gitkeep b/app/src/Application/Client/Address/Dto/QueryAddressDto.php
similarity index 100%
rename from app/src/Infrastructure/.gitkeep
rename to app/src/Application/Client/Address/Dto/QueryAddressDto.php
diff --git a/app/src/Application/Client/Address/Dto/StoreAddressDto.php b/app/src/Application/Client/Address/Dto/StoreAddressDto.php
new file mode 100644
index 0000000..e69de29
diff --git a/app/src/Application/Client/Address/Dto/UpdateAddressDto.php b/app/src/Application/Client/Address/Dto/UpdateAddressDto.php
new file mode 100644
index 0000000..e69de29
diff --git a/app/src/Application/Client/Address/Dto/ViewAddressDto.php b/app/src/Application/Client/Address/Dto/ViewAddressDto.php
new file mode 100644
index 0000000..e69de29
diff --git a/app/src/Application/Client/Address/Services/ListAddressesService.php b/app/src/Application/Client/Address/Services/ListAddressesService.php
new file mode 100644
index 0000000..e69de29
diff --git a/app/src/Application/Client/Address/Services/StoreAddressService.php b/app/src/Application/Client/Address/Services/StoreAddressService.php
new file mode 100644
index 0000000..e69de29
diff --git a/app/src/Application/Client/Address/Services/UpdateAddressService.php b/app/src/Application/Client/Address/Services/UpdateAddressService.php
new file mode 100644
index 0000000..e69de29
diff --git a/app/src/Application/Client/Address/Services/ViewAddressService.php b/app/src/Application/Client/Address/Services/ViewAddressService.php
new file mode 100644
index 0000000..e69de29
diff --git a/app/src/Application/Client/Commands/ListClients.php b/app/src/Application/Client/Commands/ListClients.php
new file mode 100644
index 0000000..8fe20e7
--- /dev/null
+++ b/app/src/Application/Client/Commands/ListClients.php
@@ -0,0 +1,20 @@
+query);
+ }
+}
diff --git a/app/src/Application/Client/Commands/ViewClient.php b/app/src/Application/Client/Commands/ViewClient.php
new file mode 100644
index 0000000..7a59ca9
--- /dev/null
+++ b/app/src/Application/Client/Commands/ViewClient.php
@@ -0,0 +1,19 @@
+client;
+ }
+}
diff --git a/app/src/Application/Client/Dto/ClientAssembler.php b/app/src/Application/Client/Dto/ClientAssembler.php
new file mode 100644
index 0000000..d7aab0e
--- /dev/null
+++ b/app/src/Application/Client/Dto/ClientAssembler.php
@@ -0,0 +1,38 @@
+incrementalId = $client->incrementalId();
+ $dto->id = $client->id()->toString();
+ $dto->userId = $client->userId()?->toString();
+ $dto->email = $client->email();
+ $dto->username = $client->username();
+ $dto->firstName = $client->firstName();
+ $dto->lastName = $client->lastName();
+ $dto->company = $client->company();
+ $dto->created = $this->auth->toAuthSignatureDto($client->created());
+ $dto->updated = $this->auth->toAuthSignatureDto($client->updated());
+ $dto->deleted = null;
+
+ if (null !== $client->deleted()) {
+ $dto->deleted = $this->auth->toAuthSignatureDto($client->deleted());
+ }
+
+ return $dto;
+ }
+}
diff --git a/app/src/Application/Client/Dto/QueryClientDto.php b/app/src/Application/Client/Dto/QueryClientDto.php
new file mode 100644
index 0000000..57028a7
--- /dev/null
+++ b/app/src/Application/Client/Dto/QueryClientDto.php
@@ -0,0 +1,16 @@
+criteria();
+
+ $this->clients->pushCriteria(new FilterBy($criteria->parameters()));
+ $this->clients->pushCriteria(new LimitBy($criteria->limit()));
+ $this->clients->pushCriteria(new OrderBy($criteria->orderBy()));
+
+ $collection = $this->clients->paginate(
+ perPage: $pagination->perPage(),
+ page: $pagination->page()
+ );
+ $collection->getCollection()->transform(function ($item): ViewClientDto {
+ return $this->assembler->toViewClientDto($item);
+ });
+
+ return $collection;
+ }
+}
diff --git a/app/src/Application/Client/Services/ViewClientService.php b/app/src/Application/Client/Services/ViewClientService.php
new file mode 100644
index 0000000..2da898e
--- /dev/null
+++ b/app/src/Application/Client/Services/ViewClientService.php
@@ -0,0 +1,22 @@
+assembler->toViewClientDto($command->client());
+ }
+}
diff --git a/app/src/Application/Commands/User/ListUsers.php b/app/src/Application/Commands/User/ListUsers.php
deleted file mode 100644
index 2f080e7..0000000
--- a/app/src/Application/Commands/User/ListUsers.php
+++ /dev/null
@@ -1,9 +0,0 @@
-query);
+ }
+}
diff --git a/app/src/Application/Country/Commands/ViewCountry.php b/app/src/Application/Country/Commands/ViewCountry.php
new file mode 100644
index 0000000..0c5a09e
--- /dev/null
+++ b/app/src/Application/Country/Commands/ViewCountry.php
@@ -0,0 +1,19 @@
+country;
+ }
+}
diff --git a/app/src/Application/Country/Dto/CountryAssembler.php b/app/src/Application/Country/Dto/CountryAssembler.php
new file mode 100644
index 0000000..10cc552
--- /dev/null
+++ b/app/src/Application/Country/Dto/CountryAssembler.php
@@ -0,0 +1,68 @@
+id = $country->id();
+ $dto->name = $country->name();
+ $dto->emoji = $country->emoji();
+ $dto->code = $this->toViewIsoDto($country->code());
+ $dto->states = $this->toViewStateDtoList($country);
+
+ // $dto->created = $this->auth->toAuthSignatureDto($country->created());
+ // $dto->updated = $this->auth->toAuthSignatureDto($country->updated());
+ // $dto->deleted = null;
+
+ // if (null !== $country->deleted()) {
+ // $dto->deleted = $this->auth->toAuthSignatureDto($country->deleted());
+ // }
+
+ return $dto;
+ }
+
+ public function toViewIsoDto(Iso $iso): ViewIsoDto
+ {
+ $dto = new ViewIsoDto();
+ $dto->alpha2 = $iso->alpha2();
+ $dto->alpha3 = $iso->alpha3();
+ $dto->numeric = $iso->numeric();
+
+ return $dto;
+ }
+
+ /**
+ * @return ViewStateDto[]
+ */
+ public function toViewStateDtoList(Country $country): array
+ {
+ $output = [];
+
+ foreach ($country->states() as $state) {
+ $output[] = $this->toViewStateDto($state);
+ }
+
+ return $output;
+ }
+
+ private function toViewStateDto(State $state): ViewStateDto
+ {
+ $dto = new ViewStateDto();
+ $dto->id = $state->id();
+ $dto->name = $state->name();
+ $dto->code = $state->code();
+
+ return $dto;
+ }
+}
diff --git a/app/src/Application/Country/Dto/Iso/ViewIsoDto.php b/app/src/Application/Country/Dto/Iso/ViewIsoDto.php
new file mode 100644
index 0000000..e8f4406
--- /dev/null
+++ b/app/src/Application/Country/Dto/Iso/ViewIsoDto.php
@@ -0,0 +1,23 @@
+criteria();
+
+ $this->countries->pushCriteria(new FilterBy($criteria->parameters()));
+ $this->countries->pushCriteria(new LimitBy($criteria->limit()));
+ $this->countries->pushCriteria(new OrderBy($criteria->orderBy()));
+
+ /** @var Collection $collection */
+ $collection = $this->countries->findAll();
+
+ $collection->transform(function ($item): ViewCountryDto {
+ return $this->assembler->toViewCountryDto($item);
+ });
+
+ return $collection;
+ }
+}
diff --git a/app/src/Application/Country/Services/ViewCountryService.php b/app/src/Application/Country/Services/ViewCountryService.php
new file mode 100644
index 0000000..0e94b62
--- /dev/null
+++ b/app/src/Application/Country/Services/ViewCountryService.php
@@ -0,0 +1,22 @@
+assembler->toViewCountryDto($command->country());
+ }
+}
diff --git a/app/src/Application/Dto/User/QueryUserDto.php b/app/src/Application/Dto/User/QueryUserDto.php
deleted file mode 100644
index 88d48eb..0000000
--- a/app/src/Application/Dto/User/QueryUserDto.php
+++ /dev/null
@@ -1,9 +0,0 @@
-footprint) {
+ return Footprint::random();
+ }
+
+ return Footprint::fromArray($this->footprint->toArray());
+ }
+}
diff --git a/app/src/Application/Network/Dto/NetworkAssembler.php b/app/src/Application/Network/Dto/NetworkAssembler.php
new file mode 100644
index 0000000..7d663b7
--- /dev/null
+++ b/app/src/Application/Network/Dto/NetworkAssembler.php
@@ -0,0 +1,24 @@
+response = 'PONG';
+ $dto->requested = $this->auth->toAuthSignatureDto($signature);
+
+ return $dto;
+ }
+}
diff --git a/app/src/Application/Network/Dto/NetworkDto.php b/app/src/Application/Network/Dto/NetworkDto.php
new file mode 100644
index 0000000..4a65248
--- /dev/null
+++ b/app/src/Application/Network/Dto/NetworkDto.php
@@ -0,0 +1,14 @@
+clock->now(), $command->footprint());
+
+ return $this->assembler->toNetworkDto($signature);
+ }
+}
diff --git a/app/src/Application/Order/Commands/ListOrders.php b/app/src/Application/Order/Commands/ListOrders.php
new file mode 100644
index 0000000..475af75
--- /dev/null
+++ b/app/src/Application/Order/Commands/ListOrders.php
@@ -0,0 +1,20 @@
+query);
+ }
+}
diff --git a/app/src/Application/Order/Commands/OrderCommand.php b/app/src/Application/Order/Commands/OrderCommand.php
new file mode 100644
index 0000000..ed9da62
--- /dev/null
+++ b/app/src/Application/Order/Commands/OrderCommand.php
@@ -0,0 +1,20 @@
+toArray());
+ }
+}
diff --git a/app/src/Application/Order/Commands/ViewOrder.php b/app/src/Application/Order/Commands/ViewOrder.php
new file mode 100644
index 0000000..4a0cf3f
--- /dev/null
+++ b/app/src/Application/Order/Commands/ViewOrder.php
@@ -0,0 +1,19 @@
+order;
+ }
+}
diff --git a/app/src/Application/Order/Dto/OrderAssembler.php b/app/src/Application/Order/Dto/OrderAssembler.php
new file mode 100644
index 0000000..e8bc523
--- /dev/null
+++ b/app/src/Application/Order/Dto/OrderAssembler.php
@@ -0,0 +1,32 @@
+incrementalId = $order->incrementalId();
+ $dto->id = $order->id()->toString();
+ $dto->created = $this->auth->toAuthSignatureDto($order->created());
+ $dto->updated = $this->auth->toAuthSignatureDto($order->updated());
+ $dto->deleted = null;
+
+ if (null !== $order->deleted()) {
+ $dto->deleted = $this->auth->toAuthSignatureDto($order->deleted());
+ }
+
+ return $dto;
+ }
+}
diff --git a/app/src/Application/Order/Dto/QueryOrderDto.php b/app/src/Application/Order/Dto/QueryOrderDto.php
new file mode 100644
index 0000000..cd5b9ab
--- /dev/null
+++ b/app/src/Application/Order/Dto/QueryOrderDto.php
@@ -0,0 +1,16 @@
+criteria();
+
+ $this->categories->pushCriteria(new FilterBy($criteria->parameters()));
+ $this->categories->pushCriteria(new LimitBy($criteria->limit()));
+ $this->categories->pushCriteria(new OrderBy($criteria->orderBy()));
+
+ $collection = $this->categories->paginate(
+ perPage: $pagination->perPage(),
+ page: $pagination->page()
+ );
+ $collection->getCollection()->transform(function ($item): ViewOrderDto {
+ return $this->assembler->toViewOrderDto($item);
+ });
+
+ return $collection;
+ }
+}
diff --git a/app/src/Application/Order/Services/ViewOrderService.php b/app/src/Application/Order/Services/ViewOrderService.php
new file mode 100644
index 0000000..bea177a
--- /dev/null
+++ b/app/src/Application/Order/Services/ViewOrderService.php
@@ -0,0 +1,22 @@
+assembler->toViewOrderDto($command->order());
+ }
+}
diff --git a/app/src/Application/Product/Commands/ListProducts.php b/app/src/Application/Product/Commands/ListProducts.php
new file mode 100644
index 0000000..841ead9
--- /dev/null
+++ b/app/src/Application/Product/Commands/ListProducts.php
@@ -0,0 +1,20 @@
+query);
+ }
+}
diff --git a/app/src/Application/Product/Commands/ProductCommand.php b/app/src/Application/Product/Commands/ProductCommand.php
new file mode 100644
index 0000000..1b8128f
--- /dev/null
+++ b/app/src/Application/Product/Commands/ProductCommand.php
@@ -0,0 +1,20 @@
+toArray());
+ }
+}
diff --git a/app/src/Application/Product/Commands/StoreProduct.php b/app/src/Application/Product/Commands/StoreProduct.php
new file mode 100644
index 0000000..73ad54b
--- /dev/null
+++ b/app/src/Application/Product/Commands/StoreProduct.php
@@ -0,0 +1,56 @@
+dto->name,
+ $this->dto->status,
+ $this->dto->description,
+ $this->dto->category->id,
+ Code::fromArray([
+ 'sku' => $this->dto->code->sku,
+ 'ian' => $this->dto->code->ian,
+ 'upc' => $this->dto->code->upc,
+ ]),
+ Seo::fromArray([
+ 'slug' => $this->dto->seo->slug ?? null,
+ 'title' => $this->dto->seo->title ?? null,
+ 'description' => $this->dto->seo->description ?? null,
+ ]),
+ $this->footprint(),
+ );
+ }
+
+ /**
+ * @throws AssertionFailedException
+ */
+ public function footprint(): Footprint
+ {
+ return $this->fromTokenFootprint($this->tokenFootprint);
+ }
+}
diff --git a/app/src/Application/Product/Commands/UpdateProduct.php b/app/src/Application/Product/Commands/UpdateProduct.php
new file mode 100644
index 0000000..be38cef
--- /dev/null
+++ b/app/src/Application/Product/Commands/UpdateProduct.php
@@ -0,0 +1,61 @@
+product;
+ }
+
+ public function dto(): UpdateProductDto
+ {
+ return $this->dto;
+ }
+
+ public function code(): ?Code
+ {
+ if (! isset($this->dto->code)) {
+ return null;
+ }
+
+ return Code::fromArray(get_object_vars($this->dto->code));
+ }
+
+ public function seo(): ?Seo
+ {
+ if (! isset($this->dto->seo)) {
+ return null;
+ }
+
+ return Seo::fromArray(get_object_vars($this->dto->seo));
+ }
+
+ /**
+ * @throws AssertionFailedException
+ */
+ public function footprint(): Footprint
+ {
+ return $this->fromTokenFootprint($this->tokenFootprint);
+ }
+}
diff --git a/app/src/Application/Product/Commands/ViewProduct.php b/app/src/Application/Product/Commands/ViewProduct.php
new file mode 100644
index 0000000..600f67d
--- /dev/null
+++ b/app/src/Application/Product/Commands/ViewProduct.php
@@ -0,0 +1,19 @@
+product;
+ }
+}
diff --git a/app/src/Application/Product/Dto/Category/StoreCategoryDto.php b/app/src/Application/Product/Dto/Category/StoreCategoryDto.php
new file mode 100644
index 0000000..dd77b03
--- /dev/null
+++ b/app/src/Application/Product/Dto/Category/StoreCategoryDto.php
@@ -0,0 +1,18 @@
+incrementalId = $product->incrementalId();
+ $dto->id = $product->id()->toString();
+ $dto->name = $product->name();
+ $dto->status = $product->status();
+ $dto->description = $product->description();
+ $dto->category = $this->toCategoryDto($product->category());
+ $dto->code = $this->toCodeDto($product->code());
+ $dto->seo = $this->toSeoDto($product->seo());
+ $dto->created = $this->auth->toAuthSignatureDto($product->created());
+ $dto->updated = $this->auth->toAuthSignatureDto($product->updated());
+ $dto->deleted = null;
+
+ if (null !== $product->deleted()) {
+ $dto->deleted = $this->auth->toAuthSignatureDto($product->deleted());
+ }
+
+ return $dto;
+ }
+
+ private function toCategoryDto(Category $category): ViewCategoryDto
+ {
+ $dto = new ViewCategoryDto();
+
+ $dto->id = $category->id()->toString();
+
+ return $dto;
+ }
+
+ private function toCodeDto(Code $code): ViewCodeDto
+ {
+ $dto = new ViewCodeDto();
+
+ foreach ($code->toArray() as $key => $value) {
+ $dto->{$key} = $value;
+ }
+
+ return $dto;
+ }
+
+ private function toSeoDto(Seo $seo): ViewSeoDto
+ {
+ $dto = new ViewSeoDto();
+
+ foreach ($seo->toArray() as $key => $value) {
+ $dto->{$key} = $value;
+ }
+
+ return $dto;
+ }
+}
diff --git a/app/src/Application/Product/Dto/QueryProductDto.php b/app/src/Application/Product/Dto/QueryProductDto.php
new file mode 100644
index 0000000..edddb3c
--- /dev/null
+++ b/app/src/Application/Product/Dto/QueryProductDto.php
@@ -0,0 +1,18 @@
+criteria();
+
+ $this->products->pushCriteria(new FilterBy($criteria->parameters()));
+ $this->products->pushCriteria(new LimitBy($criteria->limit()));
+ $this->products->pushCriteria(new OrderBy($criteria->orderBy()));
+
+ $collection = $this->products->paginate(
+ perPage: $pagination->perPage(),
+ page: $pagination->page()
+ );
+
+ $collection->getCollection()->transform(function ($item): ViewProductDto {
+ return $this->assembler->toViewProductDto($item);
+ });
+
+ return $collection;
+ }
+}
diff --git a/app/src/Application/Product/Services/StoreProductService.php b/app/src/Application/Product/Services/StoreProductService.php
new file mode 100644
index 0000000..4388830
--- /dev/null
+++ b/app/src/Application/Product/Services/StoreProductService.php
@@ -0,0 +1,38 @@
+factory->create(
+ $command->toProductInput()
+ );
+
+ // @todo add persist method into interface
+ // @phpstan-ignore-next-line
+ $this->repository->persist($product);
+
+ return $this->assembler->toViewProductDto($product);
+ }
+}
diff --git a/app/src/Application/Product/Services/UpdateProductService.php b/app/src/Application/Product/Services/UpdateProductService.php
new file mode 100644
index 0000000..6c18c42
--- /dev/null
+++ b/app/src/Application/Product/Services/UpdateProductService.php
@@ -0,0 +1,57 @@
+product();
+ $signature = new Signature($this->clock->now(), $command->footprint());
+
+ if (isset($command->dto()->name)) {
+ $product->changeName($command->dto()->name, $signature);
+ }
+
+ if (isset($command->dto()->status)) {
+ $product->changeStatus($command->dto()->status, $signature);
+ }
+
+ if (isset($command->dto()->description)) {
+ $product->changeDescription($command->dto()->description, $signature);
+ }
+
+ if (null !== $command->code()) {
+ $product->changeCode($command->code(), $signature);
+ }
+
+ if (null !== $command->seo()) {
+ $product->changeSeo($command->seo(), $signature);
+ }
+
+ // @phpstan-ignore-next-line
+ $this->repository->persist($product);
+
+ return $this->assembler->toViewProductDto($product);
+ }
+}
diff --git a/app/src/Application/Product/Services/ViewProductService.php b/app/src/Application/Product/Services/ViewProductService.php
new file mode 100644
index 0000000..0b84f58
--- /dev/null
+++ b/app/src/Application/Product/Services/ViewProductService.php
@@ -0,0 +1,22 @@
+assembler->toViewProductDto($command->product());
+ }
+}
diff --git a/app/src/Application/Services/User/ListUsersService.php b/app/src/Application/Services/User/ListUsersService.php
deleted file mode 100644
index 071e81d..0000000
--- a/app/src/Application/Services/User/ListUsersService.php
+++ /dev/null
@@ -1,9 +0,0 @@
-toDto(new QueryCategoryDto());
+
+ $collection = $service->handle(
+ new ListCategories($requestQuery),
+ $pagination
+ );
+
+ return $this->response->fromArray(
+ $collection->toArray()
+ )->withHeaders($collection->headers());
+ }
+
+ #[OAT\Get(
+ path: '/api/admin/categories/{category_id}',
+ description: 'This endpoint returns a single category.',
+ summary: 'Get single category.',
+ tags: ['categories'],
+ parameters: [
+ new OAT\Parameter(
+ name: 'category_id',
+ in: 'path',
+ required: true,
+ schema: new OAT\Schema(type: 'string')
+ ),
+ ]
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_OK,
+ description: HttpStatus::HTTP_OK,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewCategoryDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ public function show(Category $category, ViewCategoryService $service): Response
+ {
+ return $this->response->create(
+ $service->handle(new ViewCategory($category))
+ );
+ }
+
+ /**
+ * @throws Throwable
+ */
+ #[OAT\Post(
+ path: '/api/admin/categories',
+ description: 'This endpoint stores new product into database storage.',
+ summary: 'Store new product',
+ tags: ['categories']
+ )]
+ #[OAT\RequestBody(
+ description: 'Product data',
+ required: true,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: StoreCategoryDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_CREATED,
+ description: HttpStatus::HTTP_CREATED,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewCategoryDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNPROCESSABLE_ENTITY,
+ description: HttpStatus::HTTP_UNPROCESSABLE_ENTITY
+ )]
+ public function store(Authenticatable $user, StoreCategoryService $service, StoreFormRequest $request): Response
+ {
+ $dto = $this->serializer->unserialize(
+ $request->getContent(),
+ StoreCategoryDto::class
+ );
+ $command = new StoreCategory($dto, $user->getFootprint());
+ $product = $service->handle($command);
+
+ $this->response->withStatusCode(HttpCode::HTTP_CREATED);
+
+ return $this->response->create($product);
+ }
+
+ /**
+ * @throws Throwable
+ */
+ #[OAT\Put(
+ path: '/api/admin/categories/{category_id}',
+ description: 'This endpoint updates fields of category.',
+ summary: 'Update category contents.',
+ tags: ['categories'],
+ parameters: [
+ new OAT\Parameter(
+ name: 'category_id',
+ in: 'path',
+ required: true,
+ schema: new OAT\Schema(type: 'string')
+ ),
+ ]
+ )]
+ #[OAT\RequestBody(
+ description: 'Category data',
+ required: true,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: UpdateCategoryDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_CREATED,
+ description: HttpStatus::HTTP_CREATED,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewCategoryDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNPROCESSABLE_ENTITY,
+ description: HttpStatus::HTTP_UNPROCESSABLE_ENTITY
+ )]
+ public function update(Authenticatable $user, Category $category, UpdateCategoryService $service, UpdateFormRequest $request): Response
+ {
+ $dto = $this->serializer->unserialize(
+ $request->getContent(),
+ UpdateCategoryDto::class
+ );
+
+ $command = new UpdateCategory($category, $dto, $user->getFootprint());
+ $product = $service->handle($command);
+
+ $this->response->withStatusCode(HttpCode::HTTP_CREATED);
+
+ return $this->response->create($product);
+ }
+}
diff --git a/app/src/Bridge/Laravel/Admin/Category/Requests/QueryFormRequest.php b/app/src/Bridge/Laravel/Admin/Category/Requests/QueryFormRequest.php
new file mode 100644
index 0000000..d0f0bfa
--- /dev/null
+++ b/app/src/Bridge/Laravel/Admin/Category/Requests/QueryFormRequest.php
@@ -0,0 +1,15 @@
+ ['required'],
+ 'gender' => ['required'],
+ ];
+ }
+}
diff --git a/app/src/Bridge/Laravel/Admin/Category/Requests/UpdateFormRequest.php b/app/src/Bridge/Laravel/Admin/Category/Requests/UpdateFormRequest.php
new file mode 100644
index 0000000..45ad9d2
--- /dev/null
+++ b/app/src/Bridge/Laravel/Admin/Category/Requests/UpdateFormRequest.php
@@ -0,0 +1,18 @@
+ [''],
+ 'gender' => [''],
+ ];
+ }
+}
diff --git a/app/src/Bridge/Laravel/Admin/Client/Controllers/ClientController.php b/app/src/Bridge/Laravel/Admin/Client/Controllers/ClientController.php
new file mode 100644
index 0000000..7535333
--- /dev/null
+++ b/app/src/Bridge/Laravel/Admin/Client/Controllers/ClientController.php
@@ -0,0 +1,94 @@
+toDto(new QueryClientDto());
+
+ $collection = $service->handle(
+ new ListClients($requestQuery),
+ $pagination
+ );
+
+ return $this->response->fromArray(
+ $collection->toArray()
+ )->withHeaders($collection->headers());
+ }
+
+ #[OAT\Get(
+ path: '/api/admin/clients/{client_id}',
+ description: 'This endpoint returns a single client.',
+ summary: 'Get single client.',
+ tags: ['clients'],
+ parameters: [
+ new OAT\Parameter(
+ name: 'client_id',
+ in: 'path',
+ required: true,
+ schema: new OAT\Schema(type: 'string')
+ ),
+ ]
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_OK,
+ description: HttpStatus::HTTP_OK,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewClientDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ public function show(Client $client, ViewClientService $service): Response
+ {
+ return $this->response->create(
+ $service->handle(new ViewClient($client))
+ );
+ }
+}
diff --git a/app/src/Bridge/Laravel/Admin/Client/Requests/QueryFormRequest.php b/app/src/Bridge/Laravel/Admin/Client/Requests/QueryFormRequest.php
new file mode 100644
index 0000000..202a0ab
--- /dev/null
+++ b/app/src/Bridge/Laravel/Admin/Client/Requests/QueryFormRequest.php
@@ -0,0 +1,15 @@
+response->create(
+ $service->handle(new Ping($user->getFootprint()))
+ );
+ }
+}
diff --git a/app/src/Bridge/Laravel/Admin/Order/Controllers/OrderController.php b/app/src/Bridge/Laravel/Admin/Order/Controllers/OrderController.php
new file mode 100644
index 0000000..fd81404
--- /dev/null
+++ b/app/src/Bridge/Laravel/Admin/Order/Controllers/OrderController.php
@@ -0,0 +1,94 @@
+toDto(new QueryOrderDto());
+
+ $collection = $service->handle(
+ new ListOrders($requestQuery),
+ $pagination
+ );
+
+ return $this->response->fromArray(
+ $collection->toArray()
+ )->withHeaders($collection->headers());
+ }
+
+ #[OAT\Get(
+ path: '/api/admin/orders/{order_id}',
+ description: 'This endpoint returns a single order.',
+ summary: 'Get single order.',
+ tags: ['orders'],
+ parameters: [
+ new OAT\Parameter(
+ name: 'order_id',
+ in: 'path',
+ required: true,
+ schema: new OAT\Schema(type: 'string')
+ ),
+ ]
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_OK,
+ description: HttpStatus::HTTP_OK,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewOrderDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ public function show(Order $order, ViewOrderService $service): Response
+ {
+ return $this->response->create(
+ $service->handle(new ViewOrder($order))
+ );
+ }
+}
diff --git a/app/src/Bridge/Laravel/Admin/Order/Requests/QueryFormRequest.php b/app/src/Bridge/Laravel/Admin/Order/Requests/QueryFormRequest.php
new file mode 100644
index 0000000..7dca27b
--- /dev/null
+++ b/app/src/Bridge/Laravel/Admin/Order/Requests/QueryFormRequest.php
@@ -0,0 +1,15 @@
+user());
+
+ // /** @var \Auth0\Laravel\Service $auth0 */
+ // $auth0 = app('auth0');
+
+ // dd($auth0);
+
+ $user = Auth0::management();
+ $profile = $user->users()->get(
+ auth()->id()
+ );
+
+ dd(Auth0::json($profile));
+
+ // $user = $auth0->
+
+ $endpoint = Auth0::management()->users();
+ $profile = $endpoint->get(auth()->id());
+ $profile = Auth0::json($profile);
+
+ dd($profile);
+
+ /** @var QueryProductDto $requestQuery */
+ $requestQuery = $request->toDto(new QueryProductDto());
+
+ $collection = $service->handle(
+ new ListProducts($requestQuery),
+ $pagination
+ );
+
+ return $this->response->fromArray(
+ $collection->toArray()
+ )->withHeaders($collection->headers());
+ }
+
+ #[OAT\Get(
+ path: '/api/admin/products/{product_id}',
+ description: 'This endpoint returns a single product.',
+ summary: 'Get single product.',
+ tags: ['products'],
+ parameters: [
+ new OAT\Parameter(
+ name: 'product_id',
+ in: 'path',
+ required: true,
+ schema: new OAT\Schema(type: 'string')
+ ),
+ ]
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_OK,
+ description: HttpStatus::HTTP_OK,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewProductDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ public function show(Product $product, ViewProductService $service): Response
+ {
+ return $this->response->create(
+ $service->handle(new ViewProduct($product))
+ );
+ }
+
+ /**
+ * @throws Throwable
+ */
+ #[OAT\Post(
+ path: '/api/admin/products',
+ description: 'This endpoint stores new product into database storage.',
+ summary: 'Store new product',
+ tags: ['products']
+ )]
+ #[OAT\RequestBody(
+ description: 'Product data',
+ required: true,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: StoreProductDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_CREATED,
+ description: HttpStatus::HTTP_CREATED,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewProductDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNPROCESSABLE_ENTITY,
+ description: HttpStatus::HTTP_UNPROCESSABLE_ENTITY
+ )]
+ public function store(Authenticatable $user, StoreProductService $service, StoreFormRequest $request): Response
+ {
+ $dto = $this->serializer->unserialize(
+ $request->getContent(),
+ StoreProductDto::class
+ );
+
+ $command = new StoreProduct($dto, $user->getFootprint());
+ $product = $service->handle($command);
+
+ $this->response->withStatusCode(HttpCode::HTTP_CREATED);
+
+ return $this->response->create($product);
+ }
+
+ /**
+ * @throws Throwable
+ */
+ #[OAT\Put(
+ path: '/api/admin/products/{product_id}',
+ description: 'This endpoint updates fields of category.',
+ summary: 'Update category contents.',
+ tags: ['products'],
+ parameters: [
+ new OAT\Parameter(
+ name: 'product_id',
+ in: 'path',
+ required: true,
+ schema: new OAT\Schema(type: 'string')
+ ),
+ ]
+ )]
+ #[OAT\RequestBody(
+ description: 'Product data',
+ required: true,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: UpdateProductDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_CREATED,
+ description: HttpStatus::HTTP_CREATED,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewProductDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNPROCESSABLE_ENTITY,
+ description: HttpStatus::HTTP_UNPROCESSABLE_ENTITY
+ )]
+ public function update(Authenticatable $user, Product $product, UpdateProductService $service, UpdateFormRequest $request): Response
+ {
+ $dto = $this->serializer->unserialize(
+ $request->getContent(),
+ UpdateProductDto::class
+ );
+
+ $command = new UpdateProduct($product, $dto, $user->getFootprint());
+ $product = $service->handle($command);
+
+ $this->response->withStatusCode(HttpCode::HTTP_CREATED);
+
+ return $this->response->create($product);
+ }
+}
diff --git a/app/src/Bridge/Laravel/Admin/Product/Requests/QueryFormRequest.php b/app/src/Bridge/Laravel/Admin/Product/Requests/QueryFormRequest.php
new file mode 100644
index 0000000..9b16c28
--- /dev/null
+++ b/app/src/Bridge/Laravel/Admin/Product/Requests/QueryFormRequest.php
@@ -0,0 +1,15 @@
+ ['required'],
+ 'status' => ['required'],
+ 'description' => ['required'],
+ 'code.sku' => ['nullable', new Unique($database, 'products', 'code_sku')],
+ 'code.ian' => ['nullable', new Unique($database, 'products', 'code_ian')],
+ 'code.upc' => ['nullable', new Unique($database, 'products', 'code_upc')],
+ 'seo.slug' => ['nullable', new Unique($database, 'products', 'seo_slug')],
+ 'seo.title' => ['nullable'],
+ 'seo.description' => ['nullable'],
+ 'category.id' => ['required', 'uuid', new Exists($database, 'categories', 'id')],
+ ];
+ }
+}
diff --git a/app/src/Bridge/Laravel/Admin/Product/Requests/UpdateFormRequest.php b/app/src/Bridge/Laravel/Admin/Product/Requests/UpdateFormRequest.php
new file mode 100644
index 0000000..d2dcf2b
--- /dev/null
+++ b/app/src/Bridge/Laravel/Admin/Product/Requests/UpdateFormRequest.php
@@ -0,0 +1,21 @@
+ [''],
+ 'code.sku' => [''],
+ 'code.ian' => [''],
+ 'code.upc' => [''],
+ 'description' => [],
+ ];
+ }
+}
diff --git a/app/src/Bridge/Laravel/Admin/Spec/OpenApi.php b/app/src/Bridge/Laravel/Admin/Spec/OpenApi.php
new file mode 100644
index 0000000..08cc9e2
--- /dev/null
+++ b/app/src/Bridge/Laravel/Admin/Spec/OpenApi.php
@@ -0,0 +1,20 @@
+load(__DIR__ . '/Commands');
+ $this->load(__DIR__ . '/Console/Commands');
}
}
diff --git a/app/src/Bridge/Laravel/Http/ApiController.php b/app/src/Bridge/Laravel/Http/ApiController.php
new file mode 100644
index 0000000..e7a1d84
--- /dev/null
+++ b/app/src/Bridge/Laravel/Http/ApiController.php
@@ -0,0 +1,30 @@
+response = $response;
+ $this->serializer = $serializerManager->getSerializer('json');
+ }
+}
diff --git a/app/src/Bridge/Laravel/Http/Controllers/Controller.php b/app/src/Bridge/Laravel/Http/Controllers/Controller.php
deleted file mode 100644
index c79a150..0000000
--- a/app/src/Bridge/Laravel/Http/Controllers/Controller.php
+++ /dev/null
@@ -1,15 +0,0 @@
-headers->set('Accept', 'application/json');
+
+ return $next($request);
+ }
+}
diff --git a/app/src/Bridge/Laravel/Http/Middleware/Authenticate.php b/app/src/Bridge/Laravel/Http/Middleware/Authenticate.php
index b896383..8f4175f 100644
--- a/app/src/Bridge/Laravel/Http/Middleware/Authenticate.php
+++ b/app/src/Bridge/Laravel/Http/Middleware/Authenticate.php
@@ -5,15 +5,11 @@
namespace Laravel\Http\Middleware;
use Illuminate\Auth\Middleware\Authenticate as Middleware;
-use Illuminate\Http\Request;
final class Authenticate extends Middleware
{
- /**
- * Get the path the user should be redirected to when they are not authenticated.
- */
- protected function redirectTo(Request $request): ?string
+ protected function unauthenticated($request, array $guards): void
{
- return $request->expectsJson() ? null : route('login');
+ abort(401);
}
}
diff --git a/app/src/Bridge/Laravel/Http/Middleware/EncryptCookies.php b/app/src/Bridge/Laravel/Http/Middleware/EncryptCookies.php
deleted file mode 100644
index ee13d11..0000000
--- a/app/src/Bridge/Laravel/Http/Middleware/EncryptCookies.php
+++ /dev/null
@@ -1,18 +0,0 @@
-
- */
- protected $except = [
- ];
-}
diff --git a/app/src/Bridge/Laravel/Http/Middleware/SupportsPagination.php b/app/src/Bridge/Laravel/Http/Middleware/SupportsPagination.php
new file mode 100644
index 0000000..3e997b3
--- /dev/null
+++ b/app/src/Bridge/Laravel/Http/Middleware/SupportsPagination.php
@@ -0,0 +1,39 @@
+app = $app;
+ $this->config = $config;
+ }
+
+ public function handle(Request $request, Closure $next): mixed
+ {
+ $defaultPage = $this->config->get('pagination.page', 1);
+ $defaultPerPage = $this->config->get('pagination.per_page', 20);
+
+ $this->app->singleton(Pagination::class, static function () use ($request, $defaultPage, $defaultPerPage): Pagination {
+ return new Pagination(
+ (int) $request->get('page', $defaultPage),
+ (int) $request->get('per_page', $defaultPerPage)
+ );
+ });
+
+ return $next($request);
+ }
+}
diff --git a/app/src/Bridge/Laravel/Http/Middleware/VerifyCsrfToken.php b/app/src/Bridge/Laravel/Http/Middleware/VerifyCsrfToken.php
deleted file mode 100644
index 5a4c58f..0000000
--- a/app/src/Bridge/Laravel/Http/Middleware/VerifyCsrfToken.php
+++ /dev/null
@@ -1,18 +0,0 @@
-
- */
- protected $except = [
- ];
-}
diff --git a/app/src/Bridge/Laravel/Http/Kernel.php b/app/src/Bridge/Laravel/HttpKernel.php
similarity index 63%
rename from app/src/Bridge/Laravel/Http/Kernel.php
rename to app/src/Bridge/Laravel/HttpKernel.php
index cf48d5c..9eec97f 100644
--- a/app/src/Bridge/Laravel/Http/Kernel.php
+++ b/app/src/Bridge/Laravel/HttpKernel.php
@@ -2,11 +2,16 @@
declare(strict_types=1);
-namespace Laravel\Http;
+namespace Laravel;
-use Illuminate\Foundation\Http\Kernel as HttpKernel;
+use Auth0\Laravel\Middleware\AuthorizerMiddleware;
+use Illuminate\Foundation\Http\Kernel;
+use Illuminate\Routing\Middleware\SubstituteBindings;
+use Illuminate\Routing\Middleware\ThrottleRequests;
+use Laravel\Http\Middleware\AcceptsJson;
+use Laravel\Http\Middleware\SupportsPagination;
-final class Kernel extends HttpKernel
+final class HttpKernel extends Kernel
{
/**
* The application's global HTTP middleware stack.
@@ -16,6 +21,8 @@ final class Kernel extends HttpKernel
* @var array
*/
protected $middleware = [
+ AcceptsJson::class,
+ SupportsPagination::class,
\Laravel\Http\Middleware\TrustHosts::class,
\Laravel\Http\Middleware\TrustProxies::class,
\Illuminate\Http\Middleware\HandleCors::class,
@@ -32,17 +39,26 @@ final class Kernel extends HttpKernel
*/
protected $middlewareGroups = [
'web' => [
- \Laravel\Http\Middleware\EncryptCookies::class,
+ \Illuminate\Cookie\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
- \Laravel\Http\Middleware\VerifyCsrfToken::class,
- \Illuminate\Routing\Middleware\SubstituteBindings::class,
+ \Illuminate\Foundation\Http\Middleware\VerifyCsrfToken::class,
+ SubstituteBindings::class,
],
- 'api' => [
- \Illuminate\Routing\Middleware\ThrottleRequests::class . ':api',
- \Illuminate\Routing\Middleware\SubstituteBindings::class,
+ 'api-public' => [
+ // ThrottleRequests::class . ':api',
+ AuthorizerMiddleware::class,
+ AcceptsJson::class,
+ SubstituteBindings::class,
+ ],
+
+ 'api-private' => [
+ // ThrottleRequests::class . ':api',
+ AuthorizerMiddleware::class,
+ AcceptsJson::class,
+ SubstituteBindings::class,
],
];
@@ -55,14 +71,10 @@ final class Kernel extends HttpKernel
*/
protected $middlewareAliases = [
'auth' => \Laravel\Http\Middleware\Authenticate::class,
- 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
- 'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class,
'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
'can' => \Illuminate\Auth\Middleware\Authorize::class,
'guest' => \Laravel\Http\Middleware\RedirectIfAuthenticated::class,
- 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class,
'signed' => \Laravel\Http\Middleware\ValidateSignature::class,
- 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
- 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
+ 'throttle' => ThrottleRequests::class,
];
}
diff --git a/app/src/Bridge/Laravel/Providers/AppServiceProvider.php b/app/src/Bridge/Laravel/Providers/AppServiceProvider.php
index ac27138..bbf5ed4 100644
--- a/app/src/Bridge/Laravel/Providers/AppServiceProvider.php
+++ b/app/src/Bridge/Laravel/Providers/AppServiceProvider.php
@@ -5,6 +5,8 @@
namespace Laravel\Providers;
use Illuminate\Support\ServiceProvider;
+use Lcobucci\Clock\Clock;
+use Lcobucci\Clock\SystemClock;
final class AppServiceProvider extends ServiceProvider
{
@@ -13,6 +15,9 @@ final class AppServiceProvider extends ServiceProvider
*/
public function register(): void
{
+ $this->app->bind(Clock::class, static function (): SystemClock {
+ return SystemClock::fromSystemTimezone();
+ });
}
/**
diff --git a/app/src/Bridge/Laravel/Providers/Domain/CartServiceProvider.php b/app/src/Bridge/Laravel/Providers/Domain/CartServiceProvider.php
new file mode 100644
index 0000000..037ceef
--- /dev/null
+++ b/app/src/Bridge/Laravel/Providers/Domain/CartServiceProvider.php
@@ -0,0 +1,62 @@
+bindCartEntity();
+ }
+
+ public function register(): void
+ {
+ $this->app->bind(
+ CartRepository::class,
+ ORMCartRepository::class
+ );
+
+ $this->app->when(ORMCartRepository::class)
+ ->needs(Select::class)
+ ->give(function (): Select {
+ return new Select($this->app->make(ORMInterface::class), 'cart');
+ });
+
+ $this->app->bind(CartIdGenerator::class, CartRepository::class);
+ }
+
+ /**
+ * @throws BindingResolutionException
+ */
+ private function bindCartEntity(): void
+ {
+ $repository = $this->app->make(CartRepository::class);
+
+ Route::bind('cart', static function ($value) use ($repository) {
+ /** @var Cart|null $cart */
+ $cart = $repository->findById($value);
+
+ if (null === $cart) {
+ throw new CartNotFoundException();
+ }
+
+ return $cart;
+ });
+ }
+}
diff --git a/app/src/Bridge/Laravel/Providers/Domain/CategoryServiceProvider.php b/app/src/Bridge/Laravel/Providers/Domain/CategoryServiceProvider.php
new file mode 100644
index 0000000..d7f3337
--- /dev/null
+++ b/app/src/Bridge/Laravel/Providers/Domain/CategoryServiceProvider.php
@@ -0,0 +1,62 @@
+bindCategoryEntity();
+ }
+
+ public function register(): void
+ {
+ $this->app->bind(
+ CategoryRepository::class,
+ ORMCategoryRepository::class
+ );
+
+ $this->app->when(ORMCategoryRepository::class)
+ ->needs(Select::class)
+ ->give(function (): Select {
+ return new Select($this->app->make(ORMInterface::class), 'category');
+ });
+
+ $this->app->bind(CategoryIdGenerator::class, CategoryRepository::class);
+ }
+
+ /**
+ * @throws BindingResolutionException
+ */
+ private function bindCategoryEntity(): void
+ {
+ $repository = $this->app->make(CategoryRepository::class);
+
+ Route::bind('category', static function ($value) use ($repository) {
+ /** @var Category|null $category */
+ $category = $repository->findById($value);
+
+ if (null === $category) {
+ throw new CategoryNotFoundException();
+ }
+
+ return $category;
+ });
+ }
+}
diff --git a/app/src/Bridge/Laravel/Providers/Domain/ClientServiceProvider.php b/app/src/Bridge/Laravel/Providers/Domain/ClientServiceProvider.php
new file mode 100644
index 0000000..8172a8e
--- /dev/null
+++ b/app/src/Bridge/Laravel/Providers/Domain/ClientServiceProvider.php
@@ -0,0 +1,87 @@
+bindClientEntity();
+ }
+
+ public function register(): void
+ {
+ $this->registerClientRepository();
+ $this->registerAddressRepository();
+ }
+
+ private function registerClientRepository(): void
+ {
+ $this->app->bind(
+ ClientRepository::class,
+ ORMClientRepository::class
+ );
+
+ $this->app->when(ORMClientRepository::class)
+ ->needs(Select::class)
+ ->give(function (): Select {
+ return new Select($this->app->make(ORMInterface::class), 'client');
+ });
+
+ $this->app->bind(ClientIdGenerator::class, ClientRepository::class);
+ }
+
+ private function registerAddressRepository(): void
+ {
+ $this->app->bind(
+ AddressRepository::class,
+ ORMAddressRepository::class
+ );
+
+ $this->app->when(ORMAddressRepository::class)
+ ->needs(Select::class)
+ ->give(function (): Select {
+ return new Select($this->app->make(ORMInterface::class), 'client');
+ });
+
+ $this->app->bind(AddressIdGenerator::class, AddressRepository::class);
+ }
+
+ /**
+ * @throws BindingResolutionException
+ */
+ private function bindClientEntity(): void
+ {
+ $repository = $this->app->make(ClientRepository::class);
+
+ Route::bind('client', static function ($value) use ($repository) {
+ /** @var Client|null $client */
+ $client = $repository->findById($value);
+
+ if (null === $client) {
+ throw new ClientNotFoundException();
+ }
+
+ return $client;
+ });
+ }
+}
diff --git a/app/src/Bridge/Laravel/Providers/Domain/CountryServiceProvider.php b/app/src/Bridge/Laravel/Providers/Domain/CountryServiceProvider.php
new file mode 100644
index 0000000..8b40a48
--- /dev/null
+++ b/app/src/Bridge/Laravel/Providers/Domain/CountryServiceProvider.php
@@ -0,0 +1,59 @@
+bindCountryEntity();
+ }
+
+ public function register(): void
+ {
+ $this->app->bind(
+ CountryRepository::class,
+ ORMCountryRepository::class
+ );
+
+ $this->app->when(ORMCountryRepository::class)
+ ->needs(Select::class)
+ ->give(function (): Select {
+ return new Select($this->app->make(ORMInterface::class), 'country');
+ });
+ }
+
+ /**
+ * @throws BindingResolutionException
+ */
+ private function bindCountryEntity(): void
+ {
+ $repository = $this->app->make(CountryRepository::class);
+
+ Route::bind('country', static function ($value) use ($repository) {
+ /** @var Country|null $country */
+ $country = $repository->findById($value);
+
+ if (null === $country) {
+ throw new CountryNotFoundException();
+ }
+
+ return $country;
+ });
+ }
+}
diff --git a/app/src/Bridge/Laravel/Providers/Domain/OrderServiceProvider.php b/app/src/Bridge/Laravel/Providers/Domain/OrderServiceProvider.php
new file mode 100644
index 0000000..d57c45d
--- /dev/null
+++ b/app/src/Bridge/Laravel/Providers/Domain/OrderServiceProvider.php
@@ -0,0 +1,62 @@
+bindOrderEntity();
+ }
+
+ public function register(): void
+ {
+ $this->app->bind(
+ OrderRepository::class,
+ ORMOrderRepository::class
+ );
+
+ $this->app->when(ORMOrderRepository::class)
+ ->needs(Select::class)
+ ->give(function (): Select {
+ return new Select($this->app->make(ORMInterface::class), 'order');
+ });
+
+ $this->app->bind(OrderIdGenerator::class, OrderRepository::class);
+ }
+
+ /**
+ * @throws BindingResolutionException
+ */
+ private function bindOrderEntity(): void
+ {
+ $repository = $this->app->make(OrderRepository::class);
+
+ Route::bind('order', static function ($value) use ($repository) {
+ /** @var Order|null $order */
+ $order = $repository->findById($value);
+
+ if (null === $order) {
+ throw new OrderNotFoundException();
+ }
+
+ return $order;
+ });
+ }
+}
diff --git a/app/src/Bridge/Laravel/Providers/Domain/ProductServiceProvider.php b/app/src/Bridge/Laravel/Providers/Domain/ProductServiceProvider.php
new file mode 100644
index 0000000..950c5d7
--- /dev/null
+++ b/app/src/Bridge/Laravel/Providers/Domain/ProductServiceProvider.php
@@ -0,0 +1,62 @@
+bindProductEntity();
+ }
+
+ public function register(): void
+ {
+ $this->app->bind(
+ ProductRepository::class,
+ ORMProductRepository::class
+ );
+
+ $this->app->when(ORMProductRepository::class)
+ ->needs(Select::class)
+ ->give(function (): Select {
+ return new Select($this->app->make(ORMInterface::class), 'product');
+ });
+
+ $this->app->bind(ProductIdGenerator::class, ProductRepository::class);
+ }
+
+ /**
+ * @throws BindingResolutionException
+ */
+ private function bindProductEntity(): void
+ {
+ $repository = $this->app->make(ProductRepository::class);
+
+ Route::bind('product', static function ($value) use ($repository) {
+ /** @var Product|null $product */
+ $product = $repository->findById($value);
+
+ if (null === $product) {
+ throw new ProductNotFoundException();
+ }
+
+ return $product;
+ });
+ }
+}
diff --git a/app/src/Bridge/Laravel/Providers/RouteServiceProvider.php b/app/src/Bridge/Laravel/Providers/RouteServiceProvider.php
index a9f8970..b72f86b 100644
--- a/app/src/Bridge/Laravel/Providers/RouteServiceProvider.php
+++ b/app/src/Bridge/Laravel/Providers/RouteServiceProvider.php
@@ -31,10 +31,6 @@ public function boot(): void
});
$this->routes(function (): void {
- Route::middleware('api')
- ->prefix('api')
- ->group(base_path('routes/api.php'));
-
Route::middleware('web')
->group(base_path('routes/web.php'));
});
diff --git a/app/src/Bridge/Laravel/Public/Cart/Controllers/CartController.php b/app/src/Bridge/Laravel/Public/Cart/Controllers/CartController.php
new file mode 100644
index 0000000..5e8535a
--- /dev/null
+++ b/app/src/Bridge/Laravel/Public/Cart/Controllers/CartController.php
@@ -0,0 +1,119 @@
+response->create(
+ $service->handle(new ViewCart($cart))
+ );
+ }
+
+ /**
+ * @throws Throwable
+ */
+ #[OAT\Post(
+ path: '/api/public/carts',
+ description: 'This endpoint stores new cart into database storage.',
+ summary: 'Store new cart',
+ tags: ['carts']
+ )]
+ #[OAT\RequestBody(
+ description: 'Cart data',
+ required: true,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: StoreCartDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_CREATED,
+ description: HttpStatus::HTTP_CREATED,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewCartDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNPROCESSABLE_ENTITY,
+ description: HttpStatus::HTTP_UNPROCESSABLE_ENTITY
+ )]
+ public function store(?Authenticatable $user, StoreCartService $service, StoreFormRequest $request): Response
+ {
+ // $dto = $this->serializer->unserialize(
+ // $request->getContent(),
+ // StoreCartDto::class
+ // );
+ // $command = new StoreCart($dto, $user?->getFootprint());
+
+ $command = new StoreCart($user?->getFootprint());
+ $product = $service->handle($command);
+
+ $this->response->withStatusCode(HttpCode::HTTP_CREATED);
+
+ return $this->response->create($product);
+ }
+}
diff --git a/app/src/Bridge/Laravel/Public/Cart/Requests/StoreFormRequest.php b/app/src/Bridge/Laravel/Public/Cart/Requests/StoreFormRequest.php
new file mode 100644
index 0000000..750a3e8
--- /dev/null
+++ b/app/src/Bridge/Laravel/Public/Cart/Requests/StoreFormRequest.php
@@ -0,0 +1,15 @@
+toDto(new QueryCategoryDto());
+
+ $collection = $service->handle(
+ new ListCategories($requestQuery),
+ $pagination
+ );
+
+ return $this->response->fromArray(
+ $collection->toArray()
+ )->withHeaders($collection->headers());
+ }
+
+ #[OAT\Get(
+ path: '/api/public/categories/{category_id}',
+ description: 'This endpoint returns a single category.',
+ summary: 'Get single category.',
+ tags: ['categories'],
+ parameters: [
+ new OAT\Parameter(
+ name: 'category_id',
+ in: 'path',
+ required: true,
+ schema: new OAT\Schema(type: 'string')
+ ),
+ ]
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_OK,
+ description: HttpStatus::HTTP_OK,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewCategoryDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ public function show(Category $category, ViewCategoryService $service): Response
+ {
+ return $this->response->create(
+ $service->handle(new ViewCategory($category))
+ );
+ }
+}
diff --git a/app/src/Bridge/Laravel/Public/Category/Requests/QueryFormRequest.php b/app/src/Bridge/Laravel/Public/Category/Requests/QueryFormRequest.php
new file mode 100644
index 0000000..dba3934
--- /dev/null
+++ b/app/src/Bridge/Laravel/Public/Category/Requests/QueryFormRequest.php
@@ -0,0 +1,15 @@
+toDto(new QueryAddressDto());
+
+ $collection = $service->handle(
+ new ListAddresses($requestQuery),
+ );
+
+ return $this->response->fromArray(
+ $collection->toArray()
+ )->withHeaders($collection->headers());
+ }
+
+ public function show(Authenticatable $user, Client $client, Address $address, ViewAddressService $service): Response
+ {
+ return $this->response->create(
+ $service->handle(new ViewAddress($address))
+ );
+ }
+
+ public function store(Authenticatable $user, Client $client, StoreAddressService $service, StoreFormRequest $request): Response
+ {
+ $dto = $this->serializer->unserialize(
+ $request->getContent(),
+ StoreAddressDto::class
+ );
+ $command = new StoreAddress($dto, $user->getFootprint());
+ $product = $service->handle($command);
+
+ $this->response->withStatusCode(HttpCode::HTTP_CREATED);
+
+ return $this->response->create($product);
+ }
+
+ public function update(Authenticatable $user, Client $client, Address $address, UpdateAddressService $service, UpdateFormRequest $request): Response
+ {
+ $dto = $this->serializer->unserialize(
+ $request->getContent(),
+ UpdateAddressDto::class
+ );
+
+ $command = new UpdateAddress($address, $dto, $user->getFootprint());
+ $product = $service->handle($command);
+
+ $this->response->withStatusCode(HttpCode::HTTP_CREATED);
+
+ return $this->response->create($product);
+ }
+}
diff --git a/app/src/Bridge/Laravel/Public/Client/Controllers/ClientController.php b/app/src/Bridge/Laravel/Public/Client/Controllers/ClientController.php
new file mode 100644
index 0000000..cc472db
--- /dev/null
+++ b/app/src/Bridge/Laravel/Public/Client/Controllers/ClientController.php
@@ -0,0 +1,29 @@
+response->create(
+ $service->handle(new ViewClient($client))
+ );
+ }
+}
diff --git a/app/src/Bridge/Laravel/Public/Country/Controllers/CountryController.php b/app/src/Bridge/Laravel/Public/Country/Controllers/CountryController.php
new file mode 100644
index 0000000..1c029ac
--- /dev/null
+++ b/app/src/Bridge/Laravel/Public/Country/Controllers/CountryController.php
@@ -0,0 +1,90 @@
+toDto(new QueryCountryDto());
+
+ $collection = $service->handle(new ListCountries($requestQuery));
+
+ return $this->response->fromArray(
+ $collection->toArray()
+ );
+ }
+
+ #[OAT\Get(
+ path: '/api/public/countries/{country_id}',
+ description: 'This endpoint returns a single country.',
+ summary: 'Get single country.',
+ tags: ['countries'],
+ parameters: [
+ new OAT\Parameter(
+ name: 'country_id',
+ in: 'path',
+ required: true,
+ schema: new OAT\Schema(type: 'string')
+ ),
+ ]
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_OK,
+ description: HttpStatus::HTTP_OK,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewCountryDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ public function show(Country $country, ViewCountryService $service): Response
+ {
+ return $this->response->create(
+ $service->handle(new ViewCountry($country))
+ );
+ }
+}
diff --git a/app/src/Bridge/Laravel/Public/Country/Requests/QueryFormRequest.php b/app/src/Bridge/Laravel/Public/Country/Requests/QueryFormRequest.php
new file mode 100644
index 0000000..e362132
--- /dev/null
+++ b/app/src/Bridge/Laravel/Public/Country/Requests/QueryFormRequest.php
@@ -0,0 +1,15 @@
+response->create(
+ $service->handle(new Ping($user?->getFootprint()))
+ );
+ }
+}
diff --git a/app/src/Bridge/Laravel/Public/Order/Controllers/OrderController.php b/app/src/Bridge/Laravel/Public/Order/Controllers/OrderController.php
new file mode 100644
index 0000000..4bebb8b
--- /dev/null
+++ b/app/src/Bridge/Laravel/Public/Order/Controllers/OrderController.php
@@ -0,0 +1,18 @@
+toDto(new QueryProductDto());
+
+ $collection = $service->handle(
+ new ListProducts($requestQuery),
+ $pagination
+ );
+
+ return $this->response->fromArray(
+ $collection->toArray()
+ )->withHeaders($collection->headers());
+ }
+
+ #[OAT\Get(
+ path: '/api/public/products/{product_id}',
+ description: 'This endpoint returns a single product.',
+ summary: 'Get single product.',
+ tags: ['products'],
+ parameters: [
+ new OAT\Parameter(
+ name: 'product_id',
+ in: 'path',
+ required: true,
+ schema: new OAT\Schema(type: 'string')
+ ),
+ ]
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_OK,
+ description: HttpStatus::HTTP_OK,
+ content: [
+ new OAT\MediaType(
+ mediaType: 'application/json',
+ schema: new OAT\Schema(ref: ViewProductDto::class)
+ ),
+ ],
+ )]
+ #[OAT\Response(
+ response: HttpCode::HTTP_UNAUTHORIZED,
+ description: HttpStatus::HTTP_UNAUTHORIZED
+ )]
+ public function show(Product $product, ViewProductService $service): Response
+ {
+ return $this->response->create(
+ $service->handle(new ViewProduct($product))
+ );
+ }
+}
diff --git a/app/src/Bridge/Laravel/Public/Product/Requests/QueryFormRequest.php b/app/src/Bridge/Laravel/Public/Product/Requests/QueryFormRequest.php
new file mode 100644
index 0000000..54af8d4
--- /dev/null
+++ b/app/src/Bridge/Laravel/Public/Product/Requests/QueryFormRequest.php
@@ -0,0 +1,15 @@
+ $this->id->toString(),
+ 'party' => $this->party,
+ 'realm' => $this->realm,
+ ];
+ }
+
+ public function id(): UserId
+ {
+ return $this->id;
+ }
+
+ public function party(): string
+ {
+ return $this->party;
+ }
+
+ public function realm(): string
+ {
+ return $this->realm;
+ }
+
+ public function jsonSerialize(): array
+ {
+ return $this->toArray();
+ }
+
+ /**
+ * @throws JsonException
+ */
+ public function __toString()
+ {
+ return json_encode($this->toArray(), JSON_THROW_ON_ERROR);
+ }
+
+ private function __construct(UserId $id, string $party, string $realm)
+ {
+ $this->id = $id;
+ $this->party = $party;
+ $this->realm = $realm;
+ }
+}
diff --git a/app/src/Domain/Auth/Signature.php b/app/src/Domain/Auth/Signature.php
new file mode 100644
index 0000000..31da97a
--- /dev/null
+++ b/app/src/Domain/Auth/Signature.php
@@ -0,0 +1,81 @@
+keyExists('at')
+ ->keyExists('by')
+ ;
+
+ return new self(
+ new DateTimeImmutable($data['at']),
+ Footprint::fromArray($data['by']),
+ );
+ }
+
+ public function defined(): bool
+ {
+ return isset($this->at, $this->by);
+ }
+
+ public function at(): ?DateTimeImmutable
+ {
+ return $this->at;
+ }
+
+ public function by(): ?Footprint
+ {
+ return $this->by;
+ }
+
+ public function toArray(): array
+ {
+ return [
+ 'at' => $this->at?->format(DateTimeInterface::RFC3339_EXTENDED),
+ 'by' => $this->by?->toArray(),
+ ];
+ }
+
+ public function __construct(?DateTimeImmutable $at, ?Footprint $by)
+ {
+ $this->at = $at;
+ $this->by = $by;
+ }
+}
diff --git a/app/src/Domain/Auth/UserId.php b/app/src/Domain/Auth/UserId.php
new file mode 100644
index 0000000..a6a5807
--- /dev/null
+++ b/app/src/Domain/Auth/UserId.php
@@ -0,0 +1,31 @@
+toString());
+ }
+
+ /**
+ * @throws AssertionFailedException
+ */
+ public static function fromString(string $aggregateRootId): static
+ {
+ return new self($aggregateRootId);
+ }
+}
diff --git a/app/src/Domain/Cart/Cart.php b/app/src/Domain/Cart/Cart.php
new file mode 100644
index 0000000..c1e5beb
--- /dev/null
+++ b/app/src/Domain/Cart/Cart.php
@@ -0,0 +1,90 @@
+id = $id;
+ $this->created = $signature;
+ $this->updated = clone $signature;
+ $this->deleted = Signature::empty();
+
+ $this->items = new Collection();
+ }
+
+ public function aggregateRootId(): AggregateRootId
+ {
+ return $this->id;
+ }
+
+ public function incrementalId(): int
+ {
+ return $this->incrementalId;
+ }
+
+ public function id(): CartId
+ {
+ return $this->id;
+ }
+
+ public function items(): Collection
+ {
+ return $this->items;
+ }
+
+ public function created(): Signature
+ {
+ return $this->created;
+ }
+
+ public function updated(): Signature
+ {
+ return $this->updated;
+ }
+
+ public function deleted(): ?Signature
+ {
+ if (! $this->deleted?->defined()) {
+ return null;
+ }
+
+ return $this->deleted;
+ }
+}
diff --git a/app/src/Domain/Cart/CartId.php b/app/src/Domain/Cart/CartId.php
new file mode 100644
index 0000000..1f02f98
--- /dev/null
+++ b/app/src/Domain/Cart/CartId.php
@@ -0,0 +1,34 @@
+toString());
+ }
+
+ public static function fromString(string $aggregateRootId): static
+ {
+ return new self($aggregateRootId);
+ }
+
+ public static function castValue(string $value, DatabaseInterface $db): self
+ {
+ return self::fromString($value);
+ }
+}
diff --git a/app/src/Domain/Cart/CartRepository.php b/app/src/Domain/Cart/CartRepository.php
new file mode 100644
index 0000000..8f53806
--- /dev/null
+++ b/app/src/Domain/Cart/CartRepository.php
@@ -0,0 +1,15 @@
+footprint;
+ }
+}
diff --git a/app/src/Domain/Cart/Factories/FromRequestCartFactory.php b/app/src/Domain/Cart/Factories/FromRequestCartFactory.php
new file mode 100644
index 0000000..24f268c
--- /dev/null
+++ b/app/src/Domain/Cart/Factories/FromRequestCartFactory.php
@@ -0,0 +1,34 @@
+footprint()) {
+ $signature = Signature::empty();
+ } else {
+ $signature = new Signature($this->clock->now(), $input->footprint());
+ }
+
+ return new Cart(
+ id: $this->generator->nextId(),
+ signature: $signature,
+ );
+ }
+}
diff --git a/app/src/Domain/Cart/Item.php b/app/src/Domain/Cart/Item.php
new file mode 100644
index 0000000..62fa65c
--- /dev/null
+++ b/app/src/Domain/Cart/Item.php
@@ -0,0 +1,15 @@
+id = $id;
+ $this->name = $name;
+ $this->gender = $gender;
+ $this->created = $signature;
+ $this->updated = clone $signature;
+ $this->deleted = Signature::empty();
+
+ $this->recordThat(new CategoryCreated($id, $name, $gender, $signature));
+ }
+
+ public function aggregateRootId(): AggregateRootId
+ {
+ return $this->id;
+ }
+
+ public function incrementalId(): int
+ {
+ return $this->incrementalId;
+ }
+
+ public function id(): CategoryId
+ {
+ return $this->id;
+ }
+
+ public function name(): string
+ {
+ return $this->name;
+ }
+
+ public function gender(): Gender
+ {
+ return $this->gender;
+ }
+
+ public function created(): Signature
+ {
+ return $this->created;
+ }
+
+ public function updated(): Signature
+ {
+ return $this->updated;
+ }
+
+ public function deleted(): ?Signature
+ {
+ if (! $this->deleted?->defined()) {
+ return null;
+ }
+
+ return $this->deleted;
+ }
+
+ public function changeName(string $name, Signature $signature): void
+ {
+ $this->name = $name;
+ $this->updated = $signature;
+ }
+
+ public function changeGender(Gender $gender, Signature $signature): void
+ {
+ $this->gender = $gender;
+ $this->updated = $signature;
+ }
+}
diff --git a/app/src/Domain/Category/CategoryId.php b/app/src/Domain/Category/CategoryId.php
new file mode 100644
index 0000000..1cab49e
--- /dev/null
+++ b/app/src/Domain/Category/CategoryId.php
@@ -0,0 +1,34 @@
+toString());
+ }
+
+ public static function fromString(string $aggregateRootId): static
+ {
+ return new self($aggregateRootId);
+ }
+
+ public static function castValue(string $value, DatabaseInterface $db): self
+ {
+ return self::fromString($value);
+ }
+}
diff --git a/app/src/Domain/Category/CategoryRepository.php b/app/src/Domain/Category/CategoryRepository.php
new file mode 100644
index 0000000..7bde959
--- /dev/null
+++ b/app/src/Domain/Category/CategoryRepository.php
@@ -0,0 +1,15 @@
+ $this->id->toString(),
+ 'name' => $this->name,
+ 'gender' => $this->gender->toString(),
+ 'signature' => $this->signature->toArray(),
+ ];
+ }
+
+ public function jsonSerialize(): array
+ {
+ return $this->toPayload();
+ }
+}
diff --git a/app/src/Domain/Category/Exceptions/CategoryNotFoundException.php b/app/src/Domain/Category/Exceptions/CategoryNotFoundException.php
new file mode 100644
index 0000000..b65dc4f
--- /dev/null
+++ b/app/src/Domain/Category/Exceptions/CategoryNotFoundException.php
@@ -0,0 +1,11 @@
+name;
+ }
+
+ public function gender(): Gender
+ {
+ return $this->gender;
+ }
+
+ public function footprint(): Footprint
+ {
+ return $this->footprint;
+ }
+}
diff --git a/app/src/Domain/Category/Factories/FromRequestCategoryFactory.php b/app/src/Domain/Category/Factories/FromRequestCategoryFactory.php
new file mode 100644
index 0000000..7a55e36
--- /dev/null
+++ b/app/src/Domain/Category/Factories/FromRequestCategoryFactory.php
@@ -0,0 +1,32 @@
+clock->now(), $input->footprint());
+
+ return new Category(
+ id: $this->generator->nextId(),
+ name: $input->name(),
+ gender: $input->gender(),
+ signature: $signature,
+ );
+ }
+}
diff --git a/app/src/Domain/Client/Address/Address.php b/app/src/Domain/Client/Address/Address.php
new file mode 100644
index 0000000..4073152
--- /dev/null
+++ b/app/src/Domain/Client/Address/Address.php
@@ -0,0 +1,119 @@
+id = $id;
+ $this->type = $type;
+ $this->isDefault = $isDefault;
+ $this->client = $client;
+ $this->created = $signature;
+ $this->updated = clone $signature;
+ $this->deleted = Signature::empty();
+ }
+
+ public function incrementId(): int
+ {
+ return $this->incrementalId;
+ }
+
+ public function id(): AddressId
+ {
+ return $this->id;
+ }
+
+ public function type(): Type
+ {
+ return $this->type;
+ }
+
+ public function isDefault(): bool
+ {
+ return $this->isDefault;
+ }
+
+ public function client(): Client
+ {
+ return $this->client;
+ }
+
+ public function created(): Signature
+ {
+ return $this->created;
+ }
+
+ public function updated(): Signature
+ {
+ return $this->updated;
+ }
+
+ public function deleted(): ?Signature
+ {
+ return $this->deleted;
+ }
+}
diff --git a/app/src/Domain/Client/Address/Type.php b/app/src/Domain/Client/Address/Type.php
new file mode 100644
index 0000000..f724f54
--- /dev/null
+++ b/app/src/Domain/Client/Address/Type.php
@@ -0,0 +1,22 @@
+toString());
+ }
+
+ public static function fromString(string $aggregateRootId): static
+ {
+ return new self($aggregateRootId);
+ }
+
+ public static function castValue(string $value, DatabaseInterface $db): self
+ {
+ return self::fromString($value);
+ }
+}
diff --git a/app/src/Domain/Client/AddressRepository.php b/app/src/Domain/Client/AddressRepository.php
new file mode 100644
index 0000000..d6d4a67
--- /dev/null
+++ b/app/src/Domain/Client/AddressRepository.php
@@ -0,0 +1,15 @@
+date->format(self::FORMAT);
+ }
+
+ public function __toString(): string
+ {
+ return $this->toString();
+ }
+
+ public function jsonSerialize(): string
+ {
+ return $this->toString();
+ }
+
+ private function __construct(DateTimeImmutable $date)
+ {
+ $this->date = $date->setTime(0, 0);
+ }
+}
diff --git a/app/src/Domain/Client/Client.php b/app/src/Domain/Client/Client.php
new file mode 100644
index 0000000..f25de51
--- /dev/null
+++ b/app/src/Domain/Client/Client.php
@@ -0,0 +1,186 @@
+id = $id;
+ $this->userId = $userId;
+ $this->email = $email;
+ $this->username = $username;
+ $this->name = $name;
+ $this->personalInfo = $personalInfo;
+ $this->company = $company;
+ $this->addresses = new Collection();
+ $this->created = $signature;
+ $this->updated = clone $signature;
+ $this->deleted = Signature::empty();
+
+ $this->recordThat(new ClientCreated(
+ $id,
+ $userId,
+ $email,
+ $username,
+ $name,
+ $company,
+ $signature,
+ ));
+ }
+
+ public function aggregateRootId(): AggregateRootId
+ {
+ return $this->id;
+ }
+
+ public function incrementalId(): int
+ {
+ return $this->incrementalId;
+ }
+
+ public function id(): ClientId
+ {
+ return $this->id;
+ }
+
+ public function userId(): ?UserId
+ {
+ return $this->userId;
+ }
+
+ public function email(): ?string
+ {
+ return $this->email;
+ }
+
+ public function name(): Name
+ {
+ return $this->name;
+ }
+
+ public function firstName(): ?string
+ {
+ return $this->name->firstName();
+ }
+
+ public function lastName(): ?string
+ {
+ return $this->name->lastName();
+ }
+
+ public function personalInfo(): ?PersonalInfo
+ {
+ return $this->personalInfo;
+ }
+
+ public function company(): ?string
+ {
+ return $this->company;
+ }
+
+ public function username(): ?string
+ {
+ return $this->username;
+ }
+
+ public function addresses(): ?Collection
+ {
+ return $this->addresses;
+ }
+
+ public function addAddress(Address $address): void
+ {
+ $this->addresses->add($address);
+ }
+
+ public function removeAddress(Address $address): void
+ {
+ $this->addresses = $this->addresses->reject(function ($a) use ($address) {
+ return $a === $address;
+ });
+ }
+
+ public function created(): Signature
+ {
+ return $this->created;
+ }
+
+ public function updated(): Signature
+ {
+ return $this->updated;
+ }
+
+ public function deleted(): ?Signature
+ {
+ if (! $this->deleted?->defined()) {
+ return null;
+ }
+
+ return $this->deleted;
+ }
+}
diff --git a/app/src/Domain/Client/ClientId.php b/app/src/Domain/Client/ClientId.php
new file mode 100644
index 0000000..24130ee
--- /dev/null
+++ b/app/src/Domain/Client/ClientId.php
@@ -0,0 +1,34 @@
+toString());
+ }
+
+ public static function fromString(string $aggregateRootId): static
+ {
+ return new self($aggregateRootId);
+ }
+
+ public static function castValue(string $value, DatabaseInterface $db): self
+ {
+ return self::fromString($value);
+ }
+}
diff --git a/app/src/Domain/Client/ClientRepository.php b/app/src/Domain/Client/ClientRepository.php
new file mode 100644
index 0000000..62d0989
--- /dev/null
+++ b/app/src/Domain/Client/ClientRepository.php
@@ -0,0 +1,15 @@
+toArray();
+ }
+
+ public function toArray(): array
+ {
+ return $this->values;
+ }
+
+ public function satisfies(self $accepted): bool
+ {
+ foreach ($this->values as $field => $required) {
+ if ($required && empty($accepted->values[$field])) {
+ return false;
+ }
+ }
+
+ return true;
+ }
+
+ private function __construct(array $values)
+ {
+ $this->values = $values;
+ }
+}
diff --git a/app/src/Domain/Client/Contracts/AddressIdGenerator.php b/app/src/Domain/Client/Contracts/AddressIdGenerator.php
new file mode 100644
index 0000000..a8b0e62
--- /dev/null
+++ b/app/src/Domain/Client/Contracts/AddressIdGenerator.php
@@ -0,0 +1,12 @@
+ $payload['name']['first_name'],
+ 'last_name' => $payload['name']['last_name'],
+ ]),
+ $payload['company'],
+ Signature::fromArray($payload['signature'])
+ );
+ }
+
+ public function __construct(
+ private ClientId $id,
+ private ?UserId $userId,
+ private ?string $email,
+ private ?string $username,
+ private Name $name,
+ private ?string $company,
+ private Signature $signature
+ ) {
+ }
+
+ public function toPayload(): array
+ {
+ return [
+ 'id' => $this->id->toString(),
+ 'user_id' => $this->userId?->toString(),
+ 'email' => $this->email,
+ 'username' => $this->username,
+ 'name' => $this->name->toArray(),
+ 'company' => $this->company,
+ 'signature' => $this->signature->toArray(),
+ ];
+ }
+
+ public function jsonSerialize(): array
+ {
+ return $this->toPayload();
+ }
+}
diff --git a/app/src/Domain/Client/Exceptions/ClientNotFoundException.php b/app/src/Domain/Client/Exceptions/ClientNotFoundException.php
new file mode 100644
index 0000000..89303fb
--- /dev/null
+++ b/app/src/Domain/Client/Exceptions/ClientNotFoundException.php
@@ -0,0 +1,11 @@
+firstName = $firstName ? trim($firstName) : null;
+ $this->lastName = $lastName ? trim($lastName) : null;
+ $this->middleName = $middleName ? trim($middleName) : null;
+ }
+
+ public function firstName(): ?string
+ {
+ return $this->firstName;
+ }
+
+ public function lastName(): ?string
+ {
+ return $this->lastName;
+ }
+
+ public function middleName(): ?string
+ {
+ return $this->middleName;
+ }
+
+ public function toArray(): array
+ {
+ return [
+ 'firstName' => $this->firstName,
+ 'lastName' => $this->lastName,
+ 'middleName' => $this->middleName,
+ ];
+ }
+}
diff --git a/app/src/Domain/Client/PersonalInfo.php b/app/src/Domain/Client/PersonalInfo.php
new file mode 100644
index 0000000..29fae1f
--- /dev/null
+++ b/app/src/Domain/Client/PersonalInfo.php
@@ -0,0 +1,55 @@
+gender = $gender;
+ $this->birthDate = $birthDate;
+ }
+
+ public function gender(): ?Gender
+ {
+ return $this->gender;
+ }
+
+ public function birthDate(): ?BirthDate
+ {
+ return $this->birthDate;
+ }
+
+ public function toArray(): array
+ {
+ return [
+ 'gender' => $this->gender?->toString(),
+ 'birthDate' => $this->birthDate?->toString(),
+ ];
+ }
+}
diff --git a/app/src/Domain/Country/Country.php b/app/src/Domain/Country/Country.php
new file mode 100644
index 0000000..74c5537
--- /dev/null
+++ b/app/src/Domain/Country/Country.php
@@ -0,0 +1,68 @@
+id = $id;
+ $this->name = $name;
+ $this->code = $code;
+ $this->emoji = $emoji;
+ $this->states = new Collection();
+ }
+
+ public function id(): string
+ {
+ return $this->id;
+ }
+
+ public function code(): Iso
+ {
+ return $this->code;
+ }
+
+ public function name(): string
+ {
+ return $this->name;
+ }
+
+ public function emoji(): string
+ {
+ return $this->emoji;
+ }
+
+ public function states(): Collection
+ {
+ return $this->states;
+ }
+}
diff --git a/app/src/Domain/Country/CountryRepository.php b/app/src/Domain/Country/CountryRepository.php
new file mode 100644
index 0000000..6c12263
--- /dev/null
+++ b/app/src/Domain/Country/CountryRepository.php
@@ -0,0 +1,14 @@
+alpha2 = $alpha2;
+ $this->alpha3 = $alpha3;
+ $this->numeric = $numeric;
+ }
+
+ public function alpha2(): string
+ {
+ return $this->alpha2;
+ }
+
+ public function alpha3(): string
+ {
+ return $this->alpha3;
+ }
+
+ public function numeric(): string
+ {
+ return $this->numeric;
+ }
+
+ public function toArray(): array
+ {
+ return [
+ 'alpha2' => $this->alpha2,
+ 'alpha3' => $this->alpha3,
+ 'numeric' => $this->numeric,
+ ];
+ }
+
+ public function merge(self $other): self
+ {
+ return new self(
+ $other->alpha2 ?? $this->alpha2,
+ $other->alpha3 ?? $this->alpha3,
+ $other->numeric ?? $this->numeric
+ );
+ }
+}
diff --git a/app/src/Domain/Country/State.php b/app/src/Domain/Country/State.php
new file mode 100644
index 0000000..25445fb
--- /dev/null
+++ b/app/src/Domain/Country/State.php
@@ -0,0 +1,55 @@
+code = $code;
+ $this->name = $name;
+ $this->country = $country;
+ }
+
+ public function id(): int
+ {
+ return $this->id;
+ }
+
+ public function code(): string
+ {
+ return $this->code;
+ }
+
+ public function name(): string
+ {
+ return $this->name;
+ }
+
+ public function country(): Country
+ {
+ return $this->country;
+ }
+}
diff --git a/app/src/Domain/Order/Contracts/OrderFactory.php b/app/src/Domain/Order/Contracts/OrderFactory.php
new file mode 100644
index 0000000..7ec1a4f
--- /dev/null
+++ b/app/src/Domain/Order/Contracts/OrderFactory.php
@@ -0,0 +1,13 @@
+footprint;
+ }
+}
diff --git a/app/src/Domain/Order/Order.php b/app/src/Domain/Order/Order.php
new file mode 100644
index 0000000..4e0c4f8
--- /dev/null
+++ b/app/src/Domain/Order/Order.php
@@ -0,0 +1,78 @@
+id = $id;
+ $this->created = $signature;
+ $this->updated = clone $signature;
+ $this->deleted = Signature::empty();
+ }
+
+ public function aggregateRootId(): AggregateRootId
+ {
+ return $this->id;
+ }
+
+ public function incrementalId(): int
+ {
+ return $this->incrementalId;
+ }
+
+ public function id(): OrderId
+ {
+ return $this->id;
+ }
+
+ public function created(): Signature
+ {
+ return $this->created;
+ }
+
+ public function updated(): Signature
+ {
+ return $this->updated;
+ }
+
+ public function deleted(): ?Signature
+ {
+ if (! $this->deleted?->defined()) {
+ return null;
+ }
+
+ return $this->deleted;
+ }
+}
diff --git a/app/src/Domain/Order/OrderId.php b/app/src/Domain/Order/OrderId.php
new file mode 100644
index 0000000..f13846d
--- /dev/null
+++ b/app/src/Domain/Order/OrderId.php
@@ -0,0 +1,34 @@
+toString());
+ }
+
+ public static function fromString(string $aggregateRootId): static
+ {
+ return new self($aggregateRootId);
+ }
+
+ public static function castValue(string $value, DatabaseInterface $db): self
+ {
+ return self::fromString($value);
+ }
+}
diff --git a/app/src/Domain/Order/OrderRepository.php b/app/src/Domain/Order/OrderRepository.php
new file mode 100644
index 0000000..2e0078d
--- /dev/null
+++ b/app/src/Domain/Order/OrderRepository.php
@@ -0,0 +1,15 @@
+sku = $sku;
+ $this->ian = $ian;
+ $this->upc = $upc;
+ }
+
+ public function sku(): ?Sku
+ {
+ return $this->sku;
+ }
+
+ public function ian(): ?Ian
+ {
+ return $this->ian;
+ }
+
+ public function upc(): ?Upc
+ {
+ return $this->upc;
+ }
+
+ public function toArray(): array
+ {
+ return [
+ 'sku' => $this->sku?->toString(),
+ 'ian' => $this->ian?->toString(),
+ 'upc' => $this->upc?->toString(),
+ ];
+ }
+
+ public function merge(self $other): self
+ {
+ return new self(
+ $other->sku ?? $this->sku,
+ $other->ian ?? $this->ian,
+ $other->upc ?? $this->upc
+ );
+ }
+}
diff --git a/app/src/Domain/Product/Code/Ian.php b/app/src/Domain/Product/Code/Ian.php
new file mode 100644
index 0000000..5201652
--- /dev/null
+++ b/app/src/Domain/Product/Code/Ian.php
@@ -0,0 +1,42 @@
+ian;
+ }
+
+ public function __toString(): string
+ {
+ return $this->toString();
+ }
+
+ public function ian(): string
+ {
+ return $this->ian;
+ }
+
+ private function __construct(string $ian)
+ {
+ $this->ian = $ian;
+ }
+}
diff --git a/app/src/Domain/Product/Code/Sku.php b/app/src/Domain/Product/Code/Sku.php
new file mode 100644
index 0000000..3bb3c14
--- /dev/null
+++ b/app/src/Domain/Product/Code/Sku.php
@@ -0,0 +1,42 @@
+sku;
+ }
+
+ public function __toString(): string
+ {
+ return $this->toString();
+ }
+
+ public function sku(): string
+ {
+ return $this->sku;
+ }
+
+ private function __construct(string $sku)
+ {
+ $this->sku = $sku;
+ }
+}
diff --git a/app/src/Domain/Product/Code/Upc.php b/app/src/Domain/Product/Code/Upc.php
new file mode 100644
index 0000000..5cbf863
--- /dev/null
+++ b/app/src/Domain/Product/Code/Upc.php
@@ -0,0 +1,42 @@
+upc;
+ }
+
+ public function __toString(): string
+ {
+ return $this->toString();
+ }
+
+ public function upc(): string
+ {
+ return $this->upc;
+ }
+
+ private function __construct(string $upc)
+ {
+ $this->upc = $upc;
+ }
+}
diff --git a/app/src/Domain/Product/Contracts/ProductFactory.php b/app/src/Domain/Product/Contracts/ProductFactory.php
new file mode 100644
index 0000000..0df3726
--- /dev/null
+++ b/app/src/Domain/Product/Contracts/ProductFactory.php
@@ -0,0 +1,13 @@
+ $this->id->toString(),
+ 'name' => $this->name,
+ 'status' => $this->status,
+ 'description' => $this->description,
+ 'category' => $this->category,
+ 'code' => $this->code->toArray(),
+ 'seo' => $this->seo->toArray(),
+ 'signature' => $this->signature->toArray(),
+ ];
+ }
+
+ public function jsonSerialize(): array
+ {
+ return $this->toPayload();
+ }
+}
diff --git a/app/src/Domain/Product/Exceptions/ProductNotFoundException.php b/app/src/Domain/Product/Exceptions/ProductNotFoundException.php
new file mode 100644
index 0000000..89b0198
--- /dev/null
+++ b/app/src/Domain/Product/Exceptions/ProductNotFoundException.php
@@ -0,0 +1,11 @@
+clock->now(), $input->footprint());
+
+ /** @var Category $category */
+ $category = $this->category->findById($input->categoryId());
+
+ return new Product(
+ id: $this->generator->nextId(),
+ name: $input->name(),
+ status: $input->status(),
+ description: $input->description(),
+ category: $category,
+ code: $input->code(),
+ seo: $input->seo(),
+ signature: $signature,
+ );
+ }
+}
diff --git a/app/src/Domain/Product/Factories/ProductInput.php b/app/src/Domain/Product/Factories/ProductInput.php
new file mode 100644
index 0000000..7cfbe91
--- /dev/null
+++ b/app/src/Domain/Product/Factories/ProductInput.php
@@ -0,0 +1,59 @@
+name;
+ }
+
+ public function status(): Status
+ {
+ return $this->status;
+ }
+
+ public function description(): string
+ {
+ return $this->description;
+ }
+
+ public function categoryId(): string
+ {
+ return $this->categoryId;
+ }
+
+ public function code(): Code
+ {
+ return $this->code;
+ }
+
+ public function seo(): Seo
+ {
+ return $this->seo;
+ }
+
+ public function footprint(): Footprint
+ {
+ return $this->footprint;
+ }
+}
diff --git a/app/src/Domain/Product/Product.php b/app/src/Domain/Product/Product.php
new file mode 100644
index 0000000..3725196
--- /dev/null
+++ b/app/src/Domain/Product/Product.php
@@ -0,0 +1,189 @@
+id = $id;
+ $this->name = $name;
+ $this->status = $status;
+ $this->description = $description;
+ $this->category = $category;
+ $this->code = $code;
+ $this->seo = $seo;
+ $this->created = $signature;
+ $this->updated = clone $signature;
+ $this->deleted = Signature::empty();
+
+ $this->recordThat(new ProductCreated(
+ $id,
+ $name,
+ $status,
+ $description,
+ $category,
+ $code,
+ $seo,
+ $signature
+ ));
+ }
+
+ public function aggregateRootId(): AggregateRootId
+ {
+ return $this->id;
+ }
+
+ public function incrementalId(): int
+ {
+ return $this->incrementalId;
+ }
+
+ public function id(): ProductId
+ {
+ return $this->id;
+ }
+
+ public function name(): string
+ {
+ return $this->name;
+ }
+
+ public function status(): Status
+ {
+ return $this->status;
+ }
+
+ public function description(): string
+ {
+ return $this->description;
+ }
+
+ public function category(): Category
+ {
+ return $this->category;
+ }
+
+ public function code(): Code
+ {
+ return $this->code;
+ }
+
+ public function seo(): Seo
+ {
+ return $this->seo;
+ }
+
+ public function created(): Signature
+ {
+ return $this->created;
+ }
+
+ public function updated(): Signature
+ {
+ return $this->updated;
+ }
+
+ public function deleted(): ?Signature
+ {
+ if (! $this->deleted?->defined()) {
+ return null;
+ }
+
+ return $this->deleted;
+ }
+
+ public function changeName(string $name, Signature $signature): void
+ {
+ $this->name = $name;
+ $this->updated = $signature;
+ }
+
+ public function changeStatus(Status $status, Signature $signature): void
+ {
+ $this->status = $status;
+ $this->updated = $signature;
+ }
+
+ public function changeDescription(string $description, Signature $signature): void
+ {
+ $this->description = $description;
+ $this->updated = $signature;
+ }
+
+ public function changeCategory(Category $category, Signature $signature): void
+ {
+ $this->category = $category;
+ $this->updated = $signature;
+ }
+
+ public function changeCode(Code $code, Signature $signature): void
+ {
+ $this->code = $this->code->merge($code);
+ $this->updated = $signature;
+ }
+
+ public function changeSeo(Seo $seo, Signature $signature): void
+ {
+ $this->seo = $this->seo->merge($seo);
+ $this->updated = $signature;
+ }
+}
diff --git a/app/src/Domain/Product/ProductId.php b/app/src/Domain/Product/ProductId.php
new file mode 100644
index 0000000..a0ae43b
--- /dev/null
+++ b/app/src/Domain/Product/ProductId.php
@@ -0,0 +1,34 @@
+toString());
+ }
+
+ public static function fromString(string $aggregateRootId): static
+ {
+ return new self($aggregateRootId);
+ }
+
+ public static function castValue(string $value, DatabaseInterface $db): self
+ {
+ return self::fromString($value);
+ }
+}
diff --git a/app/src/Domain/Product/ProductRepository.php b/app/src/Domain/Product/ProductRepository.php
new file mode 100644
index 0000000..edf69c7
--- /dev/null
+++ b/app/src/Domain/Product/ProductRepository.php
@@ -0,0 +1,15 @@
+slug = $slug;
+ $this->title = $title;
+ $this->description = $description;
+ }
+
+ public function slug(): ?string
+ {
+ return $this->slug;
+ }
+
+ public function title(): ?string
+ {
+ return $this->title;
+ }
+
+ public function description(): ?string
+ {
+ return $this->description;
+ }
+
+ public function toArray(): array
+ {
+ return [
+ 'slug' => $this->slug,
+ 'title' => $this->title,
+ 'description' => $this->description,
+ ];
+ }
+
+ public function merge(self $other): self
+ {
+ return new self(
+ $other->slug ?? $this->slug,
+ $other->title ?? $this->title,
+ $other->description ?? $this->description
+ );
+ }
+}
diff --git a/app/src/Domain/Product/Status.php b/app/src/Domain/Product/Status.php
new file mode 100644
index 0000000..2ff3a18
--- /dev/null
+++ b/app/src/Domain/Product/Status.php
@@ -0,0 +1,24 @@
+name = $name;
- }
-}
diff --git a/app/src/Domain/Role/RoleRepository.php b/app/src/Domain/Role/RoleRepository.php
deleted file mode 100644
index b2d4386..0000000
--- a/app/src/Domain/Role/RoleRepository.php
+++ /dev/null
@@ -1,12 +0,0 @@
-page;
+ }
+
+ public function perPage(): int
+ {
+ return $this->perPage;
+ }
+}
diff --git a/app/src/Domain/Shared/Gender.php b/app/src/Domain/Shared/Gender.php
new file mode 100644
index 0000000..f70f1ce
--- /dev/null
+++ b/app/src/Domain/Shared/Gender.php
@@ -0,0 +1,23 @@
+value;
+ }
+}
diff --git a/app/src/Domain/User/User.php b/app/src/Domain/User/User.php
deleted file mode 100644
index 76807b9..0000000
--- a/app/src/Domain/User/User.php
+++ /dev/null
@@ -1,50 +0,0 @@
-roles = new Collection();
- }
-
- public function incrementalId(): ?int
- {
- return $this->incrementalId;
- }
-
- public function name(): string
- {
- return $this->name;
- }
-}
diff --git a/app/src/Domain/User/UserRepository.php b/app/src/Domain/User/UserRepository.php
deleted file mode 100644
index 90f6032..0000000
--- a/app/src/Domain/User/UserRepository.php
+++ /dev/null
@@ -1,12 +0,0 @@
-clientRepository->findOne([
+ 'auth0_id' => $user['email'],
+ ]);
+
+ if (! $client) {
+ return null;
+ }
+
+ $client->token($user);
+
+ dd($user);
+
+ return $client;
+
+ return new StatelessUser($user);
+ }
+
+ public function fromSession(array $user): ?Authenticatable
+ {
+ return new StatefulUser($user);
+ }
+}
diff --git a/app/src/Infrastructure/Persistence/Cycle/ORMAddressRepository.php b/app/src/Infrastructure/Persistence/Cycle/ORMAddressRepository.php
new file mode 100644
index 0000000..21c07c2
--- /dev/null
+++ b/app/src/Infrastructure/Persistence/Cycle/ORMAddressRepository.php
@@ -0,0 +1,26 @@
+findOne(['id' => $id]);
+ }
+}
diff --git a/app/src/Infrastructure/Persistence/Cycle/ORMCartRepository.php b/app/src/Infrastructure/Persistence/Cycle/ORMCartRepository.php
new file mode 100644
index 0000000..c92008b
--- /dev/null
+++ b/app/src/Infrastructure/Persistence/Cycle/ORMCartRepository.php
@@ -0,0 +1,26 @@
+findOne(['id' => $id]);
+ }
+}
diff --git a/app/src/Infrastructure/Persistence/Cycle/ORMCategoryRepository.php b/app/src/Infrastructure/Persistence/Cycle/ORMCategoryRepository.php
new file mode 100644
index 0000000..9fda7b2
--- /dev/null
+++ b/app/src/Infrastructure/Persistence/Cycle/ORMCategoryRepository.php
@@ -0,0 +1,26 @@
+findOne(['id' => $id]);
+ }
+}
diff --git a/app/src/Infrastructure/Persistence/Cycle/ORMClientRepository.php b/app/src/Infrastructure/Persistence/Cycle/ORMClientRepository.php
new file mode 100644
index 0000000..ae0296f
--- /dev/null
+++ b/app/src/Infrastructure/Persistence/Cycle/ORMClientRepository.php
@@ -0,0 +1,26 @@
+findOne(['id' => $id]);
+ }
+}
diff --git a/app/src/Infrastructure/Persistence/Cycle/ORMCountryRepository.php b/app/src/Infrastructure/Persistence/Cycle/ORMCountryRepository.php
new file mode 100644
index 0000000..555c57a
--- /dev/null
+++ b/app/src/Infrastructure/Persistence/Cycle/ORMCountryRepository.php
@@ -0,0 +1,16 @@
+findOne(['id' => $id]);
+ }
+}
diff --git a/app/src/Infrastructure/Persistence/Cycle/ORMOrderRepository.php b/app/src/Infrastructure/Persistence/Cycle/ORMOrderRepository.php
new file mode 100644
index 0000000..cc9acfc
--- /dev/null
+++ b/app/src/Infrastructure/Persistence/Cycle/ORMOrderRepository.php
@@ -0,0 +1,26 @@
+findOne(['id' => $id]);
+ }
+}
diff --git a/app/src/Infrastructure/Persistence/Cycle/ORMProductRepository.php b/app/src/Infrastructure/Persistence/Cycle/ORMProductRepository.php
new file mode 100644
index 0000000..0ebab39
--- /dev/null
+++ b/app/src/Infrastructure/Persistence/Cycle/ORMProductRepository.php
@@ -0,0 +1,26 @@
+findOne(['id' => $id]);
+ }
+}
diff --git a/app/tests/Application/.gitkeep b/app/tests/Application/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/app/tests/Bridge/Laravel/Admin/Category/Controllers/CategoryControllerTest.php b/app/tests/Bridge/Laravel/Admin/Category/Controllers/CategoryControllerTest.php
new file mode 100644
index 0000000..7549c64
--- /dev/null
+++ b/app/tests/Bridge/Laravel/Admin/Category/Controllers/CategoryControllerTest.php
@@ -0,0 +1,134 @@
+createUser();
+ $this->actingAs($user, 'api');
+ }
+
+ /**
+ * @test
+ */
+ public function it_gets_categories_response(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH);
+
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json->has('1')
+ ->first(
+ static fn (AssertableJson $json) => $json
+ ->where('incrementalId', 1)
+ ->has('id')
+ ->etc()
+ )
+ );
+ }
+
+ /**
+ * @test
+ */
+ public function it_supports_pagination(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH . '?page=1&per_page=3');
+
+ $this::assertCount(3, $response->json());
+ }
+
+ /**
+ * @test
+ *
+ * @throws ContainerExceptionInterface
+ * @throws NotFoundExceptionInterface
+ */
+ public function it_gets_single_category(): void
+ {
+ /** @var Category $category */
+ $category = CategoryFactory::new()->createOne();
+
+ $response = $this->json('GET', self::API_BASE_PATH . '/' . $category->id()->toString());
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json
+ ->where('id', $category->id()->toString())
+ ->etc()
+ );
+ }
+
+ /**
+ * @test
+ */
+ public function it_stores_category(): void
+ {
+ /** @var Category $category */
+ $category = CategoryFactory::new()->makeOne();
+
+ $response = $this->json('POST', self::API_BASE_PATH, [
+ 'name' => $category->name(),
+ 'gender' => $category->gender(),
+ ]);
+
+ $response
+ ->assertStatus(HttpCode::HTTP_CREATED)
+ ->assertJsonStructure([
+ 'name',
+ 'gender',
+ ]);
+
+ $this->assertDatabaseHas('categories', [
+ 'name' => $category->name(),
+ 'gender' => $category->gender()->toString(),
+ ]);
+ }
+
+ /**
+ * @test
+ *
+ * @throws ContainerExceptionInterface
+ * @throws NotFoundExceptionInterface
+ */
+ public function it_updates_category(): void
+ {
+ /** @var Category $category */
+ $category = CategoryFactory::new()->createOne();
+ $name = fake()->name;
+
+ $response = $this->json('PUT', self::API_BASE_PATH . '/' . $category->id(), [
+ 'name' => $name,
+ ]);
+
+ $response
+ ->assertStatus(HttpCode::HTTP_CREATED)
+ ->assertJsonStructure([
+ 'name',
+ 'gender',
+ ]);
+
+ $this->assertDatabaseHas('categories', [
+ 'id' => $category->id(),
+ 'name' => $name,
+ ]);
+ }
+}
diff --git a/app/tests/Bridge/Laravel/Admin/Client/Controllers/ClientControllerTest.php b/app/tests/Bridge/Laravel/Admin/Client/Controllers/ClientControllerTest.php
new file mode 100644
index 0000000..c53103c
--- /dev/null
+++ b/app/tests/Bridge/Laravel/Admin/Client/Controllers/ClientControllerTest.php
@@ -0,0 +1,80 @@
+createUser();
+ $this->actingAs($user, 'api');
+ }
+
+ /**
+ * @test
+ */
+ public function it_gets_clients_response(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH);
+
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json->has('1')
+ ->first(
+ static fn (AssertableJson $json) => $json
+ ->where('incrementalId', 1)
+ ->has('id')
+ ->has('email')
+ ->has('username')
+ ->has('firstName')
+ ->has('lastName')
+ ->has('company')
+ ->etc()
+ )
+ );
+ }
+
+ /**
+ * @test
+ */
+ public function it_supports_pagination(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH . '?page=1&per_page=3');
+
+ $this::assertEquals(3, count($response->json()));
+ }
+
+ /**
+ * @test
+ */
+ public function it_gets_single_client(): void
+ {
+ /** @var Client $client */
+ $client = ClientFactory::new()->createOne();
+
+ $response = $this->json('GET', self::API_BASE_PATH . '/' . $client->id()->toString());
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json
+ ->where('id', $client->id()->toString())
+ ->etc()
+ );
+ }
+}
diff --git a/app/tests/Bridge/Laravel/Admin/Network/Controllers/NetworkControllerTest.php b/app/tests/Bridge/Laravel/Admin/Network/Controllers/NetworkControllerTest.php
new file mode 100644
index 0000000..b1bd63a
--- /dev/null
+++ b/app/tests/Bridge/Laravel/Admin/Network/Controllers/NetworkControllerTest.php
@@ -0,0 +1,40 @@
+createUser();
+ $this->actingAs($user, 'api');
+ }
+
+ /**
+ * @test
+ */
+ public function it_should_get_network_response(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH);
+
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json
+ ->where('response', 'PONG')
+ ->etc()
+ );
+ }
+}
diff --git a/app/tests/Bridge/Laravel/Admin/Order/Controllers/OrderControllerTest.php b/app/tests/Bridge/Laravel/Admin/Order/Controllers/OrderControllerTest.php
new file mode 100644
index 0000000..9122436
--- /dev/null
+++ b/app/tests/Bridge/Laravel/Admin/Order/Controllers/OrderControllerTest.php
@@ -0,0 +1,78 @@
+createUser();
+ $this->actingAs($user, 'api');
+ }
+
+ /**
+ * @test
+ */
+ public function it_gets_orders_response(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH);
+
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json->has('1')
+ ->first(
+ static fn (AssertableJson $json) => $json
+ ->where('incrementalId', 1)
+ ->has('id')
+ ->etc()
+ )
+ );
+ }
+
+ /**
+ * @test
+ */
+ public function it_supports_pagination(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH . '?page=1&per_page=3');
+
+ $this::assertCount(3, $response->json());
+ }
+
+ /**
+ * @test
+ *
+ * @throws ContainerExceptionInterface
+ * @throws NotFoundExceptionInterface
+ */
+ public function it_gets_single_order(): void
+ {
+ /** @var Order $order */
+ $order = OrderFactory::new()->createOne();
+
+ $response = $this->json('GET', self::API_BASE_PATH . '/' . $order->id()->toString());
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json
+ ->where('id', $order->id()->toString())
+ ->etc()
+ );
+ }
+}
diff --git a/app/tests/Bridge/Laravel/Admin/Product/Controllers/ProductControllerTest.php b/app/tests/Bridge/Laravel/Admin/Product/Controllers/ProductControllerTest.php
new file mode 100644
index 0000000..4dcc2dd
--- /dev/null
+++ b/app/tests/Bridge/Laravel/Admin/Product/Controllers/ProductControllerTest.php
@@ -0,0 +1,203 @@
+createUser();
+ $this->actingAs($user, 'api');
+ }
+
+ /**
+ * @test
+ */
+ public function it_gets_products_response(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH);
+
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json->has('1')
+ ->first(
+ static fn (AssertableJson $json) => $json
+ ->where('incrementalId', 1)
+ ->has('id')
+ ->has('name')
+ ->has('status')
+ ->has('description')
+ ->has('code')
+ ->has('seo')
+ ->has('created')
+ ->has('updated')
+ ->has('deleted')
+ ->etc()
+ )
+ );
+ }
+
+ /**
+ * @test
+ */
+ public function it_supports_pagination(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH . '?page=1&per_page=3');
+
+ $this::assertCount(3, $response->json());
+ }
+
+ /**
+ * @test
+ *
+ * @throws ContainerExceptionInterface
+ * @throws NotFoundExceptionInterface
+ */
+ public function it_gets_single_product(): void
+ {
+ /** @var Product $product */
+ $product = ProductFactory::new()->createOne();
+
+ $response = $this->json('GET', self::API_BASE_PATH . '/' . $product->id()->toString());
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json
+ ->where('id', $product->id()->toString())
+ ->has('incrementalId')
+ ->has('name')
+ ->has('status')
+ ->has('description')
+ ->has('code')
+ ->has('seo')
+ ->has('created')
+ ->has('updated')
+ ->has('deleted')
+ ->etc()
+ );
+ }
+
+ /**
+ * @test
+ */
+ public function it_stores_product(): void
+ {
+ /** @var Product $product */
+ $product = ProductFactory::new()->makeOne();
+
+ $response = $this->json('POST', self::API_BASE_PATH, [
+ 'name' => $product->name(),
+ 'status' => $product->status()->toString(),
+ 'description' => $product->description(),
+ 'category' => [
+ 'id' => $product->category()->id()->toString(),
+ ],
+ 'code' => $product->code()->toArray(),
+ 'seo' => $product->seo()->toArray(),
+ ]);
+
+ $response
+ ->assertStatus(HttpCode::HTTP_CREATED)
+ ->assertJsonStructure([
+ 'name',
+ 'status',
+ 'description',
+ 'category',
+ 'code',
+ 'seo',
+ ]);
+
+ $this->assertDatabaseHas('products', [
+ 'name' => $product->name(),
+ 'code_sku' => $product->code()->sku()?->toString(),
+ ]);
+ }
+
+ /**
+ * @test
+ *
+ * @throws ContainerExceptionInterface
+ * @throws NotFoundExceptionInterface
+ */
+ public function it_updates_product(): void
+ {
+ /** @var Product $product */
+ $product = ProductFactory::new()->createOne();
+ $name = fake()->name;
+
+ $response = $this->json('PUT', self::API_BASE_PATH . '/' . $product->id(), [
+ 'name' => $name,
+ ]);
+
+ $response
+ ->assertStatus(HttpCode::HTTP_CREATED)
+ ->assertJsonStructure([
+ 'name',
+ 'status',
+ 'code',
+ 'description',
+ ]);
+
+ $this->assertDatabaseHas('products', [
+ 'id' => $product->id(),
+ 'name' => $name,
+ ]);
+ }
+
+ /**
+ * @test
+ *
+ * @throws ContainerExceptionInterface
+ * @throws NotFoundExceptionInterface
+ */
+ public function it_updates_entity_only_with_provided_data(): void
+ {
+ /** @var Product $product */
+ $product = ProductFactory::new()->createOne();
+
+ $response = $this->json('PUT', self::API_BASE_PATH . '/' . $product->id(), [
+ 'code' => [
+ 'sku' => 'new-sku',
+ 'ian' => 'new-ian',
+ ],
+ 'seo' => [
+ 'slug' => 'new-slug',
+ 'title' => 'new-title',
+ ],
+ ]);
+
+ $response
+ ->assertStatus(HttpCode::HTTP_CREATED)
+ ->assertJsonPath('code.sku', 'new-sku')
+ ->assertJsonPath('code.ian', 'new-ian')
+ ->assertJsonPath('code.upc', $product->code()->upc()?->toString())
+ ->assertJsonPath('seo.slug', 'new-slug')
+ ->assertJsonPath('seo.title', 'new-title')
+ ->assertJsonPath('seo.description', $product->seo()->description())
+ ;
+
+ $this->assertDatabaseHas('products', [
+ 'name' => $product->name(),
+ 'code_sku' => 'new-sku',
+ 'code_ian' => 'new-ian',
+ 'code_upc' => $product->code()->upc()?->toString(),
+ ]);
+ }
+}
diff --git a/app/tests/Bridge/Laravel/ApiTestCase.php b/app/tests/Bridge/Laravel/ApiTestCase.php
new file mode 100644
index 0000000..63d7437
--- /dev/null
+++ b/app/tests/Bridge/Laravel/ApiTestCase.php
@@ -0,0 +1,61 @@
+userFactory = new UserFactory(['Bearer']);
+
+ Artisan::call('cycle:migrate:fresh', ['--force' => true]);
+ Artisan::call('cycle:orm:sync');
+ Artisan::call('db:seed');
+ // Artisan::call('db:seed', ['--class' => ClientSeeder::class]);
+ }
+
+ /**
+ * @throws JsonException
+ */
+ protected function createUser(): Authenticatable
+ {
+ $attributes = [
+ 'sub' => '86a0676e-2c15-4221-a797-f3af51d50cb5',
+ 'realm_access' => [
+ 'roles' => ['offline_access', 'uma_authorization'],
+ ],
+ 'scope' => 'email profile',
+ 'preferred_username' => 'service-account-kong',
+ 'clientId' => 'kong',
+ 'clientHost' => '172.100.61.1',
+ 'clientAddress' => '172.100.61.1',
+ 'groups' => ['editor', 'manager'],
+ 'given_name' => 'King of the',
+ 'family_name' => 'World',
+ 'iss' => 'https://auth.wayofdev.io/auth/realms/services',
+ 'azp' => 'web',
+ ];
+ $identifier = base64_encode(json_encode($attributes, JSON_THROW_ON_ERROR | 0, JSON_THROW_ON_ERROR));
+
+ return $this->userFactory->createUser($identifier);
+ }
+}
diff --git a/app/tests/Feature/ExampleTest.php b/app/tests/Bridge/Laravel/Http/HomeTest.php
similarity index 83%
rename from app/tests/Feature/ExampleTest.php
rename to app/tests/Bridge/Laravel/Http/HomeTest.php
index 3b6bce0..d662170 100644
--- a/app/tests/Feature/ExampleTest.php
+++ b/app/tests/Bridge/Laravel/Http/HomeTest.php
@@ -2,12 +2,12 @@
declare(strict_types=1);
-namespace Tests\Feature;
+namespace Tests\Bridge\Laravel\Http;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
-class ExampleTest extends TestCase
+class HomeTest extends TestCase
{
/**
* A basic test example.
diff --git a/app/tests/Bridge/Laravel/Public/Cart/Controllers/CartControllerTest.php b/app/tests/Bridge/Laravel/Public/Cart/Controllers/CartControllerTest.php
new file mode 100644
index 0000000..5f53e4e
--- /dev/null
+++ b/app/tests/Bridge/Laravel/Public/Cart/Controllers/CartControllerTest.php
@@ -0,0 +1,59 @@
+createOne();
+
+ $response = $this->json('GET', self::API_BASE_PATH . '/' . $cart->id()->toString());
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json
+ ->where('id', $cart->id()->toString())
+ ->etc()
+ );
+ }
+
+ /**
+ * @test
+ */
+ public function it_creates_new_cart(): void
+ {
+ $response = $this->json('POST', self::API_BASE_PATH, []);
+
+ $response
+ ->assertStatus(HttpCode::HTTP_CREATED)
+ ->assertJsonStructure([
+ 'id',
+ 'incrementalId',
+ 'created',
+ 'updated',
+ ]);
+
+ $this->assertDatabaseHas('carts', [
+ 'id' => $response->json('id'),
+ ]);
+ }
+}
diff --git a/app/tests/Bridge/Laravel/Public/Category/Controllers/CategoryControllerTest.php b/app/tests/Bridge/Laravel/Public/Category/Controllers/CategoryControllerTest.php
new file mode 100644
index 0000000..819d227
--- /dev/null
+++ b/app/tests/Bridge/Laravel/Public/Category/Controllers/CategoryControllerTest.php
@@ -0,0 +1,78 @@
+createUser();
+ $this->actingAs($user, 'api');
+ }
+
+ /**
+ * @test
+ */
+ public function it_gets_categories_response(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH);
+
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json->has('1')
+ ->first(
+ static fn (AssertableJson $json) => $json
+ ->where('incrementalId', 1)
+ ->has('id')
+ ->etc()
+ )
+ );
+ }
+
+ /**
+ * @test
+ */
+ public function it_supports_pagination(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH . '?page=1&per_page=3');
+
+ $this::assertCount(3, $response->json());
+ }
+
+ /**
+ * @test
+ *
+ * @throws ContainerExceptionInterface
+ * @throws NotFoundExceptionInterface
+ */
+ public function it_gets_single_category(): void
+ {
+ /** @var Category $category */
+ $category = CategoryFactory::new()->createOne();
+
+ $response = $this->json('GET', self::API_BASE_PATH . '/' . $category->id()->toString());
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json
+ ->where('id', $category->id()->toString())
+ ->etc()
+ );
+ }
+}
diff --git a/app/tests/Bridge/Laravel/Public/Client/Controllers/ClientControllerTest.php b/app/tests/Bridge/Laravel/Public/Client/Controllers/ClientControllerTest.php
new file mode 100644
index 0000000..e69de29
diff --git a/app/tests/Bridge/Laravel/Public/Country/Controllers/CountryControllerTest.php b/app/tests/Bridge/Laravel/Public/Country/Controllers/CountryControllerTest.php
new file mode 100644
index 0000000..70fd9c9
--- /dev/null
+++ b/app/tests/Bridge/Laravel/Public/Country/Controllers/CountryControllerTest.php
@@ -0,0 +1,61 @@
+artisan('db:seed --class=CountrySeeder');
+ }
+
+ /**
+ * @test
+ */
+ public function it_gets_countries_response(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH);
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json->has('1')
+ ->first(
+ static fn (AssertableJson $json) => $json
+ ->where('id', 'AD')
+ ->has('id')
+ ->has('name')
+ ->has('emoji')
+ ->has('code')
+ ->has('states')
+ ->etc()
+ )
+ );
+ }
+
+ /**
+ * @test
+ */
+ public function it_gets_single_country(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH . '/US');
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json
+ ->where('id', 'US')
+ ->has('id')
+ ->has('name')
+ ->has('emoji')
+ ->has('code')
+ ->has('states', 66)
+ ->etc()
+ );
+ }
+}
diff --git a/app/tests/Bridge/Laravel/Public/Network/Controllers/NetworkControllerTest.php b/app/tests/Bridge/Laravel/Public/Network/Controllers/NetworkControllerTest.php
new file mode 100644
index 0000000..514362f
--- /dev/null
+++ b/app/tests/Bridge/Laravel/Public/Network/Controllers/NetworkControllerTest.php
@@ -0,0 +1,40 @@
+createUser();
+ $this->actingAs($user, 'api');
+ }
+
+ /**
+ * @test
+ */
+ public function it_should_get_network_response(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH);
+
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json
+ ->where('response', 'PONG')
+ ->etc()
+ );
+ }
+}
diff --git a/app/tests/Bridge/Laravel/Public/Product/Controllers/ProductControllerTest.php b/app/tests/Bridge/Laravel/Public/Product/Controllers/ProductControllerTest.php
new file mode 100644
index 0000000..0b46128
--- /dev/null
+++ b/app/tests/Bridge/Laravel/Public/Product/Controllers/ProductControllerTest.php
@@ -0,0 +1,78 @@
+createUser();
+ $this->actingAs($user, 'api');
+ }
+
+ /**
+ * @test
+ */
+ public function it_gets_products_response(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH);
+
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json->has('1')
+ ->first(
+ static fn (AssertableJson $json) => $json
+ ->where('incrementalId', 1)
+ ->has('id')
+ ->etc()
+ )
+ );
+ }
+
+ /**
+ * @test
+ */
+ public function it_supports_pagination(): void
+ {
+ $response = $this->json('GET', self::API_BASE_PATH . '?page=1&per_page=3');
+
+ $this::assertCount(3, $response->json());
+ }
+
+ /**
+ * @test
+ *
+ * @throws ContainerExceptionInterface
+ * @throws NotFoundExceptionInterface
+ */
+ public function it_gets_single_product(): void
+ {
+ /** @var Product $product */
+ $product = ProductFactory::new()->createOne();
+
+ $response = $this->json('GET', self::API_BASE_PATH . '/' . $product->id()->toString());
+ $response
+ ->assertJson(
+ static fn (AssertableJson $json) => $json
+ ->where('id', $product->id()->toString())
+ ->etc()
+ );
+ }
+}
diff --git a/app/tests/Domain/Client/ClientTest.php b/app/tests/Domain/Client/ClientTest.php
new file mode 100644
index 0000000..e6eba33
--- /dev/null
+++ b/app/tests/Domain/Client/ClientTest.php
@@ -0,0 +1,44 @@
+getRepository(Client::class);
+
+ /** @var Collection $users */
+ $users = ClientFactory::new()->times(1)->make();
+
+ $users->each(function (Client $user) use ($clientRepository): void {
+ $clientRepository->persist($user, false);
+ });
+
+ $this->assertDatabaseCount('clients', 1);
+ }
+}
diff --git a/app/tests/Infrastructure/.gitkeep b/app/tests/Infrastructure/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/app/tests/TestCase.php b/app/tests/TestCase.php
index 5341116..1ec9a65 100644
--- a/app/tests/TestCase.php
+++ b/app/tests/TestCase.php
@@ -5,8 +5,19 @@
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
+use Illuminate\Support\Facades\Artisan;
+use WayOfDev\Cycle\Testing\Concerns\InteractsWithDatabase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
+ use InteractsWithDatabase;
+
+ public function setUp(): void
+ {
+ parent::setUp();
+
+ Artisan::call('cycle:migrate:init');
+ Artisan::call('cycle:migrate');
+ }
}
diff --git a/app/tests/Unit/ExampleTest.php b/app/tests/Unit/ExampleTest.php
deleted file mode 100644
index 049f1e2..0000000
--- a/app/tests/Unit/ExampleTest.php
+++ /dev/null
@@ -1,20 +0,0 @@
-assertTrue(true);
- }
-}
diff --git a/assets/deptrac.svg b/assets/deptrac.svg
new file mode 100644
index 0000000..400e4d0
--- /dev/null
+++ b/assets/deptrac.svg
@@ -0,0 +1,104 @@
+
+
+
+
+
diff --git a/docker-compose.yaml b/docker-compose.yaml
index 37072c7..8cf662f 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -26,8 +26,6 @@ services:
- ~/.ssh:/home/www-data/.ssh
environment:
FAKETIME: "+2h"
- env_file:
- - .env
dns:
8.8.8.8
@@ -46,8 +44,6 @@ services:
- ./app:/app:rw,cached
- ./.env:/app/.env
- ./certs:/etc/nginx/ssl
- env_file:
- - .env
labels:
- traefik.enable=true
- traefik.http.routers.api-${COMPOSE_PROJECT_NAME}-secure.rule=Host(`api.${COMPOSE_PROJECT_NAME}.docker`)