@speedkit/cli 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +775 -0
- package/bin/dev +18 -0
- package/bin/dev.cmd +3 -0
- package/bin/run +4 -0
- package/bin/run.cmd +3 -0
- package/dist/commands/airports_iata.json +1 -0
- package/dist/commands/build-parameter-query.d.ts +15 -0
- package/dist/commands/build-parameter-query.js +95 -0
- package/dist/commands/build-prewarm-query.d.ts +15 -0
- package/dist/commands/build-prewarm-query.js +69 -0
- package/dist/commands/deploy.d.ts +17 -0
- package/dist/commands/deploy.js +39 -0
- package/dist/commands/document-handler.d.ts +16 -0
- package/dist/commands/document-handler.js +36 -0
- package/dist/commands/find-pops.d.ts +17 -0
- package/dist/commands/find-pops.js +84 -0
- package/dist/commands/generate-customer-config.d.ts +10 -0
- package/dist/commands/generate-customer-config.js +29 -0
- package/dist/commands/generate-pop-config.d.ts +27 -0
- package/dist/commands/generate-pop-config.js +231 -0
- package/dist/commands/login.d.ts +10 -0
- package/dist/commands/login.js +35 -0
- package/dist/commands/onboarding.d.ts +16 -0
- package/dist/commands/onboarding.js +25 -0
- package/dist/commands/param-diff.d.ts +16 -0
- package/dist/commands/param-diff.js +111 -0
- package/dist/commands/pop-prewarm.d.ts +17 -0
- package/dist/commands/pop-prewarm.js +80 -0
- package/dist/commands/prewarm.d.ts +40 -0
- package/dist/commands/prewarm.js +127 -0
- package/dist/commands/pull.d.ts +14 -0
- package/dist/commands/pull.js +24 -0
- package/dist/commands/wpt-launcher.d.ts +21 -0
- package/dist/commands/wpt-launcher.js +79 -0
- package/dist/helpers/CustomerConfig.d.ts +51 -0
- package/dist/helpers/CustomerConfig.js +150 -0
- package/dist/helpers/build-query-helper.d.ts +32 -0
- package/dist/helpers/build-query-helper.js +216 -0
- package/dist/helpers/cli-config.d.ts +22 -0
- package/dist/helpers/cli-config.js +85 -0
- package/dist/helpers/file-helper.d.ts +8 -0
- package/dist/helpers/file-helper.js +63 -0
- package/dist/helpers/get-parsed-config.d.ts +11 -0
- package/dist/helpers/get-parsed-config.js +63 -0
- package/dist/helpers/getChromePath.d.ts +7 -0
- package/dist/helpers/getChromePath.js +27 -0
- package/dist/helpers/isDirectory.d.ts +1 -0
- package/dist/helpers/isDirectory.js +17 -0
- package/dist/helpers/isExecutable.d.ts +1 -0
- package/dist/helpers/isExecutable.js +15 -0
- package/dist/helpers/isFile.d.ts +1 -0
- package/dist/helpers/isFile.js +17 -0
- package/dist/helpers/logging-helper.d.ts +12 -0
- package/dist/helpers/logging-helper.js +27 -0
- package/dist/helpers/normalize.d.ts +40 -0
- package/dist/helpers/normalize.js +112 -0
- package/dist/helpers/race.d.ts +1 -0
- package/dist/helpers/race.js +16 -0
- package/dist/helpers/safe.d.ts +10 -0
- package/dist/helpers/safe.js +34 -0
- package/dist/helpers/scrape.d.ts +1 -0
- package/dist/helpers/scrape.js +11 -0
- package/dist/helpers/speedKitRuleToRegExp.d.ts +1 -0
- package/dist/helpers/speedKitRuleToRegExp.js +10 -0
- package/dist/helpers/watchFiles.d.ts +1 -0
- package/dist/helpers/watchFiles.js +20 -0
- package/dist/models/cli-parameters.d.ts +73 -0
- package/dist/models/cli-parameters.js +82 -0
- package/dist/models/files.d.ts +20 -0
- package/dist/models/files.js +23 -0
- package/dist/models/install.d.ts +24 -0
- package/dist/models/install.js +2 -0
- package/dist/services/athena-service.d.ts +30 -0
- package/dist/services/athena-service.js +139 -0
- package/dist/services/bundler/bundle-service-factory.d.ts +4 -0
- package/dist/services/bundler/bundle-service-factory.js +10 -0
- package/dist/services/bundler/bundle-service.d.ts +25 -0
- package/dist/services/bundler/bundle-service.js +84 -0
- package/dist/services/bundler/index.d.ts +2 -0
- package/dist/services/bundler/index.js +5 -0
- package/dist/services/cli/cli-service-factory.d.ts +5 -0
- package/dist/services/cli/cli-service-factory.js +14 -0
- package/dist/services/cli/cli-service-model.d.ts +27 -0
- package/dist/services/cli/cli-service-model.js +9 -0
- package/dist/services/cli/cli-service.d.ts +37 -0
- package/dist/services/cli/cli-service.js +123 -0
- package/dist/services/cli/error/cli-type-error.d.ts +3 -0
- package/dist/services/cli/error/cli-type-error.js +7 -0
- package/dist/services/cli/hooks.d.ts +11 -0
- package/dist/services/cli/hooks.js +33 -0
- package/dist/services/cli/index.d.ts +3 -0
- package/dist/services/cli/index.js +6 -0
- package/dist/services/config-api/client.d.ts +16 -0
- package/dist/services/config-api/client.js +54 -0
- package/dist/services/config-api/config-api-service.d.ts +16 -0
- package/dist/services/config-api/config-api-service.js +56 -0
- package/dist/services/config-api/context/config-api-context.d.ts +5 -0
- package/dist/services/config-api/context/config-api-context.js +9 -0
- package/dist/services/config-api/error/json-response-error.d.ts +2 -0
- package/dist/services/config-api/error/json-response-error.js +5 -0
- package/dist/services/config-api/error/login-error.d.ts +5 -0
- package/dist/services/config-api/error/login-error.js +12 -0
- package/dist/services/config-api/factory/config-api-service-factory.d.ts +10 -0
- package/dist/services/config-api/factory/config-api-service-factory.js +38 -0
- package/dist/services/config-api/factory/entity-manager-factory.d.ts +5 -0
- package/dist/services/config-api/factory/entity-manager-factory.js +21 -0
- package/dist/services/config-api/interface/config-api-context-interface.d.ts +4 -0
- package/dist/services/config-api/interface/config-api-context-interface.js +2 -0
- package/dist/services/config-api/interface/request-extension-interface.d.ts +5 -0
- package/dist/services/config-api/interface/request-extension-interface.js +2 -0
- package/dist/services/config-api-service.d.ts +18 -0
- package/dist/services/config-api-service.js +96 -0
- package/dist/services/context/app-context.d.ts +1 -0
- package/dist/services/context/app-context.js +2 -0
- package/dist/services/context/error/context-runtime-error.d.ts +3 -0
- package/dist/services/context/error/context-runtime-error.js +7 -0
- package/dist/services/context/interface/context-interface.d.ts +2 -0
- package/dist/services/context/interface/context-interface.js +2 -0
- package/dist/services/customer-config/customer-config-service-context.d.ts +5 -0
- package/dist/services/customer-config/customer-config-service-context.js +15 -0
- package/dist/services/customer-config/customer-config-service-factory.d.ts +8 -0
- package/dist/services/customer-config/customer-config-service-factory.js +24 -0
- package/dist/services/customer-config/customer-config-service-model.d.ts +39 -0
- package/dist/services/customer-config/customer-config-service-model.js +23 -0
- package/dist/services/customer-config/customer-config-service.d.ts +27 -0
- package/dist/services/customer-config/customer-config-service.js +263 -0
- package/dist/services/customer-config/index.d.ts +4 -0
- package/dist/services/customer-config/index.js +7 -0
- package/dist/services/customer-config/templates/config_SpeedKit.js.hbs +351 -0
- package/dist/services/customer-config/templates/config_customer.js.hbs +75 -0
- package/dist/services/customer-config/templates/config_documentHandler.js.hbs +162 -0
- package/dist/services/customer-config/templates/config_dynamicBlocks.es6.hbs +263 -0
- package/dist/services/customer-config/templates/config_dynamicStyles.css.hbs +116 -0
- package/dist/services/customer-config/templates/config_loadHandler.js.hbs +394 -0
- package/dist/services/customer-config/templates/deploymentDetection.es6.hbs +262 -0
- package/dist/services/customer-config/templates/downtimeDetection.js.hbs +110 -0
- package/dist/services/deploy/builder/install-resource-builder.d.ts +14 -0
- package/dist/services/deploy/builder/install-resource-builder.js +48 -0
- package/dist/services/deploy/checks/post-deploy/revalidated-module-check.d.ts +11 -0
- package/dist/services/deploy/checks/post-deploy/revalidated-module-check.js +30 -0
- package/dist/services/deploy/checks/post-deploy/save-files-check.d.ts +9 -0
- package/dist/services/deploy/checks/post-deploy/save-files-check.js +25 -0
- package/dist/services/deploy/context/deploy-context.d.ts +12 -0
- package/dist/services/deploy/context/deploy-context.js +26 -0
- package/dist/services/deploy/deploy-service-factory.d.ts +15 -0
- package/dist/services/deploy/deploy-service-factory.js +68 -0
- package/dist/services/deploy/deploy-service.d.ts +17 -0
- package/dist/services/deploy/deploy-service.js +63 -0
- package/dist/services/deploy/error/create-find-temp-directory-error.d.ts +4 -0
- package/dist/services/deploy/error/create-find-temp-directory-error.js +10 -0
- package/dist/services/deploy/error/deploy-app-error.d.ts +2 -0
- package/dist/services/deploy/error/deploy-app-error.js +5 -0
- package/dist/services/deploy/error/no-active-installation-error.d.ts +4 -0
- package/dist/services/deploy/error/no-active-installation-error.js +10 -0
- package/dist/services/deploy/handler/customer-config-handler.d.ts +21 -0
- package/dist/services/deploy/handler/customer-config-handler.js +85 -0
- package/dist/services/deploy/handler/install-resource-handler.d.ts +25 -0
- package/dist/services/deploy/handler/install-resource-handler.js +104 -0
- package/dist/services/deploy/handler/install-resource-modifier/deleted-file-check.d.ts +13 -0
- package/dist/services/deploy/handler/install-resource-modifier/deleted-file-check.js +51 -0
- package/dist/services/deploy/handler/module-handler.d.ts +14 -0
- package/dist/services/deploy/handler/module-handler.js +81 -0
- package/dist/services/deploy/handler/module-modifier/deployment-detection-modifier.d.ts +9 -0
- package/dist/services/deploy/handler/module-modifier/deployment-detection-modifier.js +24 -0
- package/dist/services/deploy/handler/server-config-handler.d.ts +12 -0
- package/dist/services/deploy/handler/server-config-handler.js +63 -0
- package/dist/services/deploy/interface/deploy-handler-interface.d.ts +6 -0
- package/dist/services/deploy/interface/deploy-handler-interface.js +2 -0
- package/dist/services/deploy/interface/install-configs.d.ts +11 -0
- package/dist/services/deploy/interface/install-configs.js +2 -0
- package/dist/services/deploy/interface/install-resource-processor-interface.d.ts +5 -0
- package/dist/services/deploy/interface/install-resource-processor-interface.js +2 -0
- package/dist/services/deploy/interface/install.d.ts +14 -0
- package/dist/services/deploy/interface/install.js +2 -0
- package/dist/services/deploy/interface/post-deploy-check-interface.d.ts +3 -0
- package/dist/services/deploy/interface/post-deploy-check-interface.js +2 -0
- package/dist/services/deploy/interface/runtime-modifier.d.ts +6 -0
- package/dist/services/deploy/interface/runtime-modifier.js +2 -0
- package/dist/services/deploy/interface/validate-origins-response.d.ts +4 -0
- package/dist/services/deploy/interface/validate-origins-response.js +2 -0
- package/dist/services/diff/diff-model.d.ts +5 -0
- package/dist/services/diff/diff-model.js +12 -0
- package/dist/services/diff/diff-service-factory.d.ts +7 -0
- package/dist/services/diff/diff-service-factory.js +20 -0
- package/dist/services/diff/diff-service.d.ts +34 -0
- package/dist/services/diff/diff-service.js +134 -0
- package/dist/services/diff/index.d.ts +3 -0
- package/dist/services/diff/index.js +6 -0
- package/dist/services/diff-service.d.ts +24 -0
- package/dist/services/diff-service.js +112 -0
- package/dist/services/document-handler-runtime/context/document-handler-runtime-context.d.ts +23 -0
- package/dist/services/document-handler-runtime/context/document-handler-runtime-context.js +41 -0
- package/dist/services/document-handler-runtime/document-handler-runtime-service.d.ts +32 -0
- package/dist/services/document-handler-runtime/document-handler-runtime-service.js +220 -0
- package/dist/services/document-handler-runtime/document-handler-server.d.ts +42 -0
- package/dist/services/document-handler-runtime/document-handler-server.js +225 -0
- package/dist/services/document-handler-runtime/error/handler/required-file-not-found-handler.d.ts +6 -0
- package/dist/services/document-handler-runtime/error/handler/required-file-not-found-handler.js +14 -0
- package/dist/services/document-handler-runtime/error/required-file-not-found-error.d.ts +3 -0
- package/dist/services/document-handler-runtime/error/required-file-not-found-error.js +7 -0
- package/dist/services/document-handler-runtime/factory/document-handler-runtime-service-factory.d.ts +24 -0
- package/dist/services/document-handler-runtime/factory/document-handler-runtime-service-factory.js +106 -0
- package/dist/services/document-handler-runtime/interface/document-handler-runtime-config-interface.d.ts +3 -0
- package/dist/services/document-handler-runtime/interface/document-handler-runtime-config-interface.js +6 -0
- package/dist/services/document-handler-runtime/interface/template-context-interface.d.ts +3 -0
- package/dist/services/document-handler-runtime/interface/template-context-interface.js +2 -0
- package/dist/services/document-handler-runtime/interface/template-interface.d.ts +6 -0
- package/dist/services/document-handler-runtime/interface/template-interface.js +2 -0
- package/dist/services/document-handler-runtime/interface/template-param-interface.d.ts +4 -0
- package/dist/services/document-handler-runtime/interface/template-param-interface.js +2 -0
- package/dist/services/document-handler-runtime/templates/abstract-template.d.ts +9 -0
- package/dist/services/document-handler-runtime/templates/abstract-template.js +18 -0
- package/dist/services/document-handler-runtime/templates/database-mock.d.ts +6 -0
- package/dist/services/document-handler-runtime/templates/database-mock.js +111 -0
- package/dist/services/document-handler-runtime/templates/execute-document-handler.d.ts +6 -0
- package/dist/services/document-handler-runtime/templates/execute-document-handler.js +76 -0
- package/dist/services/document-handler-runtime/templates/orestes-mock.d.ts +9 -0
- package/dist/services/document-handler-runtime/templates/orestes-mock.js +168 -0
- package/dist/services/document-handler-runtime/templates/package-json.d.ts +8 -0
- package/dist/services/document-handler-runtime/templates/package-json.js +21 -0
- package/dist/services/document-handler-runtime/templates/test.d.ts +6 -0
- package/dist/services/document-handler-runtime/templates/test.js +63 -0
- package/dist/services/error-handling/abstract/abstract-async-error-handling-factory.d.ts +6 -0
- package/dist/services/error-handling/abstract/abstract-async-error-handling-factory.js +19 -0
- package/dist/services/error-handling/abstract/abstract-async-error-handling-service.d.ts +6 -0
- package/dist/services/error-handling/abstract/abstract-async-error-handling-service.js +18 -0
- package/dist/services/error-handling/abstract/abstract-error-handling-factory.d.ts +6 -0
- package/dist/services/error-handling/abstract/abstract-error-handling-factory.js +19 -0
- package/dist/services/error-handling/abstract/abstract-error-handling-service.d.ts +6 -0
- package/dist/services/error-handling/abstract/abstract-error-handling-service.js +19 -0
- package/dist/services/error-handling/error/application-error.d.ts +5 -0
- package/dist/services/error-handling/error/application-error.js +11 -0
- package/dist/services/error-handling/error/handler/default-error-handler.d.ts +5 -0
- package/dist/services/error-handling/error/handler/default-error-handler.js +13 -0
- package/dist/services/error-handling/error-handling-service.d.ts +7 -0
- package/dist/services/error-handling/error-handling-service.js +27 -0
- package/dist/services/error-handling/factory/error-handling-factory.d.ts +8 -0
- package/dist/services/error-handling/factory/error-handling-factory.js +21 -0
- package/dist/services/error-handling/interface/error-context-interface.d.ts +6 -0
- package/dist/services/error-handling/interface/error-context-interface.js +2 -0
- package/dist/services/error-handling/interface/error-handler-interface.d.ts +5 -0
- package/dist/services/error-handling/interface/error-handler-interface.js +2 -0
- package/dist/services/error-handling/interface/error-handling-factory-interface.d.ts +8 -0
- package/dist/services/error-handling/interface/error-handling-factory-interface.js +2 -0
- package/dist/services/error-handling/interface/error-handling-service-interface.d.ts +8 -0
- package/dist/services/error-handling/interface/error-handling-service-interface.js +2 -0
- package/dist/services/integration-api/context/integration-api-context.d.ts +9 -0
- package/dist/services/integration-api/context/integration-api-context.js +20 -0
- package/dist/services/integration-api/error/customer-config-error.d.ts +2 -0
- package/dist/services/integration-api/error/customer-config-error.js +5 -0
- package/dist/services/integration-api/error/customer-config-legacy-error.d.ts +3 -0
- package/dist/services/integration-api/error/customer-config-legacy-error.js +7 -0
- package/dist/services/integration-api/error/handler/customer-config-handler.d.ts +5 -0
- package/dist/services/integration-api/error/handler/customer-config-handler.js +19 -0
- package/dist/services/integration-api/error/handler/customer-config-legacy-handler.d.ts +6 -0
- package/dist/services/integration-api/error/handler/customer-config-legacy-handler.js +24 -0
- package/dist/services/integration-api/error/handler/origin-handler.d.ts +6 -0
- package/dist/services/integration-api/error/handler/origin-handler.js +22 -0
- package/dist/services/integration-api/error/load-customer-error.d.ts +4 -0
- package/dist/services/integration-api/error/load-customer-error.js +10 -0
- package/dist/services/integration-api/error/mandatory-file-missing-error.d.ts +3 -0
- package/dist/services/integration-api/error/mandatory-file-missing-error.js +8 -0
- package/dist/services/integration-api/error/origin-error.d.ts +3 -0
- package/dist/services/integration-api/error/origin-error.js +7 -0
- package/dist/services/integration-api/external/external-file-reader.d.ts +4 -0
- package/dist/services/integration-api/external/external-file-reader.js +17 -0
- package/dist/services/integration-api/factory/integration-api-service-factory.d.ts +13 -0
- package/dist/services/integration-api/factory/integration-api-service-factory.js +55 -0
- package/dist/services/integration-api/file-list.d.ts +18 -0
- package/dist/services/integration-api/file-list.js +79 -0
- package/dist/services/integration-api/file-reader.d.ts +15 -0
- package/dist/services/integration-api/file-reader.js +97 -0
- package/dist/services/integration-api/file-writer.d.ts +9 -0
- package/dist/services/integration-api/file-writer.js +27 -0
- package/dist/services/integration-api/handler/customer-config-handler.d.ts +16 -0
- package/dist/services/integration-api/handler/customer-config-handler.js +55 -0
- package/dist/services/integration-api/handler/file-handler.d.ts +9 -0
- package/dist/services/integration-api/handler/file-handler.js +20 -0
- package/dist/services/integration-api/handler/install-resource-handler.d.ts +33 -0
- package/dist/services/integration-api/handler/install-resource-handler.js +67 -0
- package/dist/services/integration-api/handler/module-handler.d.ts +12 -0
- package/dist/services/integration-api/handler/module-handler.js +20 -0
- package/dist/services/integration-api/handler/server-config-handler.d.ts +8 -0
- package/dist/services/integration-api/handler/server-config-handler.js +21 -0
- package/dist/services/integration-api/integration-api-model.d.ts +89 -0
- package/dist/services/integration-api/integration-api-model.js +2 -0
- package/dist/services/integration-api/integration-api-service.d.ts +21 -0
- package/dist/services/integration-api/integration-api-service.js +76 -0
- package/dist/services/integration-api/struct/customer-config-file.d.ts +10 -0
- package/dist/services/integration-api/struct/customer-config-file.js +32 -0
- package/dist/services/integration-api/struct/customer-config.d.ts +22 -0
- package/dist/services/integration-api/struct/customer-config.js +67 -0
- package/dist/services/integration-api/struct/file.d.ts +19 -0
- package/dist/services/integration-api/struct/file.js +61 -0
- package/dist/services/integration-api/struct/install-resource-file.d.ts +6 -0
- package/dist/services/integration-api/struct/install-resource-file.js +12 -0
- package/dist/services/integration-api/struct/module-file.d.ts +5 -0
- package/dist/services/integration-api/struct/module-file.js +10 -0
- package/dist/services/integration-api/struct/ro-file.d.ts +13 -0
- package/dist/services/integration-api/struct/ro-file.js +26 -0
- package/dist/services/integration-api/struct/server-config-file.d.ts +9 -0
- package/dist/services/integration-api/struct/server-config-file.js +22 -0
- package/dist/services/integration-api/struct/virtual-file.d.ts +14 -0
- package/dist/services/integration-api/struct/virtual-file.js +28 -0
- package/dist/services/integration-api/validator/customer-config-validator.d.ts +5 -0
- package/dist/services/integration-api/validator/customer-config-validator.js +23 -0
- package/dist/services/integration-api/validator/mandatory-files-validator.d.ts +7 -0
- package/dist/services/integration-api/validator/mandatory-files-validator.js +39 -0
- package/dist/services/integration-api/virtual/external-recipe.d.ts +9 -0
- package/dist/services/integration-api/virtual/external-recipe.js +19 -0
- package/dist/services/integration-api/virtual/virtual-file-handler.d.ts +7 -0
- package/dist/services/integration-api/virtual/virtual-file-handler.js +38 -0
- package/dist/services/onboarding/browser/abort-response.d.ts +5 -0
- package/dist/services/onboarding/browser/abort-response.js +10 -0
- package/dist/services/onboarding/browser/baqend-response.d.ts +12 -0
- package/dist/services/onboarding/browser/baqend-response.js +52 -0
- package/dist/services/onboarding/browser/origin-response.d.ts +8 -0
- package/dist/services/onboarding/browser/origin-response.js +20 -0
- package/dist/services/onboarding/config-renderer/install-file-recipe.d.ts +7 -0
- package/dist/services/onboarding/config-renderer/install-file-recipe.js +13 -0
- package/dist/services/onboarding/config-renderer/speed-kit-install-context.d.ts +22 -0
- package/dist/services/onboarding/config-renderer/speed-kit-install-context.js +78 -0
- package/dist/services/onboarding/dashboard/athena-service.d.ts +11 -0
- package/dist/services/onboarding/dashboard/athena-service.js +70 -0
- package/dist/services/onboarding/dashboard/frontend-dist/assets/index-87b53ed4.css +1 -0
- package/dist/services/onboarding/dashboard/frontend-dist/assets/main-274b5625.js +9 -0
- package/dist/services/onboarding/dashboard/frontend-dist/index.html +18 -0
- package/dist/services/onboarding/dashboard/index.d.ts +16 -0
- package/dist/services/onboarding/dashboard/index.js +78 -0
- package/dist/services/onboarding/dashboard/param-query-builder.d.ts +9 -0
- package/dist/services/onboarding/dashboard/param-query-builder.js +67 -0
- package/dist/services/onboarding/dashboard/request-diff-service.d.ts +11 -0
- package/dist/services/onboarding/dashboard/request-diff-service.js +59 -0
- package/dist/services/onboarding/error/vm-error.d.ts +2 -0
- package/dist/services/onboarding/error/vm-error.js +6 -0
- package/dist/services/onboarding/fetch-event-handler.d.ts +19 -0
- package/dist/services/onboarding/fetch-event-handler.js +155 -0
- package/dist/services/onboarding/fetch-events/customer-domain-document-response.d.ts +24 -0
- package/dist/services/onboarding/fetch-events/customer-domain-document-response.js +118 -0
- package/dist/services/onboarding/fetch-events/customer-service-worker-js.d.ts +14 -0
- package/dist/services/onboarding/fetch-events/customer-service-worker-js.js +30 -0
- package/dist/services/onboarding/fetch-events/dashboard-request.d.ts +15 -0
- package/dist/services/onboarding/fetch-events/dashboard-request.js +29 -0
- package/dist/services/onboarding/fetch-events/speed-kit-asset-request.d.ts +26 -0
- package/dist/services/onboarding/fetch-events/speed-kit-asset-request.js +138 -0
- package/dist/services/onboarding/fetch-events/speed-kit-install-html.d.ts +15 -0
- package/dist/services/onboarding/fetch-events/speed-kit-install-html.js +49 -0
- package/dist/services/onboarding/fetch-events/speed-kit-install-js.d.ts +22 -0
- package/dist/services/onboarding/fetch-events/speed-kit-install-js.js +62 -0
- package/dist/services/onboarding/fetch-events/speed-kit-rum-pi-request.d.ts +21 -0
- package/dist/services/onboarding/fetch-events/speed-kit-rum-pi-request.js +43 -0
- package/dist/services/onboarding/fetch-events/speed-kit-service-worker-js.d.ts +17 -0
- package/dist/services/onboarding/fetch-events/speed-kit-service-worker-js.js +27 -0
- package/dist/services/onboarding/file-events/fileWatcher.d.ts +28 -0
- package/dist/services/onboarding/file-events/fileWatcher.js +133 -0
- package/dist/services/onboarding/index.d.ts +3 -0
- package/dist/services/onboarding/index.js +8 -0
- package/dist/services/onboarding/onboarding-model.d.ts +30 -0
- package/dist/services/onboarding/onboarding-model.js +53 -0
- package/dist/services/onboarding/onboarding-service-factory.d.ts +16 -0
- package/dist/services/onboarding/onboarding-service-factory.js +163 -0
- package/dist/services/onboarding/onboarding-service.d.ts +31 -0
- package/dist/services/onboarding/onboarding-service.js +130 -0
- package/dist/services/onboarding/request-cache/cache.d.ts +15 -0
- package/dist/services/onboarding/request-cache/cache.js +32 -0
- package/dist/services/onboarding/templates/install-speed-kit-html-template.d.ts +4 -0
- package/dist/services/onboarding/templates/install-speed-kit-html-template.js +264 -0
- package/dist/services/onboarding/templates/install-speed-kit-js-template.d.ts +4 -0
- package/dist/services/onboarding/templates/install-speed-kit-js-template.js +41 -0
- package/dist/services/onboarding/todo-collector.d.ts +18 -0
- package/dist/services/onboarding/todo-collector.js +48 -0
- package/dist/services/prewarm-service.d.ts +5 -0
- package/dist/services/prewarm-service.js +57 -0
- package/dist/services/pull/index.d.ts +3 -0
- package/dist/services/pull/index.js +6 -0
- package/dist/services/pull/pull-service-factory.d.ts +12 -0
- package/dist/services/pull/pull-service-factory.js +44 -0
- package/dist/services/pull/pull-service-model.d.ts +43 -0
- package/dist/services/pull/pull-service-model.js +27 -0
- package/dist/services/pull/pull-service.d.ts +18 -0
- package/dist/services/pull/pull-service.js +106 -0
- package/dist/templates/pops.js +97 -0
- package/dist/templates/speedKit.Revalidated.js +86 -0
- package/oclif.manifest.json +700 -0
- package/package.json +128 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{ "0": { "city": "Tesouro", "country": "BR", "state": "Mato-Grosso" }, "ICY": { "city": "Icy Bay", "country": "US", "state": "Alaska" }, "HGZ": { "city": "Hogatza", "country": "US", "state": "Alaska" }, "BYW": { "city": "Blakely Island", "country": "US", "state": "Washington" }, "BDF": { "city": "Bradford", "country": "US", "state": "Illinois" }, "BCS": { "city": "Belle Chasse", "country": "US", "state": "Louisiana" }, "BWL": { "city": "Blackwell", "country": "US", "state": "Oklahoma" }, "DUF": { "city": "Corolla", "country": "US", "state": "North Carolina" }, "FOB": { "city": "Fort Bragg", "country": "US", "state": "California" }, "ALX": { "city": "Alexander City", "country": "US", "state": "Alabama" }, "AFT": { "city": "Bila", "country": "SB", "state": "Malaita" }, "RNA": { "city": "Arona", "country": "SB", "state": "" }, "ATD": { "city": "Atoifi", "country": "SB", "state": "" }, "VEV": { "city": "Barakoma", "country": "SB", "state": "" }, "BPF": { "city": "Batuna Mission Station", "country": "SB", "state": "Western Province" }, "GEF": { "city": "Liangia", "country": "SB", "state": "" }, "AKS": { "city": "Auki", "country": "SB", "state": "" }, "BNY": { "city": "Anua", "country": "SB", "state": "" }, "CHY": { "city": "", "country": "SB", "state": "Choiseul" }, "BAS": { "city": "Ballalae", "country": "SB", "state": "" }, "FRE": { "city": "Fera Island", "country": "SB", "state": "Isabel" }, "HIR": { "city": "Honiara", "country": "SB", "state": "Guadalcanal" }, "MBU": { "city": "Mbambanakira", "country": "SB", "state": "Guadalcanal" }, "AVU": { "city": "", "country": "SB", "state": "Guadalcanal" }, "IRA": { "city": "Kirakira", "country": "SB", "state": "" }, "SCZ": { "city": "Santa Cruz/Graciosa Bay/Luova", "country": "SB", "state": "Temotu" }, "MUA": { "city": "", "country": "SB", "state": "" }, "GZO": { "city": "Gizo", "country": "SB", "state": "" }, "MNY": { "city": "Stirling Island", "country": "SB", "state": "" }, "PRS": { "city": "Parasi", "country": "SB", "state": "" }, "RNL": { "city": "Rennell Island", "country": "SB", "state": "Rennell and Bellona" }, "EGM": { "city": "Sege", "country": "SB", "state": "" }, "NNB": { "city": "Santa Ana Island", "country": "SB", "state": "" }, "RUS": { "city": "Marau", "country": "SB", "state": "" }, "VAO": { "city": "Suavanao", "country": "SB", "state": "" }, "XYA": { "city": "Yandina", "country": "SB", "state": "" }, "KGE": { "city": "Kagau Island", "country": "SB", "state": "" }, "KWS": { "city": "Kwailabesi", "country": "SB", "state": "" }, "GTA": { "city": "Gatokae", "country": "SB", "state": "" }, "RIN": { "city": "Ringi Cove", "country": "SB", "state": "" }, "RBV": { "city": "Ramata", "country": "SB", "state": "" }, "CEX": { "city": "Chena Hot Springs", "country": "US", "state": "Alaska" }, "HED": { "city": "Herendeen Bay", "country": "US", "state": "Alaska" }, "TWE": { "city": "Taylor", "country": "US", "state": "Alaska" }, "CDL": { "city": "Candle", "country": "US", "state": "Alaska" }, "BSZ": { "city": "Egegik", "country": "US", "state": "Alaska" }, "BSW": { "city": "Boswell Bay", "country": "US", "state": "Alaska" }, "INU": { "city": "Yaren District", "country": "NR", "state": "Yaren" }, "ATP": { "city": "Aitape", "country": "PG", "state": "Sandaun" }, "AMU": { "city": "Amanab", "country": "PG", "state": "Sandaun" }, "ADC": { "city": "Andekombe", "country": "PG", "state": "Gulf" }, "AIE": { "city": "Aiome", "country": "PG", "state": "Madang" }, "KPM": { "city": "", "country": "PG", "state": "Enga" }, "AUJ": { "city": "Ambunti", "country": "PG", "state": "East Sepik" }, "AWB": { "city": "Awaba", "country": "PG", "state": "Western Province" }, "AYU": { "city": "Aiyura Valley", "country": "PG", "state": "Eastern Highlands" }, "VMU": { "city": "Baimuru", "country": "PG", "state": "Gulf" }, "BDZ": { "city": "", "country": "PG", "state": "Morobe" }, "BUA": { "city": "Buka Island", "country": "PG", "state": "Bougainville" }, "OPU": { "city": "Balimo", "country": "PG", "state": "Western Province" }, "BUL": { "city": "Bulolo", "country": "PG", "state": "Morobe" }, "CMU": { "city": "Kundiawa", "country": "PG", "state": "Chimbu" }, "DER": { "city": "Derim", "country": "PG", "state": "Morobe" }, "DAU": { "city": "Daru", "country": "PG", "state": "Western Province" }, "XYR": { "city": "Yellow River Mission", "country": "PG", "state": "Sandaun" }, "FNE": { "city": "Fane Mission", "country": "PG", "state": "Central Province" }, "FIN": { "city": "Buki", "country": "PG", "state": "Morobe" }, "FAQ": { "city": "Frieda River", "country": "PG", "state": "East Sepik" }, "GKA": { "city": "Goronka", "country": "PG", "state": "Eastern Highlands" }, "GRL": { "city": "Au", "country": "PG", "state": "Morobe" }, "GAR": { "city": "Garaina", "country": "PG", "state": "Morobe" }, "GUR": { "city": "Gurney", "country": "PG", "state": "Milne Bay" }, "GAP": { "city": "Gusap", "country": "PG", "state": "Morobe" }, "PNP": { "city": "Popondetta", "country": "PG", "state": "Northern Province" }, "GMI": { "city": "Gasmata Island", "country": "PG", "state": "West New Britain" }, "GVI": { "city": "Green River", "country": "PG", "state": "Sandaun" }, "HKN": { "city": "Hoskins", "country": "PG", "state": "West New Britain" }, "KIE": { "city": "Kieta", "country": "PG", "state": "Bougainville Island" }, "LSA": { "city": "Losuia", "country": "PG", "state": "Milne Bay" }, "KBM": { "city": "", "country": "PG", "state": "Morobe" }, "KDR": { "city": "Kandrian", "country": "PG", "state": "West New Britain" }, "UNG": { "city": "Kiunga", "country": "PG", "state": "Western Province" }, "KRI": { "city": "Kikori", "country": "PG", "state": "Gulf" }, "KMA": { "city": "Kerema", "country": "PG", "state": "Gulf" }, "KKD": { "city": "Kokoda", "country": "PG", "state": "Northern Province" }, "KZF": { "city": "Kaintiba", "country": "PG", "state": "Gulf" }, "KUQ": { "city": "Kuri", "country": "PG", "state": "Gulf" }, "KVG": { "city": "Kavieng", "country": "PG", "state": "New Ireland" }, "KWO": { "city": "Kawito", "country": "PG", "state": "Western Province" }, "LNV": { "city": "Londolovit", "country": "PG", "state": "New Ireland" }, "LMY": { "city": "Lake Murray", "country": "PG", "state": "Western Province" }, "LMI": { "city": "Lumi", "country": "PG", "state": "Sandaun" }, "MYX": { "city": "Menyamya", "country": "PG", "state": "Morobe" }, "MAG": { "city": "Madang", "country": "PG", "state": "Madang" }, "HGU": { "city": "Mount Hagen", "country": "PG", "state": "Western Highlands" }, "MXK": { "city": "Mindik", "country": "PG", "state": "Morobe" }, "GUV": { "city": "Mougulu", "country": "PG", "state": "Western Province" }, "MDU": { "city": "", "country": "PG", "state": "Southern Highlands" }, "MAS": { "city": "", "country": "PG", "state": "Manus" }, "MXH": { "city": "Moro", "country": "PG", "state": "Southern Highlands" }, "MIS": { "city": "Misima Island", "country": "PG", "state": "Milne Bay" }, "GBF": { "city": "Negarbo", "country": "PG", "state": "Chimbu" }, "MFO": { "city": "Manguna", "country": "PG", "state": "East New Britain" }, "UKU": { "city": "Nuku", "country": "PG", "state": "Sandaun" }, "LAE": { "city": "Nadzab", "country": "PG", "state": "Morobe" }, "OGE": { "city": "", "country": "PG", "state": "Morobe" }, "OSE": { "city": "Omora", "country": "PG", "state": "Morobe" }, "PDI": { "city": "Pindiu", "country": "PG", "state": "Morobe" }, "POM": { "city": "Port Moresby", "country": "PG", "state": "National Capital" }, "KRJ": { "city": "", "country": "PG", "state": "East Sepik" }, "RMN": { "city": "", "country": "PG", "state": "Western Province" }, "KMR": { "city": "Karimui", "country": "PG", "state": "Chimbu" }, "SBE": { "city": "", "country": "PG", "state": "Western Province" }, "NIS": { "city": "Simberi Island", "country": "PG", "state": "New Ireland" }, "SIL": { "city": "Sila Mission", "country": "PG", "state": "Northern Province" }, "SIM": { "city": "Simbai", "country": "PG", "state": "Western Highlands" }, "SKC": { "city": "Suki", "country": "PG", "state": "Western Province" }, "TIZ": { "city": "Tari", "country": "PG", "state": "Southern Highlands" }, "TBG": { "city": "Tabubil", "country": "PG", "state": "Western Province" }, "TFM": { "city": "Telefomin", "country": "PG", "state": "Western Province" }, "TPI": { "city": "Tapini", "country": "PG", "state": "Central Province" }, "TAJ": { "city": "Aitape", "country": "PG", "state": "Sandaun" }, "RAB": { "city": "Tokua", "country": "PG", "state": "East New Britain" }, "TKW": { "city": "Tekin", "country": "PG", "state": "Sandaun" }, "TFI": { "city": "Tufi", "country": "PG", "state": "Northern Province" }, "VAI": { "city": "", "country": "PG", "state": "Sandaun" }, "WAO": { "city": "Wabo", "country": "PG", "state": "Gulf" }, "WBM": { "city": "", "country": "PG", "state": "Enga" }, "AGL": { "city": "", "country": "PG", "state": "Northern Province" }, "WWK": { "city": "Wewak", "country": "PG", "state": "East Sepik" }, "WOA": { "city": "Wonenara", "country": "PG", "state": "Eastern Highlands" }, "WSU": { "city": "Wasu", "country": "PG", "state": "Morobe" }, "WTP": { "city": "Fatima Mission", "country": "PG", "state": "Central Province" }, "WUG": { "city": "Wau", "country": "PG", "state": "Morobe" }, "JEG": { "city": "Aasiaat", "country": "GL", "state": "Qaasuitsup" }, "UAK": { "city": "Narsarsuaq", "country": "GL", "state": "Kujalleq" }, "CNP": { "city": "Neerlerit Inaat", "country": "GL", "state": "Sermersooq" }, "GOH": { "city": "Nuuk", "country": "GL", "state": "" }, "JAV": { "city": "Ilulissat", "country": "GL", "state": "" }, "KUS": { "city": "Kulusuk", "country": "GL", "state": "Sermersooq" }, "JSU": { "city": "Maniitsoq", "country": "GL", "state": "" }, "JFR": { "city": "Paamiut", "country": "GL", "state": "" }, "NAQ": { "city": "Qaanaaq", "country": "GL", "state": "" }, "SFJ": { "city": "Kangerlussuaq", "country": "GL", "state": "Qeqqata" }, "JHS": { "city": "Sisimiut", "country": "GL", "state": "" }, "THU": { "city": "Thule", "country": "GL", "state": "Qaasuitsup" }, "JUV": { "city": "Upernavik", "country": "GL", "state": "" }, "JQA": { "city": "Uummannaq", "country": "GL", "state": "" }, "AEY": { "city": "Akureyri", "country": "IS", "state": "Northeast" }, "BIU": { "city": "Bildudalur", "country": "IS", "state": "Westfjords" }, "BGJ": { "city": "Borgarfjordur eystri", "country": "IS", "state": "East" }, "BJD": { "city": "Bakkafjordur", "country": "IS", "state": "Northeast" }, "BLO": { "city": "Blonduos", "country": "IS", "state": "Northwest" }, "BQD": { "city": "Budardalur", "country": "IS", "state": "West" }, "BXV": { "city": "Breiddalsvik", "country": "IS", "state": "East" }, "DJU": { "city": "Djupivogur", "country": "IS", "state": "East" }, "EGS": { "city": "Egilsstadir", "country": "IS", "state": "East" }, "FAS": { "city": "Faskrudsfjordur", "country": "IS", "state": "East" }, "FAG": { "city": "Fagurholsmyri", "country": "IS", "state": "East" }, "GUU": { "city": "Grundarfjordur", "country": "IS", "state": "West" }, "GJR": { "city": "Gjogur", "country": "IS", "state": "Westfjords" }, "GRY": { "city": "Grimsey", "country": "IS", "state": "Northeast" }, "HVK": { "city": "Holmavik", "country": "IS", "state": "Westfjords" }, "HFN": { "city": "Hornafjordur", "country": "IS", "state": "East" }, "FLI": { "city": "Flateyri", "country": "IS", "state": "Westfjords" }, "HZK": { "city": "Husavik", "country": "IS", "state": "Northeast" }, "HVM": { "city": "Hvammstangi", "country": "IS", "state": "Northwest" }, "HLO": { "city": "Onundarfjordur", "country": "IS", "state": "Westfjords" }, "IFJ": { "city": "Isafjordur", "country": "IS", "state": "Westfjords" }, "KEF": { "city": "Reykjavik", "country": "IS", "state": "Southern Peninsula" }, "OPA": { "city": "Kopasker", "country": "IS", "state": "Northeast" }, "SAK": { "city": "Saudarkrokur", "country": "IS", "state": "Northwest" }, "NOR": { "city": "Nordfjordur", "country": "IS", "state": "East" }, "OFJ": { "city": "Olafsfjordur", "country": "IS", "state": "Northeast" }, "PFJ": { "city": "Patreksfjordur", "country": "IS", "state": "Westfjords" }, "RHA": { "city": "Reykholar", "country": "IS", "state": "Westfjords" }, "OLI": { "city": "Rif", "country": "IS", "state": "West" }, "RFN": { "city": "Raufarhofn", "country": "IS", "state": "Northeast" }, "RKV": { "city": "Reykjavik", "country": "IS", "state": "Capital Region" }, "MVA": { "city": "Myvatn", "country": "IS", "state": "Northeast" }, "SIJ": { "city": "Siglufjordur", "country": "IS", "state": "Northeast" }, "SYK": { "city": "Stykkisholmur", "country": "IS", "state": "West" }, "TEY": { "city": "Tingeyri", "country": "IS", "state": "Westfjords" }, "THO": { "city": "Thorshofn", "country": "IS", "state": "Northeast" }, "VEY": { "city": "Vestmannaeyjar", "country": "IS", "state": "South" }, "VPN": { "city": "Vopnafjordur", "country": "IS", "state": "East" }, "PRN": { "city": "Prishtina", "country": "KS", "state": "Pristina" }, "YZZ": { "city": "Trail", "country": "CA", "state": "British Columbia" }, "YAA": { "city": "Anahim Lake", "country": "CA", "state": "British Columbia" }, "DGF": { "city": "Douglas Lake", "country": "CA", "state": "British Columbia" }, "JHL": { "city": "Albian Village", "country": "CA", "state": "Alberta" }, "DUQ": { "city": "Duncan", "country": "CA", "state": "British Columbia" }, "YWM": { "city": "Williams Harbour", "country": "CA", "state": "Newfoundland and Labrador" }, "YFX": { "city": "St. Lewis", "country": "CA", "state": "Newfoundland and Labrador" }, "YHA": { "city": "Port Hope Simpson", "country": "CA", "state": "Newfoundland and Labrador" }, "YRG": { "city": "Rigolet", "country": "CA", "state": "Newfoundland and Labrador" }, "DVK": { "city": "Diavik", "country": "CA", "state": "Northwest Territories" }, "YCK": { "city": "Colville Lake", "country": "CA", "state": "Northwest Territories" }, "YLE": { "city": "Whati", "country": "CA", "state": "Northwest Territories" }, "NML": { "city": "Fort McMurray", "country": "CA", "state": "Alberta" }, "ZSP": { "city": "St. Paul", "country": "CA", "state": "Alberta" }, "DAS": { "city": "Great Bear Lake", "country": "CA", "state": "Northwest Territories" }, "YFI": { "city": "Suncor Energy Site", "country": "CA", "state": "Alberta" }, "SUR": { "city": "Summer Beaver", "country": "CA", "state": "Ontario" }, "YAX": { "city": "Angling Lake", "country": "CA", "state": "Ontario" }, "WNN": { "city": "Wunnumin Lake", "country": "CA", "state": "Ontario" }, "YNO": { "city": "North Spirit Lake", "country": "CA", "state": "Ontario" }, "XBE": { "city": "Bearskin Lake", "country": "CA", "state": "Ontario" }, "KIF": { "city": "Kingfisher Lake", "country": "CA", "state": "Ontario" }, "YOG": { "city": "Ogoki Post", "country": "CA", "state": "Ontario" }, "YEB": { "city": "Bar River", "country": "CA", "state": "Ontario" }, "YHP": { "city": "Poplar Hill", "country": "CA", "state": "Ontario" }, "YNX": { "city": "Snap Lake", "country": "CA", "state": "Northwest Territories" }, "YKU": { "city": "Chisasibi", "country": "CA", "state": "Quebec" }, "ZTB": { "city": "Tete-a-la-Baleine", "country": "CA", "state": "Quebec" }, "YAU": { "city": "Kattiniq", "country": "CA", "state": "Quebec" }, "ZLT": { "city": "La Tabatiere", "country": "CA", "state": "Quebec" }, "YAC": { "city": "Cat Lake", "country": "CA", "state": "Ontario" }, "YAR": { "city": "La Grande-3", "country": "CA", "state": "Quebec" }, "YAG": { "city": "Fort Frances", "country": "CA", "state": "Ontario" }, "YAH": { "city": "La Grande-4", "country": "CA", "state": "Quebec" }, "YAL": { "city": "Alert Bay", "country": "CA", "state": "British Columbia" }, "YAM": { "city": "Sault Ste Marie", "country": "CA", "state": "Ontario" }, "XKS": { "city": "Kasabonika", "country": "CA", "state": "Ontario" }, "YKG": { "city": "Kangirsuk", "country": "CA", "state": "Quebec" }, "YAT": { "city": "Attawapiskat", "country": "CA", "state": "Ontario" }, "YAW": { "city": "Halifax", "country": "CA", "state": "Nova Scotia" }, "YAY": { "city": "St. Anthony", "country": "CA", "state": "Newfoundland and Labrador" }, "YAZ": { "city": "Tofino", "country": "CA", "state": "British Columbia" }, "YBA": { "city": "Banff", "country": "CA", "state": "Alberta" }, "YBB": { "city": "Kugaaruk", "country": "CA", "state": "Nunavut" }, "YBC": { "city": "Baie-Comeau", "country": "CA", "state": "Quebec" }, "QBC": { "city": "Bella Coola", "country": "CA", "state": "British Columbia" }, "YBE": { "city": "Uranium City", "country": "CA", "state": "Saskatchewan" }, "YBY": { "city": "Bonnyville", "country": "CA", "state": "Alberta" }, "YBG": { "city": "Bagotville", "country": "CA", "state": "Quebec" }, "YBK": { "city": "Baker Lake", "country": "CA", "state": "Nunavut" }, "YBL": { "city": "Campbell River", "country": "CA", "state": "British Columbia" }, "XTL": { "city": "Tadoule Lake", "country": "CA", "state": "Manitoba" }, "YBR": { "city": "Brandon", "country": "CA", "state": "Manitoba" }, "YBT": { "city": "Brochet", "country": "CA", "state": "Manitoba" }, "YBV": { "city": "Berens River", "country": "CA", "state": "Manitoba" }, "YBX": { "city": "Lourdes-De-Blanc-Sablon", "country": "CA", "state": "Quebec" }, "YRF": { "city": "Cartwright", "country": "CA", "state": "Newfoundland and Labrador" }, "YCB": { "city": "Cambridge Bay", "country": "CA", "state": "Nunavut" }, "YCC": { "city": "Cornwall", "country": "CA", "state": "Quebec" }, "YCD": { "city": "Nanaimo", "country": "CA", "state": "British Columbia" }, "YCE": { "city": "Centralia", "country": "CA", "state": "Ontario" }, "YCG": { "city": "Castlegar", "country": "CA", "state": "British Columbia" }, "YCH": { "city": "Miramichi", "country": "CA", "state": "New Brunswick" }, "XCM": { "city": "Chatham-Kent", "country": "CA", "state": "Ontario" }, "YCL": { "city": "Charlo", "country": "CA", "state": "New Brunswick" }, "YCN": { "city": "Cochrane", "country": "CA", "state": "Ontario" }, "YCO": { "city": "Kugluktuk", "country": "CA", "state": "Nunavut" }, "YCQ": { "city": "Chetwynd", "country": "CA", "state": "British Columbia" }, "YCR": { "city": "Cross Lake", "country": "CA", "state": "Manitoba" }, "YCS": { "city": "Chesterfield Inlet", "country": "CA", "state": "Nunavut" }, "YCY": { "city": "Clyde River", "country": "CA", "state": "Nunavut" }, "YCZ": { "city": "Fairmont Hot Springs", "country": "CA", "state": "British Columbia" }, "YDA": { "city": "Dawson City", "country": "CA", "state": "Yukon" }, "YDB": { "city": "Burwash", "country": "CA", "state": "Yukon" }, "YDF": { "city": "Deer Lake", "country": "CA", "state": "Newfoundland and Labrador" }, "YDM": { "city": "Ross River", "country": "CA", "state": "Yukon" }, "YDN": { "city": "Dauphin", "country": "CA", "state": "Manitoba" }, "YDO": { "city": "Dolbeau-St-Felicien", "country": "CA", "state": "Quebec" }, "YDP": { "city": "Nain", "country": "CA", "state": "Newfoundland and Labrador" }, "YDQ": { "city": "Dawson Creek", "country": "CA", "state": "British Columbia" }, "YEG": { "city": "Edmonton", "country": "CA", "state": "Alberta" }, "YEK": { "city": "Arviat", "country": "CA", "state": "Nunavut" }, "YEL": { "city": "Elliot Lake", "country": "CA", "state": "Ontario" }, "YEM": { "city": "Manitowaning", "country": "CA", "state": "Ontario" }, "YEN": { "city": "Estevan", "country": "CA", "state": "Saskatchewan" }, "YER": { "city": "Fort Severn", "country": "CA", "state": "Ontario" }, "YET": { "city": "Edson", "country": "CA", "state": "Alberta" }, "YEU": { "city": "Eureka", "country": "CA", "state": "Nunavut" }, "YEV": { "city": "Inuvik", "country": "CA", "state": "Northwest Territories" }, "YEY": { "city": "Amos", "country": "CA", "state": "Quebec" }, "YFA": { "city": "Fort Albany", "country": "CA", "state": "Ontario" }, "YFB": { "city": "Iqaluit", "country": "CA", "state": "Nunavut" }, "YFC": { "city": "Fredericton", "country": "CA", "state": "New Brunswick" }, "YFE": { "city": "Forestville", "country": "CA", "state": "Quebec" }, "YFH": { "city": "Fort Hope", "country": "CA", "state": "Ontario" }, "YTM": { "city": "Riviere Rouge", "country": "CA", "state": "Quebec" }, "YFO": { "city": "Flin Flon", "country": "CA", "state": "Manitoba" }, "YFR": { "city": "Fort Resolution", "country": "CA", "state": "Northwest Territories" }, "YFS": { "city": "Fort Simpson", "country": "CA", "state": "Northwest Territories" }, "YMN": { "city": "Makkovik", "country": "CA", "state": "Newfoundland and Labrador" }, "YGB": { "city": "Texada", "country": "CA", "state": "British Columbia" }, "YGD": { "city": "Goderich", "country": "CA", "state": "Ontario" }, "YGH": { "city": "Fort Good Hope", "country": "CA", "state": "Northwest Territories" }, "YGK": { "city": "Kingston", "country": "CA", "state": "Ontario" }, "YGL": { "city": "La Grande Riviere", "country": "CA", "state": "Quebec" }, "YGM": { "city": "Gimli", "country": "CA", "state": "Manitoba" }, "YGO": { "city": "Gods Lake Narrows", "country": "CA", "state": "Manitoba" }, "YGP": { "city": "Gaspe", "country": "CA", "state": "Quebec" }, "YGQ": { "city": "Geraldton", "country": "CA", "state": "Ontario" }, "YGR": { "city": "Iles-de-la-Madeleine", "country": "CA", "state": "Quebec" }, "YGT": { "city": "Igloolik", "country": "CA", "state": "Nunavut" }, "YGV": { "city": "Havre St-Pierre", "country": "CA", "state": "Quebec" }, "YGW": { "city": "Kuujjuarapik", "country": "CA", "state": "Quebec" }, "YGX": { "city": "Gillam", "country": "CA", "state": "Manitoba" }, "YGZ": { "city": "Grise Fiord", "country": "CA", "state": "Nunavut" }, "YQC": { "city": "Quaqtaq", "country": "CA", "state": "Quebec" }, "YHD": { "city": "Dryden", "country": "CA", "state": "Ontario" }, "YHE": { "city": "Hope", "country": "CA", "state": "British Columbia" }, "YHF": { "city": "Hearst", "country": "CA", "state": "Ontario" }, "YNS": { "city": "Nemiscau", "country": "CA", "state": "Quebec" }, "YHI": { "city": "Ulukhaktok", "country": "CA", "state": "Northwest Territories" }, "YHK": { "city": "Gjoa Haven", "country": "CA", "state": "Nunavut" }, "YHM": { "city": "Hamilton", "country": "CA", "state": "Ontario" }, "YHN": { "city": "Hornepayne", "country": "CA", "state": "Ontario" }, "YHO": { "city": "Hopedale", "country": "CA", "state": "Newfoundland and Labrador" }, "YHR": { "city": "Chevery", "country": "CA", "state": "Quebec" }, "YHT": { "city": "Haines Junction", "country": "CA", "state": "Yukon" }, "YHU": { "city": "Montreal", "country": "CA", "state": "Quebec" }, "YHY": { "city": "Hay River", "country": "CA", "state": "Northwest Territories" }, "YHZ": { "city": "Halifax", "country": "CA", "state": "Nova Scotia" }, "YIB": { "city": "Atikokan", "country": "CA", "state": "Ontario" }, "YDG": { "city": "Digby", "country": "CA", "state": "Nova Scotia" }, "YIF": { "city": "St-Augustin", "country": "CA", "state": "Quebec" }, "YIK": { "city": "Ivujivik", "country": "CA", "state": "Quebec" }, "YIO": { "city": "Pond Inlet", "country": "CA", "state": "Nunavut" }, "YIV": { "city": "Island Lake", "country": "CA", "state": "Manitoba" }, "YJF": { "city": "Fort Liard", "country": "CA", "state": "Northwest Territories" }, "YJN": { "city": "St Jean", "country": "CA", "state": "Quebec" }, "YJT": { "city": "Stephenville", "country": "CA", "state": "Newfoundland and Labrador" }, "YKA": { "city": "Kamloops", "country": "CA", "state": "British Columbia" }, "LAK": { "city": "Aklavik", "country": "CA", "state": "Northwest Territories" }, "YKF": { "city": "Kitchener", "country": "CA", "state": "Ontario" }, "YKJ": { "city": "Key Lake", "country": "CA", "state": "Saskatchewan" }, "YKL": { "city": "Schefferville", "country": "CA", "state": "Quebec" }, "AKV": { "city": "Akulivik", "country": "CA", "state": "Quebec" }, "YKQ": { "city": "Waskaganish", "country": "CA", "state": "Quebec" }, "YKX": { "city": "Kirkland Lake", "country": "CA", "state": "Ontario" }, "YKY": { "city": "Kindersley", "country": "CA", "state": "Saskatchewan" }, "YKZ": { "city": "Toronto", "country": "CA", "state": "Ontario" }, "YPJ": { "city": "Aupaluk", "country": "CA", "state": "Quebec" }, "YLC": { "city": "Kimmirut", "country": "CA", "state": "Nunavut" }, "YLD": { "city": "Chapleau", "country": "CA", "state": "Ontario" }, "YLH": { "city": "Lansdowne House", "country": "CA", "state": "Ontario" }, "YLJ": { "city": "Meadow Lake", "country": "CA", "state": "Saskatchewan" }, "YSG": { "city": "Lutselk'e", "country": "CA", "state": "Northwest Territories" }, "YLL": { "city": "Lloydminster", "country": "CA", "state": "Saskatchewan" }, "YLR": { "city": "Leaf Rapids", "country": "CA", "state": "Manitoba" }, "YLK": { "city": "Barrie-Orillia", "country": "CA", "state": "Ontario" }, "YLT": { "city": "Alert", "country": "CA", "state": "Nunavut" }, "XGR": { "city": "Kangiqsualujjuaq", "country": "CA", "state": "Quebec" }, "YLW": { "city": "Kelowna", "country": "CA", "state": "British Columbia" }, "YMA": { "city": "Mayo", "country": "CA", "state": "Yukon" }, "YME": { "city": "Matane", "country": "CA", "state": "Quebec" }, "YMG": { "city": "Manitouwadge", "country": "CA", "state": "Ontario" }, "YMH": { "city": "Mary's Harbour", "country": "CA", "state": "Newfoundland and Labrador" }, "YMJ": { "city": "Moose Jaw", "country": "CA", "state": "Saskatchewan" }, "YML": { "city": "Charlevoix", "country": "CA", "state": "Quebec" }, "YMM": { "city": "Fort McMurray", "country": "CA", "state": "Alberta" }, "YMO": { "city": "Moosonee", "country": "CA", "state": "Ontario" }, "YMT": { "city": "Chibougamau", "country": "CA", "state": "Quebec" }, "YUD": { "city": "Umiujaq", "country": "CA", "state": "Quebec" }, "YMX": { "city": "Montreal", "country": "CA", "state": "Quebec" }, "YNA": { "city": "Natashquan", "country": "CA", "state": "Quebec" }, "YNC": { "city": "Wemindji", "country": "CA", "state": "Quebec" }, "YND": { "city": "Gatineau", "country": "CA", "state": "Quebec" }, "YNE": { "city": "Norway House", "country": "CA", "state": "Manitoba" }, "YNL": { "city": "Points North Landing", "country": "CA", "state": "Saskatchewan" }, "YNM": { "city": "Matagami", "country": "CA", "state": "Quebec" }, "YNN": { "city": "Nejanilini Lake", "country": "CA", "state": "Manitoba" }, "HZP": { "city": "Fort Mackay", "country": "CA", "state": "Alberta" }, "YOA": { "city": "Ekati", "country": "CA", "state": "Northwest Territories" }, "YOC": { "city": "Old Crow", "country": "CA", "state": "Yukon" }, "YOD": { "city": "Cold Lake", "country": "CA", "state": "Alberta" }, "YOH": { "city": "Oxford House", "country": "CA", "state": "Manitoba" }, "YOJ": { "city": "High Level", "country": "CA", "state": "Alberta" }, "YOO": { "city": "Oshawa", "country": "CA", "state": "Ontario" }, "YOP": { "city": "Rainbow Lake", "country": "CA", "state": "Alberta" }, "YOS": { "city": "Owen Sound", "country": "CA", "state": "Ontario" }, "YOW": { "city": "Ottawa", "country": "CA", "state": "Ontario" }, "YPA": { "city": "Prince Albert", "country": "CA", "state": "Saskatchewan" }, "YPC": { "city": "Paulatuk", "country": "CA", "state": "Northwest Territories" }, "YPS": { "city": "Port Hawkesbury", "country": "CA", "state": "Nova Scotia" }, "YPE": { "city": "Peace River", "country": "CA", "state": "Alberta" }, "YPG": { "city": "Portage", "country": "CA", "state": "Manitoba" }, "YPH": { "city": "Inukjuak", "country": "CA", "state": "Quebec" }, "YPL": { "city": "Pickle Lake", "country": "CA", "state": "Ontario" }, "YPM": { "city": "Pikangikum", "country": "CA", "state": "Ontario" }, "YPN": { "city": "Port-Menier", "country": "CA", "state": "Quebec" }, "YPO": { "city": "Peawanuck", "country": "CA", "state": "Ontario" }, "YPQ": { "city": "Peterborough", "country": "CA", "state": "Ontario" }, "YPR": { "city": "Prince Rupert", "country": "CA", "state": "British Columbia" }, "YPW": { "city": "Powell River", "country": "CA", "state": "British Columbia" }, "YPX": { "city": "Puvirnituq", "country": "CA", "state": "Quebec" }, "YPY": { "city": "Fort Chipewyan", "country": "CA", "state": "Alberta" }, "YQA": { "city": "Muskoka", "country": "CA", "state": "Ontario" }, "YQB": { "city": "Quebec", "country": "CA", "state": "Quebec" }, "YQD": { "city": "The Pas", "country": "CA", "state": "Manitoba" }, "YQF": { "city": "Red Deer", "country": "CA", "state": "Alberta" }, "YQG": { "city": "Windsor", "country": "CA", "state": "Ontario" }, "YQH": { "city": "Watson Lake", "country": "CA", "state": "Yukon" }, "YQI": { "city": "Yarmouth", "country": "CA", "state": "Nova Scotia" }, "YQK": { "city": "Kenora", "country": "CA", "state": "Ontario" }, "YQL": { "city": "Lethbridge", "country": "CA", "state": "Alberta" }, "YQM": { "city": "Moncton", "country": "CA", "state": "New Brunswick" }, "YQN": { "city": "Nakina", "country": "CA", "state": "Ontario" }, "YQQ": { "city": "Comox", "country": "CA", "state": "British Columbia" }, "YQR": { "city": "Regina", "country": "CA", "state": "Saskatchewan" }, "YQS": { "city": "St Thomas", "country": "CA", "state": "Ontario" }, "YQT": { "city": "Thunder Bay", "country": "CA", "state": "Ontario" }, "YQU": { "city": "Grande Prairie", "country": "CA", "state": "Alberta" }, "YQV": { "city": "Yorkton", "country": "CA", "state": "Saskatchewan" }, "YQW": { "city": "North Battleford", "country": "CA", "state": "Saskatchewan" }, "YQX": { "city": "Gander", "country": "CA", "state": "Newfoundland and Labrador" }, "YQY": { "city": "Sydney", "country": "CA", "state": "Nova Scotia" }, "YQZ": { "city": "Quesnel", "country": "CA", "state": "British Columbia" }, "YRA": { "city": "Gameti", "country": "CA", "state": "Northwest Territories" }, "YRB": { "city": "Resolute Bay", "country": "CA", "state": "Nunavut" }, "YRI": { "city": "Riviere-du-Loup", "country": "CA", "state": "Quebec" }, "YRJ": { "city": "Roberval", "country": "CA", "state": "Quebec" }, "YRL": { "city": "Red Lake", "country": "CA", "state": "Ontario" }, "YRO": { "city": "Ottawa", "country": "CA", "state": "Ontario" }, "YRP": { "city": "Carp", "country": "CA", "state": "Ontario" }, "YRQ": { "city": "Trois-Rivieres", "country": "CA", "state": "Quebec" }, "YRS": { "city": "Red Sucker Lake", "country": "CA", "state": "Manitoba" }, "YRT": { "city": "Rankin Inlet", "country": "CA", "state": "Nunavut" }, "YRV": { "city": "Revelstoke", "country": "CA", "state": "British Columbia" }, "YSB": { "city": "Sudbury", "country": "CA", "state": "Ontario" }, "YSC": { "city": "Sherbrooke", "country": "CA", "state": "Quebec" }, "YSF": { "city": "Stony Rapids", "country": "CA", "state": "Saskatchewan" }, "YSH": { "city": "Smiths Falls", "country": "CA", "state": "Ontario" }, "YSJ": { "city": "Saint John", "country": "CA", "state": "New Brunswick" }, "YSK": { "city": "Sanikiluaq", "country": "CA", "state": "Nunavut" }, "YSL": { "city": "St Leonard", "country": "CA", "state": "New Brunswick" }, "YSM": { "city": "Fort Smith", "country": "CA", "state": "Northwest Territories" }, "YCM": { "city": "St Catharines", "country": "CA", "state": "Ontario" }, "YSP": { "city": "Marathon", "country": "CA", "state": "Ontario" }, "YST": { "city": "St. Theresa Point", "country": "CA", "state": "Manitoba" }, "YSU": { "city": "Summerside", "country": "CA", "state": "Prince Edward Island" }, "YSY": { "city": "Sachs Harbour", "country": "CA", "state": "Northwest Territories" }, "YTA": { "city": "Pembroke", "country": "CA", "state": "Ontario" }, "YTE": { "city": "Cape Dorset", "country": "CA", "state": "Nunavut" }, "YTF": { "city": "Alma", "country": "CA", "state": "Quebec" }, "YTH": { "city": "Thompson", "country": "CA", "state": "Manitoba" }, "YTL": { "city": "Big Trout Lake", "country": "CA", "state": "Ontario" }, "YTQ": { "city": "Tasiujaq", "country": "CA", "state": "Quebec" }, "YTR": { "city": "Trenton", "country": "CA", "state": "Ontario" }, "YTS": { "city": "Timmins", "country": "CA", "state": "Ontario" }, "YTZ": { "city": "Toronto", "country": "CA", "state": "Ontario" }, "YUB": { "city": "Tuktoyaktuk", "country": "CA", "state": "Northwest Territories" }, "YUL": { "city": "Montreal", "country": "CA", "state": "Quebec" }, "YUT": { "city": "Repulse Bay", "country": "CA", "state": "Nunavut" }, "YUX": { "city": "Hall Beach", "country": "CA", "state": "Nunavut" }, "YUY": { "city": "Rouyn-Noranda", "country": "CA", "state": "Quebec" }, "YVB": { "city": "Bonaventure", "country": "CA", "state": "Quebec" }, "YVC": { "city": "La Ronge", "country": "CA", "state": "Saskatchewan" }, "YVE": { "city": "Vernon", "country": "CA", "state": "British Columbia" }, "YVM": { "city": "Qikiqtarjuaq", "country": "CA", "state": "Nunavut" }, "YVO": { "city": "Val-d'Or", "country": "CA", "state": "Quebec" }, "YVP": { "city": "Kuujjuaq", "country": "CA", "state": "Quebec" }, "YVQ": { "city": "Norman Wells", "country": "CA", "state": "Northwest Territories" }, "YVR": { "city": "Vancouver", "country": "CA", "state": "British Columbia" }, "YVT": { "city": "Buffalo Narrows", "country": "CA", "state": "Saskatchewan" }, "YVV": { "city": "Wiarton", "country": "CA", "state": "Ontario" }, "YVZ": { "city": "Deer Lake", "country": "CA", "state": "Ontario" }, "YWA": { "city": "Petawawa", "country": "CA", "state": "Ontario" }, "YWG": { "city": "Winnipeg", "country": "CA", "state": "Manitoba" }, "YWJ": { "city": "Deline", "country": "CA", "state": "Northwest-Territories" }, "YWK": { "city": "Wabush", "country": "CA", "state": "Newfoundland-and-Labrador" }, "YWL": { "city": "Williams Lake", "country": "CA", "state": "British-Columbia" }, "YWP": { "city": "Webequie", "country": "CA", "state": "Ontario" }, "YWY": { "city": "Wrigley", "country": "CA", "state": "Northwest-Territories" }, "YXC": { "city": "Cranbrook", "country": "CA", "state": "British-Columbia" }, "YXD": { "city": "Edmonton", "country": "CA", "state": "Alberta" }, "YXE": { "city": "Saskatoon", "country": "CA", "state": "Saskatchewan" }, "YXH": { "city": "Medicine Hat", "country": "CA", "state": "Alberta" }, "YXJ": { "city": "Fort St.John", "country": "CA", "state": "British-Columbia" }, "YXK": { "city": "Rimouski", "country": "CA", "state": "Quebec" }, "YXL": { "city": "Sioux Lookout", "country": "CA", "state": "Ontario" }, "YXN": { "city": "Whale Cove", "country": "CA", "state": "Nunavut" }, "YXP": { "city": "Pangnirtung", "country": "CA", "state": "Nunavut" }, "YXQ": { "city": "Beaver Creek", "country": "CA", "state": "Yukon" }, "YXR": { "city": "Earlton", "country": "CA", "state": "Ontario" }, "YXS": { "city": "Prince George", "country": "CA", "state": "British-Columbia" }, "YXT": { "city": "Terrace", "country": "CA", "state": "British-Columbia" }, "YXU": { "city": "London", "country": "CA", "state": "Ontario" }, "YXX": { "city": "Abbotsford", "country": "CA", "state": "British-Columbia" }, "YXY": { "city": "Whitehorse", "country": "CA", "state": "Yukon" }, "YXZ": { "city": "Wawa", "country": "CA", "state": "Ontario" }, "YYB": { "city": "North Bay", "country": "CA", "state": "Ontario" }, "YYC": { "city": "Calgary", "country": "CA", "state": "Alberta" }, "YYD": { "city": "Smithers", "country": "CA", "state": "British-Columbia" }, "YYE": { "city": "Fort Nelson", "country": "CA", "state": "British-Columbia" }, "YYF": { "city": "Penticton", "country": "CA", "state": "British-Columbia" }, "YYG": { "city": "Charlottetown", "country": "CA", "state": "Newfoundland-and-Labrador" }, "YYH": { "city": "Taloyoak", "country": "CA", "state": "Nunavut" }, "YYJ": { "city": "Victoria", "country": "CA", "state": "British-Columbia" }, "YYL": { "city": "Lynn Lake", "country": "CA", "state": "Manitoba" }, "YYN": { "city": "Swift Current", "country": "CA", "state": "Saskatchewan" }, "YYQ": { "city": "Churchill", "country": "CA", "state": "Manitoba" }, "YYR": { "city": "Goose Bay", "country": "CA", "state": "Newfoundland-and-Labrador" }, "YYT": { "city": "St. John's", "country": "CA", "state": "Newfoundland-and-Labrador" }, "YYU": { "city": "Kapuskasing", "country": "CA", "state": "Ontario" }, "YYW": { "city": "Armstrong", "country": "CA", "state": "Ontario" }, "YYY": { "city": "Mont-Joli", "country": "CA", "state": "Quebec" }, "YYZ": { "city": "Toronto", "country": "CA", "state": "Ontario" }, "YZD": { "city": "Toronto", "country": "CA", "state": "Ontario" }, "YZE": { "city": "Gore Bay", "country": "CA", "state": "Ontario" }, "YZF": { "city": "Yellowknife", "country": "CA", "state": "Northwest-Territories" }, "YZG": { "city": "Salluit", "country": "CA", "state": "Quebec" }, "YZH": { "city": "Slave Lake", "country": "CA", "state": "Alberta" }, "YZP": { "city": "Sandspit", "country": "CA", "state": "British-Columbia" }, "YZR": { "city": "Sarnia", "country": "CA", "state": "Ontario" }, "YZS": { "city": "Coral Harbour", "country": "CA", "state": "Nunavut" }, "YZT": { "city": "Port Hardy", "country": "CA", "state": "British-Columbia" }, "YZU": { "city": "Whitecourt", "country": "CA", "state": "Alberta" }, "YZV": { "city": "Sept-Iles", "country": "CA", "state": "Quebec" }, "YZW": { "city": "Teslin", "country": "CA", "state": "Yukon" }, "YZX": { "city": "Greenwood", "country": "CA", "state": "Nova-Scotia" }, "YZY": { "city": "Mackenzie", "country": "CA", "state": "British-Columbia" }, "ZAC": { "city": "York Landing", "country": "CA", "state": "Manitoba" }, "YSN": { "city": "Salmon Arm", "country": "CA", "state": "British-Columbia" }, "YDT": { "city": "Burlington", "country": "CA", "state": "Ontario" }, "ZBD": { "city": "Boundary Bay", "country": "CA", "state": "British-Columbia" }, "ILF": { "city": "Ilford", "country": "CA", "state": "Manitoba" }, "ZBF": { "city": "Bathurst", "country": "CA", "state": "New-Brunswick" }, "ZBM": { "city": "Bromont", "country": "CA", "state": "Quebec" }, "ZEE": { "city": "Kelsey", "country": "CA", "state": "Manitoba" }, "ZEM": { "city": "Eastmain River", "country": "CA", "state": "Quebec" }, "ZFA": { "city": "Faro", "country": "CA", "state": "Yukon" }, "ZFD": { "city": "Fond-Du-Lac", "country": "CA", "state": "Saskatchewan" }, "ZFG": { "city": "Pukatawagan", "country": "CA", "state": "Manitoba" }, "ZFM": { "city": "Fort Mcpherson", "country": "CA", "state": "Northwest-Territories" }, "ZFN": { "city": "Tulita", "country": "CA", "state": "Northwest-Territories" }, "ZGF": { "city": "Grand Forks", "country": "CA", "state": "British-Columbia" }, "ZGI": { "city": "Gods River", "country": "CA", "state": "Manitoba" }, "ZGR": { "city": "Little Grand Rapids", "country": "CA", "state": "Manitoba" }, "ZJG": { "city": "Jenpeg", "country": "CA", "state": "Manitoba" }, "ZJN": { "city": "Swan River", "country": "CA", "state": "Manitoba" }, "ZKE": { "city": "Kashechewan", "country": "CA", "state": "Ontario" }, "YTD": { "city": "Thicket Portage", "country": "CA", "state": "Manitoba" }, "MSA": { "city": "Muskrat Dam", "country": "CA", "state": "Ontario" }, "ZMH": { "city": "108 Mile", "country": "CA", "state": "British-Columbia" }, "PIW": { "city": "Pikwitonei", "country": "CA", "state": "Manitoba" }, "ZMT": { "city": "Masset", "country": "CA", "state": "British-Columbia" }, "ZNG": { "city": "Poplar River", "country": "CA", "state": "Manitoba" }, "ZPB": { "city": "Sachigo Lake", "country": "CA", "state": "Ontario" }, "ZPO": { "city": "Pinehouse Lake", "country": "CA", "state": "Saskatchewan" }, "ZRJ": { "city": "Round Lake", "country": "CA", "state": "Ontario" }, "ZSJ": { "city": "Sandy Lake", "country": "CA", "state": "Ontario" }, "ZSN": { "city": "South Indian Lake", "country": "CA", "state": "Manitoba" }, "ZST": { "city": "Stewart", "country": "CA", "state": "British-Columbia" }, "ZTM": { "city": "Shamattawa", "country": "CA", "state": "Manitoba" }, "ZUC": { "city": "Ignace", "country": "CA", "state": "Ontario" }, "ZUM": { "city": "Churchill Falls", "country": "CA", "state": "Newfoundland-and-Labrador" }, "ZWH": { "city": "Lac Brochet", "country": "CA", "state": "Manitoba" }, "ZWL": { "city": "Wollaston Lake", "country": "CA", "state": "Saskatchewan" }, "QLD": { "city": "", "country": "DZ", "state": "Blida" }, "BUJ": { "city": "", "country": "DZ", "state": "M'Sila" }, "BJA": { "city": "Bejaia", "country": "DZ", "state": "Bejaia" }, "ALG": { "city": "Algiers", "country": "DZ", "state": "Algiers" }, "DJG": { "city": "Djanet", "country": "DZ", "state": "Illizi" }, "QFD": { "city": "", "country": "DZ", "state": "Blida" }, "VVZ": { "city": "Illizi", "country": "DZ", "state": "Illizi" }, "QSF": { "city": "Setif", "country": "DZ", "state": "Setif" }, "TMR": { "city": "Tamanrasset", "country": "DZ", "state": "Tamanrasset" }, "GJL": { "city": "Jijel", "country": "DZ", "state": "Jijel" }, "MZW": { "city": "Mecheria", "country": "DZ", "state": "Naama" }, "QZN": { "city": "", "country": "DZ", "state": "Relizane" }, "AAE": { "city": "Annabah", "country": "DZ", "state": "Annaba" }, "CZL": { "city": "Constantine", "country": "DZ", "state": "Constantine" }, "TEE": { "city": "Tebessi", "country": "DZ", "state": "Tebessa" }, "BLJ": { "city": "Batna", "country": "DZ", "state": "Batna" }, "HRM": { "city": "", "country": "DZ", "state": "Laghouat" }, "QDJ": { "city": "", "country": "DZ", "state": "Djelfa" }, "TID": { "city": "Tiaret", "country": "DZ", "state": "Tiaret" }, "TIN": { "city": "Tindouf", "country": "DZ", "state": "Tindouf" }, "QAS": { "city": "", "country": "DZ", "state": "Chlef" }, "TAF": { "city": "", "country": "DZ", "state": "Oran" }, "TLM": { "city": "Tlemcen", "country": "DZ", "state": "Tlemcen" }, "ORN": { "city": "Oran", "country": "DZ", "state": "Oran" }, "CBH": { "city": "Bechar", "country": "DZ", "state": "Bechar" }, "BFW": { "city": "", "country": "DZ", "state": "Sidi-Bel-Abbes" }, "MUW": { "city": "", "country": "DZ", "state": "Mascara" }, "EBH": { "city": "El Bayadh", "country": "DZ", "state": "El-Bayadh" }, "INF": { "city": "In Guezzam", "country": "DZ", "state": "Tamanrasset" }, "BMW": { "city": "Bordj Badji Mokhtar", "country": "DZ", "state": "Adrar" }, "AZR": { "city": "", "country": "DZ", "state": "Adrar" }, "BSK": { "city": "Biskra", "country": "DZ", "state": "Biskra" }, "ELG": { "city": "", "country": "DZ", "state": "Ghardaia" }, "GHA": { "city": "Ghardaia", "country": "DZ", "state": "Ghardaia" }, "HME": { "city": "Hassi Messaoud", "country": "DZ", "state": "Ouargla" }, "INZ": { "city": "In Salah", "country": "DZ", "state": "Tamanrasset" }, "TGR": { "city": "Touggourt", "country": "DZ", "state": "Ouargla" }, "LOO": { "city": "Laghouat", "country": "DZ", "state": "Laghouat" }, "ELU": { "city": "Guemar", "country": "DZ", "state": "El-Oued" }, "TMX": { "city": "Timimoun", "country": "DZ", "state": "Adrar" }, "OGX": { "city": "Ouargla", "country": "DZ", "state": "Ouargla" }, "IAM": { "city": "Amenas", "country": "DZ", "state": "Illizi" }, "COO": { "city": "Cotonou", "country": "BJ", "state": "Atlantique" }, "DJA": { "city": "Djougou", "country": "BJ", "state": "Atakora" }, "KDC": { "city": "Kandi", "country": "BJ", "state": "Alibori" }, "NAE": { "city": "Natitingou", "country": "BJ", "state": "" }, "PKO": { "city": "Parakou", "country": "BJ", "state": "Borgou" }, "SVF": { "city": "Save", "country": "BJ", "state": "Zou" }, "XKY": { "city": "Kaya", "country": "BF", "state": "" }, "OUG": { "city": "Ouahigouya", "country": "BF", "state": "" }, "XDJ": { "city": "Djibo", "country": "BF", "state": "Sahel" }, "XLU": { "city": "Leo", "country": "BF", "state": "" }, "PUP": { "city": "Po", "country": "BF", "state": "Centre-Sud" }, "XBO": { "city": "Boulsa", "country": "BF", "state": "" }, "XBG": { "city": "Bogande", "country": "BF", "state": "" }, "DIP": { "city": "Diapaga", "country": "BF", "state": "" }, "DOR": { "city": "Dori", "country": "BF", "state": "Sahel" }, "FNG": { "city": "Fada N'gourma", "country": "BF", "state": "Est" }, "XGG": { "city": "Gorom-Gorom", "country": "BF", "state": "Sahel" }, "XKA": { "city": "Kantchari", "country": "BF", "state": "" }, "TMQ": { "city": "Tambao", "country": "BF", "state": "Sahel" }, "XPA": { "city": "Pama", "country": "BF", "state": "" }, "ARL": { "city": "Arly", "country": "BF", "state": "" }, "XSE": { "city": "Sebba", "country": "BF", "state": "Sahel" }, "TEG": { "city": "Tenkodogo", "country": "BF", "state": "" }, "XZA": { "city": "Zabre", "country": "BF", "state": "" }, "OUA": { "city": "Ouagadougou", "country": "BF", "state": "" }, "BNR": { "city": "Banfora", "country": "BF", "state": "Cascades" }, "DGU": { "city": "Dedougou", "country": "BF", "state": "" }, "XGA": { "city": "Gaoua", "country": "BF", "state": "Sud-Ouest" }, "XNU": { "city": "Nouna", "country": "BF", "state": "" }, "BOY": { "city": "Bobo Dioulasso", "country": "BF", "state": "Hauts-Bassins" }, "TUQ": { "city": "Tougan", "country": "BF", "state": "Boucle-du-Mouhoun" }, "XDE": { "city": "Diebougou", "country": "BF", "state": "" }, "XAR": { "city": "Aribinda", "country": "BF", "state": "Sahel" }, "ACC": { "city": "Accra", "country": "GH", "state": "" }, "TML": { "city": "Tamale", "country": "GH", "state": "" }, "KMS": { "city": "Kumasi", "country": "GH", "state": "" }, "NYI": { "city": "Sunyani", "country": "GH", "state": "Brong-Ahafo" }, "TKD": { "city": "Sekondi-Takoradi", "country": "GH", "state": "Western" }, "ABJ": { "city": "Abidjan", "country": "CI", "state": "Lagunes" }, "OGO": { "city": "Abengourou", "country": "CI", "state": "" }, "BXI": { "city": "Boundiali", "country": "CI", "state": "" }, "BYK": { "city": "", "country": "CI", "state": "Vallee-du-Bandama" }, "BQO": { "city": "Bouna", "country": "CI", "state": "" }, "BDK": { "city": "Bondoukou", "country": "CI", "state": "" }, "DIM": { "city": "Dimbokro", "country": "CI", "state": "Lacs" }, "DJO": { "city": "", "country": "CI", "state": "Sassandra-Marahoue" }, "FEK": { "city": "Ferkessedougou", "country": "CI", "state": "" }, "GGN": { "city": "Gagnoa", "country": "CI", "state": "Goh-Djiboua" }, "GGO": { "city": "Guiglo", "country": "CI", "state": "" }, "BBV": { "city": "Grand-Bereby", "country": "CI", "state": "Bas-Sassandra" }, "HGO": { "city": "", "country": "CI", "state": "Savanes" }, "MJC": { "city": "", "country": "CI", "state": "Montagnes" }, "KEO": { "city": "Odienne", "country": "CI", "state": "Denguele" }, "OFI": { "city": "Ouango Fitini", "country": "CI", "state": "" }, "SEO": { "city": "Seguela", "country": "CI", "state": "Woroba" }, "SPY": { "city": "", "country": "CI", "state": "Bas-Sassandra" }, "ZSS": { "city": "Sassandra", "country": "CI", "state": "" }, "TXU": { "city": "Tabou", "country": "CI", "state": "" }, "ASK": { "city": "Yamoussoukro", "country": "CI", "state": "Yamoussoukro-Autonomous-District" }, "ABV": { "city": "Abuja", "country": "NG", "state": "FCT" }, "AKR": { "city": "Akure", "country": "NG", "state": "Ondo" }, "ABB": { "city": "Asaba", "country": "NG", "state": "Delta" }, "BNI": { "city": "Benin", "country": "NG", "state": "Edo" }, "CBQ": { "city": "Calabar", "country": "NG", "state": "Cross-River" }, "ENU": { "city": "Enegu", "country": "NG", "state": "Enugu" }, "GMO": { "city": "Gombe", "country": "NG", "state": "Bauchi" }, "QUS": { "city": "Gusau", "country": "NG", "state": "Zamfara" }, "IBA": { "city": "Ibadan", "country": "NG", "state": "Oyo" }, "ILR": { "city": "Ilorin", "country": "NG", "state": "Kwara" }, "QOW": { "city": "Owerri", "country": "NG", "state": "Imo" }, "JOS": { "city": "Jos", "country": "NG", "state": "Plateau" }, "KAD": { "city": "Kaduna", "country": "NG", "state": "Kaduna" }, "KAN": { "city": "Kano", "country": "NG", "state": "Kano" }, "MIU": { "city": "Maiduguri", "country": "NG", "state": "Borno" }, "MDI": { "city": "Makurdi", "country": "NG", "state": "Benue" }, "LOS": { "city": "Lagos", "country": "NG", "state": "Lagos" }, "MXJ": { "city": "Minna", "country": "NG", "state": "Niger" }, "PHC": { "city": "Port Harcourt", "country": "NG", "state": "Rivers" }, "SKO": { "city": "Sokoto", "country": "NG", "state": "Sokoto" }, "NBE": { "city": "Enfidha", "country": "TN", "state": "Susah" }, "YOL": { "city": "Yola", "country": "NG", "state": "Adamawa" }, "ZAR": { "city": "Zaria", "country": "NG", "state": "Kaduna" }, "MFQ": { "city": "Maradi", "country": "NE", "state": "Maradi" }, "NIM": { "city": "Niamey", "country": "NE", "state": "Niamey" }, "THZ": { "city": "Tahoua", "country": "NE", "state": "Tahoua" }, "AJY": { "city": "Agadez", "country": "NE", "state": "Agadez" }, "ZND": { "city": "Zinder", "country": "NE", "state": "Zinder" }, "TBJ": { "city": "Tabarka", "country": "TN", "state": "Jundubah" }, "MIR": { "city": "Monastir", "country": "TN", "state": "Al-Munastir" }, "TUN": { "city": "Tunis", "country": "TN", "state": "Tunis" }, "OIZ": { "city": "Sidi Ahmed", "country": "TN", "state": "Banzart" }, "GAF": { "city": "Gafsa", "country": "TN", "state": "Gafsa" }, "GAE": { "city": "Gabes", "country": "TN", "state": "Qabis" }, "DJE": { "city": "Djerba", "country": "TN", "state": "Madanin" }, "EBM": { "city": "El Borma", "country": "TN", "state": "Tataouine" }, "SFA": { "city": "Sfax", "country": "TN", "state": "Safaqis" }, "TOE": { "city": "Tozeur", "country": "TN", "state": "Tawzar" }, "LRL": { "city": "Niamtougou", "country": "TG", "state": "Kara" }, "LFW": { "city": "Lome", "country": "TG", "state": "Maritime" }, "ANR": { "city": "Antwerp", "country": "BE", "state": "Flanders" }, "BRU": { "city": "Brussels", "country": "BE", "state": "Flanders" }, "CRL": { "city": "Brussels", "country": "BE", "state": "Wallonia" }, "KJK": { "city": "Wevelgem", "country": "BE", "state": "Flanders" }, "LGG": { "city": "Liege", "country": "BE", "state": "Wallonia" }, "QNM": { "city": "Namur", "country": "BE", "state": "Wallonia" }, "OST": { "city": "Ostend", "country": "BE", "state": "Flanders" }, "QHA": { "city": "Hasselt", "country": "BE", "state": "Flanders" }, "OBL": { "city": "Zoersel", "country": "BE", "state": "Flanders" }, "AOC": { "city": "Altenburg", "country": "DE", "state": "Thuringia" }, "HDF": { "city": "Heringsdorf", "country": "DE", "state": "Mecklenburg-Vorpommern" }, "REB": { "city": "Larz", "country": "DE", "state": "Mecklenburg-Vorpommern" }, "SXF": { "city": "Berlin", "country": "DE", "state": "Brandenburg" }, "CSO": { "city": "Magdeburg", "country": "DE", "state": "Saxony-Anhalt" }, "BBH": { "city": "", "country": "DE", "state": "Mecklenburg-Vorpommern" }, "ZMG": { "city": "Magdeburg", "country": "DE", "state": "Saxony-Anhalt" }, "CBU": { "city": "Cottbus", "country": "DE", "state": "Brandenburg" }, "GTI": { "city": "Rugen", "country": "DE", "state": "Mecklenburg-Vorpommern" }, "PEF": { "city": "Peenemunde", "country": "DE", "state": "Mecklenburg-Vorpommern" }, "DRS": { "city": "Dresden", "country": "DE", "state": "Saxony" }, "ERF": { "city": "Erfurt", "country": "DE", "state": "Thuringia" }, "FRA": { "city": "Frankfurt-am-Main", "country": "DE", "state": "Hesse" }, "FMO": { "city": "Munster", "country": "DE", "state": "North-Rhine-Westphalia" }, "HAM": { "city": "Hamburg", "country": "DE", "state": "Hamburg" }, "THF": { "city": "Berlin", "country": "DE", "state": "Berlin" }, "CGN": { "city": "Cologne", "country": "DE", "state": "North-Rhine-Westphalia" }, "DUS": { "city": "Dusseldorf", "country": "DE", "state": "North-Rhine-Westphalia" }, "MUC": { "city": "Munich", "country": "DE", "state": "Bavaria" }, "NUE": { "city": "Nuremberg", "country": "DE", "state": "Bavaria" }, "LEJ": { "city": "Leipzig", "country": "DE", "state": "Saxony" }, "SCN": { "city": "Saarbrucken", "country": "DE", "state": "Saarland" }, "STR": { "city": "Stuttgart", "country": "DE", "state": "Baden-Wuerttemberg" }, "TXL": { "city": "Berlin", "country": "DE", "state": "Berlin" }, "HAJ": { "city": "Hannover", "country": "DE", "state": "Lower-Saxony" }, "BRE": { "city": "Bremen", "country": "DE", "state": "Bremen" }, "QEF": { "city": "Egelsbach", "country": "DE", "state": "Hesse" }, "HHN": { "city": "Hahn", "country": "DE", "state": "Rheinland-Pfalz" }, "MHG": { "city": "Mannheim", "country": "DE", "state": "Baden-Wuerttemberg" }, "QMZ": { "city": "Mainz", "country": "DE", "state": "Rheinland-Pfalz" }, "SGE": { "city": "", "country": "DE", "state": "North-Rhine-Westphalia" }, "XFW": { "city": "Hamburg", "country": "DE", "state": "Hamburg" }, "KEL": { "city": "Kiel", "country": "DE", "state": "Schleswig-Holstein" }, "LBC": { "city": "Lubeck", "country": "DE", "state": "Schleswig-Holstein" }, "EUM": { "city": "Neumunster", "country": "DE", "state": "Schleswig-Holstein" }, "FMM": { "city": "Memmingen", "country": "DE", "state": "Bavaria" }, "AAH": { "city": "Aachen", "country": "DE", "state": "North-Rhine-Westphalia" }, "BNJ": { "city": "Bonn", "country": "DE", "state": "North-Rhine-Westphalia" }, "ESS": { "city": "", "country": "DE", "state": "North-Rhine-Westphalia" }, "BFE": { "city": "Bielefeld", "country": "DE", "state": "North-Rhine-Westphalia" }, "ZOJ": { "city": "Marl", "country": "DE", "state": "North-Rhine-Westphalia" }, "MGL": { "city": "Monchengladbach", "country": "DE", "state": "North-Rhine-Westphalia" }, "PAD": { "city": "Paderborn", "country": "DE", "state": "North-Rhine-Westphalia" }, "NRN": { "city": "Weeze", "country": "DE", "state": "North-Rhine-Westphalia" }, "DTM": { "city": "Dortmund", "country": "DE", "state": "North-Rhine-Westphalia" }, "AGB": { "city": "Augsburg", "country": "DE", "state": "Bavaria" }, "OBF": { "city": "", "country": "DE", "state": "Bavaria" }, "RBM": { "city": "Straubing", "country": "DE", "state": "Bavaria" }, "FDH": { "city": "Friedrichshafen", "country": "DE", "state": "Baden-Wuerttemberg" }, "FRF": { "city": "Oschersleben", "country": "DE", "state": "Saxony-Anhalt" }, "SZW": { "city": "", "country": "DE", "state": "Mecklenburg-Vorpommern" }, "BYU": { "city": "Bayreuth", "country": "DE", "state": "Bavaria" }, "QOB": { "city": "Ansbach", "country": "DE", "state": "Bavaria" }, "HOQ": { "city": "Hof", "country": "DE", "state": "Bavaria" }, "BBJ": { "city": "Bitburg", "country": "DE", "state": "Rheinland-Pfalz" }, "ZQW": { "city": "Zweibrucken", "country": "DE", "state": "Rheinland-Pfalz" }, "FKB": { "city": "Baden-Baden", "country": "DE", "state": "Baden-Wuerttemberg" }, "ZQL": { "city": "Donaueschingen", "country": "DE", "state": "Baden-Wuerttemberg" }, "LHA": { "city": "", "country": "DE", "state": "Baden-Wuerttemberg" }, "BWE": { "city": "", "country": "DE", "state": "Lower-Saxony" }, "KSF": { "city": "Kassel", "country": "DE", "state": "Hesse" }, "BRV": { "city": "Bremerhaven", "country": "DE", "state": "Bremen" }, "XLW": { "city": "Lemwerder", "country": "DE", "state": "Bremen" }, "EME": { "city": "Emden", "country": "DE", "state": "Lower-Saxony" }, "AGE": { "city": "Wangerooge", "country": "DE", "state": "Lower-Saxony" }, "WVN": { "city": "Wilhelmshaven", "country": "DE", "state": "Lower-Saxony" }, "JUI": { "city": "Juist", "country": "DE", "state": "Lower-Saxony" }, "LGO": { "city": "Langeoog", "country": "DE", "state": "Lower-Saxony" }, "ZOW": { "city": "Klausheide", "country": "DE", "state": "Lower-Saxony" }, "BMK": { "city": "Borkum", "country": "DE", "state": "Lower-Saxony" }, "NOD": { "city": "Norddeich", "country": "DE", "state": "Lower-Saxony" }, "VAC": { "city": "Cloppenburg", "country": "DE", "state": "Lower-Saxony" }, "NRD": { "city": "Norderney", "country": "DE", "state": "Lower-Saxony" }, "BMR": { "city": "Baltrum", "country": "DE", "state": "Lower-Saxony" }, "HEI": { "city": "Busum", "country": "DE", "state": "Schleswig-Holstein" }, "FLF": { "city": "Flensburg", "country": "DE", "state": "Schleswig-Holstein" }, "HGL": { "city": "Helgoland", "country": "DE", "state": "Schleswig-Holstein" }, "PSH": { "city": "Sankt Peter-Ording", "country": "DE", "state": "Schleswig-Holstein" }, "GWT": { "city": "Westerland", "country": "DE", "state": "Schleswig-Holstein" }, "OHR": { "city": "Wyk auf Fohr", "country": "DE", "state": "Schleswig-Holstein" }, "KDL": { "city": "Kardla", "country": "EE", "state": "Hiiumaa" }, "URE": { "city": "Kuressaare", "country": "EE", "state": "Saare" }, "EPU": { "city": "Parnu", "country": "EE", "state": "Paernumaa" }, "TLL": { "city": "Tallinn", "country": "EE", "state": "Harjumaa" }, "TAY": { "city": "Tartu", "country": "EE", "state": "Tartu" }, "ENF": { "city": "Enontekio", "country": "FI", "state": "Lapland" }, "QVE": { "city": "Forssa", "country": "FI", "state": "Tavastia-Proper" }, "KEV": { "city": "Halli / Kuorevesi", "country": "FI", "state": "Central-Finland" }, "HEM": { "city": "Helsinki", "country": "FI", "state": "Uusimaa" }, "HEL": { "city": "Helsinki", "country": "FI", "state": "Uusimaa" }, "HYV": { "city": "", "country": "FI", "state": "Uusimaa" }, "KTQ": { "city": "", "country": "FI", "state": "North-Karelia" }, "IVL": { "city": "Ivalo", "country": "FI", "state": "Lapland" }, "JOE": { "city": "Joensuu / Liperi", "country": "FI", "state": "North-Karelia" }, "JYV": { "city": "Jyvaskylan Maalaiskunta", "country": "FI", "state": "Central-Finland" }, "KAU": { "city": "Kauhava", "country": "FI", "state": "Southern-Ostrobothnia" }, "KEM": { "city": "Kemi / Tornio", "country": "FI", "state": "Lapland" }, "KAJ": { "city": "Kajaani", "country": "FI", "state": "Kainuu" }, "KHJ": { "city": "", "country": "FI", "state": "Southern-Ostrobothnia" }, "KOK": { "city": "Kokkola / Kruunupyy", "country": "FI", "state": "Ostrobothnia" }, "KAO": { "city": "Kuusamo", "country": "FI", "state": "Northern-Ostrobothnia" }, "KTT": { "city": "Kittila", "country": "FI", "state": "Lapland" }, "KUO": { "city": "Kuopio / Siilinjarvi", "country": "FI", "state": "Northern-Savo" }, "QLF": { "city": "", "country": "FI", "state": "Paeijaenne-Tavastia" }, "LPP": { "city": "Lappeenranta", "country": "FI", "state": "South-Karelia" }, "MHQ": { "city": "", "country": "FI", "state": "Mariehamns-stad" }, "MIK": { "city": "Mikkeli", "country": "FI", "state": "Southern-Savonia" }, "OUL": { "city": "Oulu / Oulunsalo", "country": "FI", "state": "Northern-Ostrobothnia" }, "POR": { "city": "Pori", "country": "FI", "state": "Satakunta" }, "RVN": { "city": "Rovaniemi", "country": "FI", "state": "Lapland" }, "SVL": { "city": "Savonlinna", "country": "FI", "state": "Southern-Savonia" }, "SJY": { "city": "Seinajoki / Ilmajoki", "country": "FI", "state": "Southern-Ostrobothnia" }, "SOT": { "city": "Sodankyla", "country": "FI", "state": "Lapland" }, "TMP": { "city": "Tampere / Pirkkala", "country": "FI", "state": "Pirkanmaa" }, "TKU": { "city": "Turku", "country": "FI", "state": "Finland-Proper" }, "UTI": { "city": "Utti / Valkeala", "country": "FI", "state": "Kymenlaakso" }, "VAA": { "city": "Vaasa", "country": "FI", "state": "Ostrobothnia" }, "VRK": { "city": "Varkaus / Joroinen", "country": "FI", "state": "Southern-Savonia" }, "YLI": { "city": "", "country": "FI", "state": "Northern-Ostrobothnia" }, "BFS": { "city": "Belfast", "country": "GB", "state": "Northern-Ireland" }, "ENK": { "city": "Enniskillen", "country": "GB", "state": "Northern-Ireland" }, "BHD": { "city": "Belfast", "country": "GB", "state": "Northern-Ireland" }, "LDY": { "city": "Derry", "country": "GB", "state": "Northern-Ireland" }, "BHX": { "city": "Birmingham", "country": "GB", "state": "England" }, "CVT": { "city": "Coventry", "country": "GB", "state": "England" }, "GLO": { "city": "Staverton", "country": "GB", "state": "England" }, "ORM": { "city": "Northampton", "country": "GB", "state": "England" }, "NQT": { "city": "Nottingham", "country": "GB", "state": "England" }, "MAN": { "city": "Manchester", "country": "GB", "state": "England" }, "DSA": { "city": "Doncaster", "country": "GB", "state": "England" }, "UPV": { "city": "Upavon", "country": "GB", "state": "England" }, "LYE": { "city": "Lyneham", "country": "GB", "state": "England" }, "DGX": { "city": "St. Athan", "country": "GB", "state": "Wales" }, "YEO": { "city": "Yeovil", "country": "GB", "state": "England" }, "CAL": { "city": "Campbeltown", "country": "GB", "state": "Scotland" }, "EOI": { "city": "Eday", "country": "GB", "state": "Scotland" }, "FIE": { "city": "Fair Isle", "country": "GB", "state": "Scotland" }, "WHS": { "city": "Whalsay", "country": "GB", "state": "Scotland" }, "COL": { "city": "Coll Island", "country": "GB", "state": "Scotland" }, "NRL": { "city": "North Ronaldsay", "country": "GB", "state": "Scotland" }, "OBN": { "city": "North Connel", "country": "GB", "state": "Scotland" }, "PPW": { "city": "Papa Westray", "country": "GB", "state": "Scotland" }, "SOY": { "city": "Stronsay", "country": "GB", "state": "Scotland" }, "NDY": { "city": "Sanday", "country": "GB", "state": "Scotland" }, "LWK": { "city": "Lerwick", "country": "GB", "state": "Scotland" }, "WRY": { "city": "Westray", "country": "GB", "state": "Scotland" }, "CSA": { "city": "Colonsay", "country": "GB", "state": "Scotland" }, "HAW": { "city": "Haverfordwest", "country": "GB", "state": "Wales" }, "CWL": { "city": "Cardiff", "country": "GB", "state": "Wales" }, "SWS": { "city": "Swansea", "country": "GB", "state": "Wales" }, "BRS": { "city": "Bristol", "country": "GB", "state": "England" }, "LPL": { "city": "Liverpool", "country": "GB", "state": "England" }, "LTN": { "city": "London", "country": "GB", "state": "England" }, "LEQ": { "city": "Land's End", "country": "GB", "state": "England" }, "PLH": { "city": "Plymouth", "country": "GB", "state": "England" }, "ISC": { "city": "St. Mary's", "country": "GB", "state": "England" }, "BOH": { "city": "Bournemouth", "country": "GB", "state": "England" }, "SOU": { "city": "Southampton", "country": "GB", "state": "England" }, "BBP": { "city": "Bembridge", "country": "GB", "state": "England" }, "QLA": { "city": "Lasham", "country": "GB", "state": "England" }, "NQY": { "city": "Newquay", "country": "GB", "state": "England" }, "QUG": { "city": "Chichester", "country": "GB", "state": "England" }, "ACI": { "city": "Saint Anne", "country": "GG", "state": "Alderney" }, "GCI": { "city": "Saint Peter Port", "country": "GG", "state": "Forest" }, "JER": { "city": "Saint Helier", "country": "JE", "state": "St-Peter" }, "ESH": { "city": "Brighton", "country": "GB", "state": "England" }, "BQH": { "city": "London", "country": "GB", "state": "England" }, "LGW": { "city": "London", "country": "GB", "state": "England" }, "KRH": { "city": "Redhill", "country": "GB", "state": "England" }, "LCY": { "city": "London", "country": "GB", "state": "England" }, "FAB": { "city": "Farnborough", "country": "GB", "state": "England" }, "BBS": { "city": "Yateley", "country": "GB", "state": "England" }, "LHR": { "city": "London", "country": "GB", "state": "England" }, "SEN": { "city": "Southend", "country": "GB", "state": "England" }, "LYX": { "city": "Lydd", "country": "GB", "state": "England" }, "MSE": { "city": "Manston", "country": "GB", "state": "England" }, "CAX": { "city": "Carlisle", "country": "GB", "state": "England" }, "BLK": { "city": "Blackpool", "country": "GB", "state": "England" }, "HUY": { "city": "Grimsby", "country": "GB", "state": "England" }, "BWF": { "city": "Barrow-in-Furness", "country": "GB", "state": "England" }, "LBA": { "city": "Leeds", "country": "GB", "state": "England" }, "CEG": { "city": "Hawarden", "country": "GB", "state": "Wales" }, "IOM": { "city": "Castletown", "country": "IM", "state": "Castletown" }, "NCL": { "city": "Newcastle", "country": "GB", "state": "England" }, "MME": { "city": "Durham", "country": "GB", "state": "England" }, "EMA": { "city": "Nottingham", "country": "GB", "state": "England" }, "HLY": { "city": "Angelsey", "country": "GB", "state": "Wales" }, "KOI": { "city": "Orkney Islands", "country": "GB", "state": "Scotland" }, "LSI": { "city": "Lerwick", "country": "GB", "state": "Scotland" }, "WIC": { "city": "Wick", "country": "GB", "state": "Scotland" }, "ABZ": { "city": "Aberdeen", "country": "GB", "state": "Scotland" }, "INV": { "city": "Inverness", "country": "GB", "state": "Scotland" }, "GLA": { "city": "Glasgow", "country": "GB", "state": "Scotland" }, "EDI": { "city": "Edinburgh", "country": "GB", "state": "Scotland" }, "ILY": { "city": "Port Ellen", "country": "GB", "state": "Scotland" }, "PIK": { "city": "Glasgow", "country": "GB", "state": "Scotland" }, "BEB": { "city": "Balivanich", "country": "GB", "state": "Scotland" }, "SCS": { "city": "Shetland Islands", "country": "GB", "state": "Scotland" }, "DND": { "city": "Dundee", "country": "GB", "state": "Scotland" }, "SYY": { "city": "Stornoway", "country": "GB", "state": "Scotland" }, "BRR": { "city": "Eoligarry", "country": "GB", "state": "Scotland" }, "PSL": { "city": "Perth", "country": "GB", "state": "Scotland" }, "TRE": { "city": "Balemartine", "country": "GB", "state": "Scotland" }, "UNT": { "city": "Shetland Islands", "country": "GB", "state": "Scotland" }, "BOL": { "city": "Ballykelly", "country": "GB", "state": "Northern-Ireland" }, "FSS": { "city": "Kinloss", "country": "GB", "state": "Scotland" }, "ADX": { "city": "St. Andrews", "country": "GB", "state": "Scotland" }, "LMO": { "city": "Lossiemouth", "country": "GB", "state": "Scotland" }, "CBG": { "city": "Cambridge", "country": "GB", "state": "England" }, "NWI": { "city": "Norwich", "country": "GB", "state": "England" }, "STN": { "city": "London", "country": "GB", "state": "England" }, "QFO": { "city": "Duxford", "country": "GB", "state": "England" }, "HYC": { "city": "High Wycombe", "country": "GB", "state": "England" }, "EXT": { "city": "Exeter", "country": "GB", "state": "England" }, "FZO": { "city": "Bristol", "country": "GB", "state": "England" }, "OXF": { "city": "Kidlington", "country": "GB", "state": "England" }, "RCS": { "city": "Rochester", "country": "GB", "state": "England" }, "BEX": { "city": "Benson", "country": "GB", "state": "England" }, "LKZ": { "city": "Lakenheath", "country": "GB", "state": "England" }, "MHZ": { "city": "Mildenhall", "country": "GB", "state": "England" }, "QUY": { "city": "St. Ives", "country": "GB", "state": "England" }, "FFD": { "city": "Fairford", "country": "GB", "state": "England" }, "BZZ": { "city": "Brize Norton", "country": "GB", "state": "England" }, "ODH": { "city": "Odiham", "country": "GB", "state": "England" }, "WXF": { "city": "Wethersfield", "country": "GB", "state": "England" }, "NHT": { "city": "London", "country": "GB", "state": "England" }, "QCY": { "city": "Coningsby", "country": "GB", "state": "England" }, "BEQ": { "city": "Thetford", "country": "GB", "state": "England" }, "OKH": { "city": "Cottesmore", "country": "GB", "state": "England" }, "SQZ": { "city": "Scampton", "country": "GB", "state": "England" }, "HRT": { "city": "Linton-On-Ouse", "country": "GB", "state": "England" }, "WTN": { "city": "Waddington", "country": "GB", "state": "England" }, "MRH": { "city": "Marham", "country": "GB", "state": "England" }, "MPN": { "city": "Mount Pleasant", "country": "FK", "state": "Tierra-del-Fuego" }, "AMS": { "city": "Amsterdam", "country": "NL", "state": "North-Holland" }, "MST": { "city": "Maastricht", "country": "NL", "state": "Limburg" }, "QAR": { "city": "Arnhem", "country": "NL", "state": "Gelderland" }, "EIN": { "city": "Eindhoven", "country": "NL", "state": "North-Brabant" }, "GRQ": { "city": "Groningen", "country": "NL", "state": "Drenthe" }, "GLZ": { "city": "Breda", "country": "NL", "state": "North-Brabant" }, "DHR": { "city": "Den Helder", "country": "NL", "state": "North-Holland" }, "LEY": { "city": "Lelystad", "country": "NL", "state": "Flevoland" }, "LWR": { "city": "Leeuwarden", "country": "NL", "state": "Friesland" }, "---": { "city": "", "country": "NL", "state": "Groningen" }, "RTM": { "city": "Rotterdam", "country": "NL", "state": "South-Holland" }, "ENS": { "city": "Enschede", "country": "NL", "state": "Overijssel" }, "UDE": { "city": "Uden", "country": "NL", "state": "North-Brabant" }, "WOE": { "city": "Bergen Op Zoom", "country": "NL", "state": "North-Brabant" }, "BYT": { "city": "Bantry", "country": "IE", "state": "Munster" }, "BLY": { "city": "Belmullet", "country": "IE", "state": "Connaught" }, "NNR": { "city": "Inverin", "country": "IE", "state": "Connaught" }, "CLB": { "city": "Castlebar", "country": "IE", "state": "Connaught" }, "WEX": { "city": "Wexford", "country": "IE", "state": "Leinster" }, "ORK": { "city": "Cork", "country": "IE", "state": "Munster" }, "GWY": { "city": "Galway", "country": "IE", "state": "Connaught" }, "CFN": { "city": "Donegal", "country": "IE", "state": "Ulster" }, "DUB": { "city": "Dublin", "country": "IE", "state": "Leinster" }, "IOR": { "city": "Inis Mor", "country": "IE", "state": "Connaught" }, "INQ": { "city": "Inis Oirr", "country": "IE", "state": "Connaught" }, "KKY": { "city": "Kilkenny", "country": "IE", "state": "Leinster" }, "NOC": { "city": "Charleston", "country": "IE", "state": "Connaught" }, "KIR": { "city": "Killarney", "country": "IE", "state": "Munster" }, "LTR": { "city": "Letterkenny", "country": "IE", "state": "Ulster" }, "IIA": { "city": "Inis Meain", "country": "IE", "state": "Connaught" }, "SNN": { "city": "Shannon", "country": "IE", "state": "Munster" }, "SXL": { "city": "Sligo", "country": "IE", "state": "Connaught" }, "WAT": { "city": "Waterford", "country": "IE", "state": "Munster" }, "AAR": { "city": "Aarhus", "country": "DK", "state": "Central-Jutland" }, "BLL": { "city": "Billund", "country": "DK", "state": "South-Denmark" }, "CPH": { "city": "Copenhagen", "country": "DK", "state": "Capital-Region" }, "EBJ": { "city": "Esbjerg", "country": "DK", "state": "South-Denmark" }, "KRP": { "city": "Karup", "country": "DK", "state": "Central-Jutland" }, "BYR": { "city": "Laeso", "country": "DK", "state": "North-Denmark" }, "MRW": { "city": "Lolland Falster / Maribo", "country": "DK", "state": "Zealand" }, "ODE": { "city": "Odense", "country": "DK", "state": "South-Denmark" }, "RKE": { "city": "Copenhagen", "country": "DK", "state": "Zealand" }, "RNN": { "city": "Ronne", "country": "DK", "state": "Capital-Region" }, "SGD": { "city": "Sonderborg", "country": "DK", "state": "South-Denmark" }, "CNL": { "city": "Sindal", "country": "DK", "state": "North-Denmark" }, "SKS": { "city": "Vojens", "country": "DK", "state": "South-Denmark" }, "SQW": { "city": "Skive", "country": "DK", "state": "Central-Jutland" }, "TED": { "city": "Thisted", "country": "DK", "state": "North-Denmark" }, "FAE": { "city": "Vagar", "country": "FO", "state": "Vagar" }, "STA": { "city": "Skjern / Ringkobing", "country": "DK", "state": "Central-Jutland" }, "AAL": { "city": "Aalborg", "country": "DK", "state": "North-Denmark" }, "LUX": { "city": "Luxembourg", "country": "LU", "state": "Luxembourg" }, "AES": { "city": "Alesund", "country": "NO", "state": "More-og-Romsdal" }, "ANX": { "city": "Andenes", "country": "NO", "state": "Nordland" }, "ALF": { "city": "Alta", "country": "NO", "state": "Finnmark" }, "FDE": { "city": "Forde", "country": "NO", "state": "Sogn-og-Fjordane" }, "BNN": { "city": "Bronnoy", "country": "NO", "state": "Nordland" }, "BOO": { "city": "Bodo", "country": "NO", "state": "Nordland" }, "BGO": { "city": "Bergen", "country": "NO", "state": "Hordaland" }, "BJF": { "city": "Batsfjord", "country": "NO", "state": "Finnmark" }, "BVG": { "city": "Berlevag", "country": "NO", "state": "Finnmark" }, "KRS": { "city": "Kjevik", "country": "NO", "state": "Vest-Agder" }, "DLD": { "city": "Dagali", "country": "NO", "state": "Buskerud" }, "BDU": { "city": "Malselv", "country": "NO", "state": "Troms" }, "EVE": { "city": "Evenes", "country": "NO", "state": "Nordland" }, "VDB": { "city": "", "country": "NO", "state": "Oppland" }, "FRO": { "city": "Floro", "country": "NO", "state": "Sogn-og-Fjordane" }, "OSL": { "city": "Oslo", "country": "NO", "state": "Akershus" }, "HMR": { "city": "Hamar", "country": "NO", "state": "Hedmark" }, "HAU": { "city": "Karmoy", "country": "NO", "state": "Rogaland" }, "HFT": { "city": "Hammerfest", "country": "NO", "state": "Finnmark" }, "HAA": { "city": "Hasvik", "country": "NO", "state": "Finnmark" }, "HVG": { "city": "Honningsvag", "country": "NO", "state": "Finnmark" }, "QKX": { "city": "", "country": "NO", "state": "Finnmark" }, "KSU": { "city": "Kvernberget", "country": "NO", "state": "More-og-Romsdal" }, "GLL": { "city": "Klanten", "country": "NO", "state": "Buskerud" }, "KKN": { "city": "Kirkenes", "country": "NO", "state": "Finnmark" }, "FAN": { "city": "Farsund", "country": "NO", "state": "Vest-Agder" }, "LKN": { "city": "Leknes", "country": "NO", "state": "Nordland" }, "MEH": { "city": "Mehamn", "country": "NO", "state": "Finnmark" }, "MOL": { "city": "Aro", "country": "NO", "state": "More-og-Romsdal" }, "MJF": { "city": "", "country": "NO", "state": "Nordland" }, "LKL": { "city": "Lakselv", "country": "NO", "state": "Finnmark" }, "NVK": { "city": "Narvik", "country": "NO", "state": "Nordland" }, "OSY": { "city": "Namsos", "country": "NO", "state": "Nord-Trondelag" }, "NTB": { "city": "", "country": "NO", "state": "Telemark" }, "OLA": { "city": "Orland", "country": "NO", "state": "Sor-Trondelag" }, "HOV": { "city": "Orsta", "country": "NO", "state": "More-og-Romsdal" }, "MQN": { "city": "Mo i Rana", "country": "NO", "state": "Nordland" }, "RVK": { "city": "Rorvik", "country": "NO", "state": "Nord-Trondelag" }, "RRS": { "city": "Roros", "country": "NO", "state": "Sor-Trondelag" }, "RET": { "city": "", "country": "NO", "state": "Nordland" }, "RYG": { "city": "Rygge", "country": "NO", "state": "Ostfold" }, "LYR": { "city": "Longyearbyen", "country": "NO", "state": "Svalbard" }, "SDN": { "city": "Sandane", "country": "NO", "state": "Sogn-og-Fjordane" }, "SOG": { "city": "Sogndal", "country": "NO", "state": "Sogn-og-Fjordane" }, "SVJ": { "city": "Svolvaer", "country": "NO", "state": "Nordland" }, "SKN": { "city": "Hadsel", "country": "NO", "state": "Nordland" }, "SKE": { "city": "Geiteryggen", "country": "NO", "state": "Telemark" }, "SRP": { "city": "Leirvik", "country": "NO", "state": "Hordaland" }, "SOJ": { "city": "Sorkjosen", "country": "NO", "state": "Troms" }, "VAW": { "city": "Vardo", "country": "NO", "state": "Finnmark" }, "SSJ": { "city": "Alstahaug", "country": "NO", "state": "Nordland" }, "TOS": { "city": "Tromso", "country": "NO", "state": "Troms" }, "TRF": { "city": "Torp", "country": "NO", "state": "Vestfold" }, "TRD": { "city": "Trondheim", "country": "NO", "state": "Nord-Trondelag" }, "VDS": { "city": "Vadso", "country": "NO", "state": "Finnmark" }, "SVG": { "city": "Stavanger", "country": "NO", "state": "Rogaland" }, "QYY": { "city": "Bialystok", "country": "PL", "state": "Podlasie" }, "BXP": { "city": "Biala Podlaska", "country": "PL", "state": "Lublin" }, "BZG": { "city": "Bydgoszcz", "country": "PL", "state": "Kujawsko-Pomorskie" }, "CZW": { "city": "Czestochowa", "country": "PL", "state": "Silesia" }, "GDN": { "city": "Gdansk", "country": "PL", "state": "Pomerania" }, "QLC": { "city": "", "country": "PL", "state": "Silesia" }, "KRK": { "city": "Krakow", "country": "PL", "state": "Lesser-Poland-Voivodeship" }, "OSZ": { "city": "", "country": "PL", "state": "West-Pomerania" }, "KTW": { "city": "Katowice", "country": "PL", "state": "Silesia" }, "QEO": { "city": "Czechowice-Dziedzice", "country": "PL", "state": "Silesia" }, "LUZ": { "city": "Lublin", "country": "PL", "state": "Lublin" }, "LCJ": { "city": "Lodz", "country": "PL", "state": "Kodz-Voivodeship" }, "QLU": { "city": "", "country": "PL", "state": "Lublin" }, "QWS": { "city": "Nowy Targ", "country": "PL", "state": "Lesser-Poland-Voivodeship" }, "QYD": { "city": "Gdynia", "country": "PL", "state": "Pomerania" }, "QPM": { "city": "Opole", "country": "PL", "state": "Opole-Voivodeship" }, "POZ": { "city": "Poznan", "country": "PL", "state": "Greater-Poland" }, "RZE": { "city": "Rzeszow", "country": "PL", "state": "Subcarpathian-Voivodeship" }, "SZZ": { "city": "Goleniow", "country": "PL", "state": "West-Pomerania" }, "WAW": { "city": "Warsaw", "country": "PL", "state": "Mazovia" }, "WRO": { "city": "Wroclaw", "country": "PL", "state": "Lower-Silesia" }, "IEG": { "city": "Babimost", "country": "PL", "state": "Lubusz" }, "RNB": { "city": "", "country": "SE", "state": "Blekinge" }, "XWP": { "city": "Hassleholm", "country": "SE", "state": "Skane" }, "GOT": { "city": "Gothenburg", "country": "SE", "state": "Vaestra-Gotaland" }, "JKG": { "city": "Jonkoping", "country": "SE", "state": "Jonkoping" }, "LDK": { "city": "Lidkoping", "country": "SE", "state": "Vaestra-Gotaland" }, "GSE": { "city": "Gothenburg", "country": "SE", "state": "Vaestra-Gotaland" }, "KVB": { "city": "Skovde", "country": "SE", "state": "Vaestra-Gotaland" }, "THN": { "city": "Trollhattan", "country": "SE", "state": "Vaestra-Gotaland" }, "KSK": { "city": "", "country": "SE", "state": "Oerebro" }, "MXX": { "city": "", "country": "SE", "state": "Dalarna" }, "NYO": { "city": "Stockholm / Nykoping", "country": "SE", "state": "Sodermanland" }, "KID": { "city": "Kristianstad", "country": "SE", "state": "Skane" }, "OSK": { "city": "", "country": "SE", "state": "Kalmar" }, "KLR": { "city": "", "country": "SE", "state": "Kalmar" }, "MMX": { "city": "Malmo", "country": "SE", "state": "Skane" }, "HAD": { "city": "Halmstad", "country": "SE", "state": "Halland" }, "VXO": { "city": "Vaxjo", "country": "SE", "state": "Kronoberg" }, "EVG": { "city": "", "country": "SE", "state": "Jaemtland" }, "GEV": { "city": "Gallivare", "country": "SE", "state": "Norrbotten" }, "KRF": { "city": "Kramfors / Solleftea", "country": "SE", "state": "Vaesternorrland" }, "LYC": { "city": "", "country": "SE", "state": "Vaesterbotten" }, "SDL": { "city": "Sundsvall/ Harnosand", "country": "SE", "state": "Vaesternorrland" }, "OER": { "city": "Ornskoldsvik", "country": "SE", "state": "Vaesternorrland" }, "KRN": { "city": "", "country": "SE", "state": "Norrbotten" }, "SFT": { "city": "Skelleftea", "country": "SE", "state": "Vaesterbotten" }, "UME": { "city": "Umea", "country": "SE", "state": "Vaesterbotten" }, "VHM": { "city": "", "country": "SE", "state": "Vaesterbotten" }, "AJR": { "city": "Arvidsjaur", "country": "SE", "state": "Norrbotten" }, "SOO": { "city": "Soderhamn", "country": "SE", "state": "Gaevleborg" }, "OSD": { "city": "Ostersund", "country": "SE", "state": "Jaemtland" }, "ORB": { "city": "Orebro", "country": "SE", "state": "Oerebro" }, "HFS": { "city": "", "country": "SE", "state": "Vaermland" }, "KSD": { "city": "Karlstad", "country": "SE", "state": "Vaermland" }, "VST": { "city": "Stockholm / Vasteras", "country": "SE", "state": "Vaestmanland" }, "LLA": { "city": "Lulea", "country": "SE", "state": "Norrbotten" }, "ARN": { "city": "Stockholm", "country": "SE", "state": "Stockholm" }, "BMA": { "city": "Stockholm", "country": "SE", "state": "Stockholm" }, "BLE": { "city": "", "country": "SE", "state": "Dalarna" }, "HLF": { "city": "", "country": "SE", "state": "Kalmar" }, "GVX": { "city": "Gavle / Sandviken", "country": "SE", "state": "Gaevleborg" }, "LPI": { "city": "Linkoping", "country": "SE", "state": "Oestergotland" }, "NRK": { "city": "Norrkoping", "country": "SE", "state": "Oestergotland" }, "TYF": { "city": "", "country": "SE", "state": "Vaermland" }, "EKT": { "city": "Eskilstuna", "country": "SE", "state": "Sodermanland" }, "VBY": { "city": "Visby", "country": "SE", "state": "Gotland" }, "VVK": { "city": "Vastervik", "country": "SE", "state": "Kalmar" }, "AGH": { "city": "Angelholm", "country": "SE", "state": "Skane" }, "SQO": { "city": "", "country": "SE", "state": "Vaesterbotten" }, "IDB": { "city": "Idre", "country": "SE", "state": "Dalarna" }, "PJA": { "city": "", "country": "SE", "state": "Norrbotten" }, "HMV": { "city": "", "country": "SE", "state": "Vaesterbotten" }, "SPM": { "city": "Trier", "country": "DE", "state": "Rheinland-Pfalz" }, "RMS": { "city": "Ramstein", "country": "DE", "state": "Rheinland-Pfalz" }, "ZCD": { "city": "Bamberg", "country": "DE", "state": "Bavaria" }, "ZCN": { "city": "", "country": "DE", "state": "Lower-Saxony" }, "ZPQ": { "city": "", "country": "DE", "state": "North-Rhine-Westphalia" }, "FRZ": { "city": "Fritzlar", "country": "DE", "state": "Hesse" }, "ZNF": { "city": "", "country": "DE", "state": "Hesse" }, "NDZ": { "city": "", "country": "DE", "state": "Lower-Saxony" }, "GKE": { "city": "", "country": "DE", "state": "North-Rhine-Westphalia" }, "RLG": { "city": "Rostock", "country": "DE", "state": "Mecklenburg-Vorpommern" }, "QOE": { "city": "", "country": "DE", "state": "North-Rhine-Westphalia" }, "WBG": { "city": "", "country": "DE", "state": "Schleswig-Holstein" }, "FNB": { "city": "", "country": "DE", "state": "Mecklenburg-Vorpommern" }, "WIE": { "city": "Wiesbaden", "country": "DE", "state": "Hesse" }, "FEL": { "city": "Furstenfeldbruck", "country": "DE", "state": "Bavaria" }, "IGS": { "city": "Manching", "country": "DE", "state": "Bavaria" }, "GUT": { "city": "Gutersloh", "country": "DE", "state": "North-Rhine-Westphalia" }, "BGN": { "city": "", "country": "DE", "state": "North-Rhine-Westphalia" }, "DGP": { "city": "Daugavpils", "country": "LV", "state": "Daugavpils-municipality" }, "LPX": { "city": "Liepaja", "country": "LV", "state": "Grobina" }, "RIX": { "city": "Riga", "country": "LV", "state": "Marupe" }, "VNT": { "city": "Ventspils", "country": "LV", "state": "Ventspils" }, "KUN": { "city": "Kaunas", "country": "LT", "state": "" }, "KLJ": { "city": "Klaipeda", "country": "LT", "state": "" }, "PLQ": { "city": "Palanga", "country": "LT", "state": "" }, "PNV": { "city": "Panevezys", "country": "LT", "state": "Panevezys" }, "SQQ": { "city": "Siauliai", "country": "LT", "state": "" }, "HLJ": { "city": "Barysiai", "country": "LT", "state": "Siauliai" }, "VNO": { "city": "Vilnius", "country": "LT", "state": "Vilnius" }, "ALJ": { "city": "Alexander Bay", "country": "ZA", "state": "Northern-Cape" }, "AGZ": { "city": "Aggeneys", "country": "ZA", "state": "Northern-Cape" }, "ADY": { "city": "Alldays", "country": "ZA", "state": "Limpopo" }, "BIY": { "city": "Bisho", "country": "ZA", "state": "Eastern-Cape" }, "BFN": { "city": "Bloemfontain", "country": "ZA", "state": "Orange-Free-State" }, "UTE": { "city": "Bultfontein", "country": "ZA", "state": "Orange-Free-State" }, "CDO": { "city": "Cradock", "country": "ZA", "state": "Eastern-Cape" }, "CPT": { "city": "Cape Town", "country": "ZA", "state": "Western-Cape" }, "DUK": { "city": "Mubatuba", "country": "ZA", "state": "KwaZulu-Natal" }, "PZL": { "city": "Phinda", "country": "ZA", "state": "KwaZulu-Natal" }, "ELS": { "city": "East London", "country": "ZA", "state": "Eastern-Cape" }, "EMG": { "city": "Empangeni", "country": "ZA", "state": "KwaZulu-Natal" }, "ELL": { "city": "Ellisras", "country": "ZA", "state": "Limpopo" }, "FCB": { "city": "Ficksburg", "country": "ZA", "state": "Orange-Free-State" }, "GCJ": { "city": "Midrand", "country": "ZA", "state": "Gauteng" }, "GRJ": { "city": "George", "country": "ZA", "state": "Western-Cape" }, "GIY": { "city": "Giyani", "country": "ZA", "state": "Limpopo" }, "QRA": { "city": "Johannesburg", "country": "ZA", "state": "Gauteng" }, "HLW": { "city": "Hluhluwe", "country": "ZA", "state": "KwaZulu-Natal" }, "HRS": { "city": "Harrismith", "country": "ZA", "state": "Orange-Free-State" }, "HDS": { "city": "Hoedspruit", "country": "ZA", "state": "Limpopo" }, "KXE": { "city": "Klerksdorp", "country": "ZA", "state": "North-West" }, "KIM": { "city": "Kimberley", "country": "ZA", "state": "Northern-Cape" }, "MQP": { "city": "Mpumalanga", "country": "ZA", "state": "Mpumalanga" }, "KOF": { "city": "Komatipoort", "country": "ZA", "state": "Mpumalanga" }, "KMH": { "city": "Kuruman", "country": "ZA", "state": "Northern-Cape" }, "KLZ": { "city": "Kleinsee", "country": "ZA", "state": "Northern-Cape" }, "HLA": { "city": "Johannesburg", "country": "ZA", "state": "Gauteng" }, "LMR": { "city": "Lime Acres", "country": "ZA", "state": "Northern-Cape" }, "LDZ": { "city": "Londolozi", "country": "ZA", "state": "Mpumalanga" }, "DUR": { "city": "Durban", "country": "ZA", "state": "KwaZulu-Natal" }, "LUJ": { "city": "Lusikisiki", "country": "ZA", "state": "Eastern-Cape" }, "LCD": { "city": "Louis Trichardt", "country": "ZA", "state": "Limpopo" }, "SDB": { "city": "Langebaanweg", "country": "ZA", "state": "Western-Cape" }, "LAY": { "city": "Ladysmith", "country": "ZA", "state": "KwaZulu-Natal" }, "AAM": { "city": "Malamala", "country": "ZA", "state": "Mpumalanga" }, "MGH": { "city": "Margate", "country": "ZA", "state": "KwaZulu-Natal" }, "MEZ": { "city": "Musina", "country": "ZA", "state": "Limpopo" }, "MBD": { "city": "Mafeking", "country": "ZA", "state": "North-West" }, "LLE": { "city": "Malelane", "country": "ZA", "state": "Mpumalanga" }, "MZY": { "city": "Mossel Bay", "country": "ZA", "state": "Western-Cape" }, "MZQ": { "city": "Mkuze", "country": "ZA", "state": "KwaZulu-Natal" }, "NCS": { "city": "Newcastle", "country": "ZA", "state": "KwaZulu-Natal" }, "NGL": { "city": "Ngala", "country": "ZA", "state": "Mpumalanga" }, "NLP": { "city": "Nelspruit", "country": "ZA", "state": "Mpumalanga" }, "OVG": { "city": "Overberg", "country": "ZA", "state": "Western-Cape" }, "OUH": { "city": "Oudtshoorn", "country": "ZA", "state": "Western-Cape" }, "JNB": { "city": "Olifants River Bridge", "country": "ZA", "state": "Limpopo" }, "AFD": { "city": "Port Alfred", "country": "ZA", "state": "Eastern-Cape" }, "PLZ": { "city": "Port Elizabeth", "country": "ZA", "state": "Eastern-Cape" }, "PBZ": { "city": "Plettenberg Bay", "country": "ZA", "state": "Western-Cape" }, "PHW": { "city": "Phalaborwa", "country": "ZA", "state": "Limpopo" }, "JOH": { "city": "Port St Johns", "country": "ZA", "state": "Eastern-Cape" }, "PRK": { "city": "Prieska", "country": "ZA", "state": "Northern-Cape" }, "PZB": { "city": "Pietermaritzburg", "country": "ZA", "state": "KwaZulu-Natal" }, "NTY": { "city": "Pilanesberg", "country": "ZA", "state": "North-West" }, "PTG": { "city": "Potgietersrus", "country": "ZA", "state": "Limpopo" }, "PCF": { "city": "Potchefstroom", "country": "ZA", "state": "North-West" }, "UTW": { "city": "Queenstown", "country": "ZA", "state": "Eastern-Cape" }, "RCB": { "city": "Richards Bay", "country": "ZA", "state": "KwaZulu-Natal" }, "RVO": { "city": "Reivilo", "country": "ZA", "state": "North-West" }, "ROD": { "city": "Robertson", "country": "ZA", "state": "Western-Cape" }, "SBU": { "city": "Springbok", "country": "ZA", "state": "Northern-Cape" }, "ZEC": { "city": "Secunda", "country": "ZA", "state": "Mpumalanga" }, "GSS": { "city": "Belfast", "country": "ZA", "state": "Mpumalanga" }, "SIS": { "city": "Sishen", "country": "ZA", "state": "Northern-Cape" }, "SZK": { "city": "Skukuza", "country": "ZA", "state": "Mpumalanga" }, "TDT": { "city": "Welverdiend", "country": "ZA", "state": "Mpumalanga" }, "THY": { "city": "Thohoyandou", "country": "ZA", "state": "Limpopo" }, "TCU": { "city": "Homeward", "country": "ZA", "state": "Orange-Free-State" }, "LTA": { "city": "Tzaneen", "country": "ZA", "state": "Limpopo" }, "ULD": { "city": "Ulundi", "country": "ZA", "state": "KwaZulu-Natal" }, "UTN": { "city": "Upington", "country": "ZA", "state": "Northern-Cape" }, "ULX": { "city": "Ulusaba", "country": "ZA", "state": "Mpumalanga" }, "UTT": { "city": "Mthatha", "country": "ZA", "state": "Eastern-Cape" }, "VRU": { "city": "Vyrburg", "country": "ZA", "state": "North-West" }, "VIR": { "city": "Durban", "country": "ZA", "state": "KwaZulu-Natal" }, "VRE": { "city": "Vredendal", "country": "ZA", "state": "Western-Cape" }, "VYD": { "city": "Vryheid", "country": "ZA", "state": "KwaZulu-Natal" }, "PRY": { "city": "Pretoria", "country": "ZA", "state": "Gauteng" }, "WKF": { "city": "Pretoria", "country": "ZA", "state": "Gauteng" }, "WEL": { "city": "Welkom", "country": "ZA", "state": "Orange-Free-State" }, "FRW": { "city": "Francistown", "country": "BW", "state": "North-East" }, "GNZ": { "city": "Ghanzi", "country": "BW", "state": "Ghanzi" }, "JWA": { "city": "", "country": "BW", "state": "Ngwaketsi" }, "BBK": { "city": "Kasane", "country": "BW", "state": "North-West" }, "KHW": { "city": "Khwai River Lodge", "country": "BW", "state": "North-West" }, "MUB": { "city": "Maun", "country": "BW", "state": "North-West" }, "ORP": { "city": "", "country": "BW", "state": "Central" }, "QPH": { "city": "Palapye", "country": "BW", "state": "Central" }, "GBE": { "city": "Gaborone", "country": "BW", "state": "South-East" }, "SXN": { "city": "", "country": "BW", "state": "Central" }, "PKW": { "city": "", "country": "BW", "state": "" }, "SWX": { "city": "Shakawe", "country": "BW", "state": "North-West" }, "TLD": { "city": "Tuli Lodge", "country": "BW", "state": "Central" }, "TBY": { "city": "Tshabong", "country": "BW", "state": "Kgalagadi" }, "BZV": { "city": "Brazzaville", "country": "CG", "state": "Brazzaville" }, "DJM": { "city": "Djambala", "country": "CG", "state": "Plateaux" }, "KNJ": { "city": "Kindamba", "country": "CG", "state": "Pool" }, "LCO": { "city": "Lague", "country": "CG", "state": "Plateaux" }, "MUY": { "city": "Mouyondzi", "country": "CG", "state": "Bouenza" }, "SIB": { "city": "Sibiti", "country": "CG", "state": "Lekoumou" }, "NKY": { "city": "Nkayi", "country": "CG", "state": "Bouenza" }, "ANJ": { "city": "Zanaga", "country": "CG", "state": "Lekoumou" }, "MSX": { "city": "Mossendjo", "country": "CG", "state": "Niari" }, "BOE": { "city": "Boundji", "country": "CG", "state": "Cuvette" }, "EWO": { "city": "Ewo", "country": "CG", "state": "Cuvette-Ouest" }, "GMM": { "city": "Gamboma", "country": "CG", "state": "Plateaux" }, "ION": { "city": "Impfondo", "country": "CG", "state": "Likouala" }, "KEE": { "city": "Kelle", "country": "CG", "state": "Cuvette-Ouest" }, "MKJ": { "city": "Makoua", "country": "CG", "state": "Cuvette" }, "FTX": { "city": "Owando", "country": "CG", "state": "Cuvette" }, "SOE": { "city": "Souanke", "country": "CG", "state": "Sangha" }, "BTB": { "city": "Betou", "country": "CG", "state": "Likouala" }, "OUE": { "city": "", "country": "CG", "state": "Sangha" }, "KMK": { "city": "Makabana", "country": "CG", "state": "Niari" }, "DIS": { "city": "Dolisie", "country": "CG", "state": "Niari" }, "PNR": { "city": "Pointe Noire", "country": "CG", "state": "Kouilou" }, "MTS": { "city": "Manzini", "country": "SZ", "state": "Manzini" }, "CRF": { "city": "Carnot", "country": "CF", "state": "Mambere-Kadei" }, "BGF": { "city": "Bangui", "country": "CF", "state": "Ombella-M'Poko" }, "BGU": { "city": "Bangassou", "country": "CF", "state": "" }, "IRO": { "city": "Birao", "country": "CF", "state": "Vakaga" }, "BEM": { "city": "Bossembele", "country": "CF", "state": "Ombella-M'Poko" }, "BBY": { "city": "Bambari", "country": "CF", "state": "Ouaka" }, "NDL": { "city": "N'Dele", "country": "CF", "state": "Bamingui-Bangoran" }, "BOP": { "city": "Bouar", "country": "CF", "state": "Nana-Mambere" }, "BIV": { "city": "Bria", "country": "CF", "state": "Haute-Kotto" }, "BSN": { "city": "Bossangoa", "country": "CF", "state": "Ouham" }, "BBT": { "city": "Berberati", "country": "CF", "state": "Mambere-Kadei" }, "ODA": { "city": "Ouadda", "country": "CF", "state": "Haute-Kotto" }, "AIG": { "city": "Yalinga", "country": "CF", "state": "Haute-Kotto" }, "IMO": { "city": "Zemio", "country": "CF", "state": "Haut-Mbomou" }, "MKI": { "city": "Mboki", "country": "CF", "state": "Haut-Mbomou" }, "BTG": { "city": "Batangafo", "country": "CF", "state": "Ouham" }, "GDI": { "city": "Melle", "country": "CF", "state": "Vakaga" }, "BMF": { "city": "Bakouma", "country": "CF", "state": "Mbomou" }, "ODJ": { "city": "Ouanda Djalle", "country": "CF", "state": "Vakaga" }, "RFA": { "city": "Rafai", "country": "CF", "state": "Mbomou" }, "BCF": { "city": "Bouca", "country": "CF", "state": "Ouham" }, "BOZ": { "city": "Bozoum", "country": "CF", "state": "Ouham-Pende" }, "BSG": { "city": "", "country": "GQ", "state": "Litoral" }, "SSG": { "city": "Malabo", "country": "GQ", "state": "" }, "ASI": { "city": "Ascension Island", "country": "SH", "state": "Ascension" }, "MRU": { "city": "Port Louis", "country": "MU", "state": "Grand-Port" }, "RRG": { "city": "Port Mathurin", "country": "MU", "state": "Rodrigues" }, "NKW": { "city": "Diego Garcia", "country": "IO", "state": "" }, "NKS": { "city": "Nkongsamba", "country": "CM", "state": "Littoral" }, "KBI": { "city": "Kribi", "country": "CM", "state": "South" }, "TKC": { "city": "Tiko", "country": "CM", "state": "South-West" }, "DLA": { "city": "Douala", "country": "CM", "state": "Littoral" }, "MMF": { "city": "Mamfe", "country": "CM", "state": "South-West" }, "BLC": { "city": "Bali", "country": "CM", "state": "North-West" }, "KLE": { "city": "Kaele", "country": "CM", "state": "Far-North" }, "OUR": { "city": "Batouri", "country": "CM", "state": "East" }, "GXX": { "city": "Yagoua", "country": "CM", "state": "Far-North" }, "MVR": { "city": "Maroua", "country": "CM", "state": "Far-North" }, "FOM": { "city": "Foumban", "country": "CM", "state": "West" }, "NGE": { "city": "N'Gaoundere", "country": "CM", "state": "Adamaoua" }, "BTA": { "city": "Bertoua", "country": "CM", "state": "East" }, "GOU": { "city": "Garoua", "country": "CM", "state": "North" }, "DSC": { "city": "Dschang", "country": "CM", "state": "West" }, "BFX": { "city": "Bafoussam", "country": "CM", "state": "West" }, "BPC": { "city": "Bamenda", "country": "CM", "state": "North-West" }, "EBW": { "city": "Ebolowa", "country": "CM", "state": "South" }, "YAO": { "city": "Yaounde", "country": "CM", "state": "Centre" }, "NSI": { "city": "Yaounde", "country": "CM", "state": "Centre" }, "MMQ": { "city": "Mbala", "country": "ZM", "state": "Northern" }, "CIP": { "city": "Chipata", "country": "ZM", "state": "Eastern" }, "JEK": { "city": "Lower Zambezi National Park", "country": "ZM", "state": "Muchinga" }, "ZKP": { "city": "Kasompe", "country": "ZM", "state": "Copperbelt" }, "LUN": { "city": "Lusaka", "country": "ZM", "state": "Lusaka" }, "KLB": { "city": "Kalabo", "country": "ZM", "state": "Western" }, "KMZ": { "city": "Kaoma", "country": "ZM", "state": "Western" }, "KAA": { "city": "Kasama", "country": "ZM", "state": "Northern" }, "ZKB": { "city": "Kasaba Bay", "country": "ZM", "state": "Northern" }, "LVI": { "city": "Livingstone", "country": "ZM", "state": "Southern" }, "LXU": { "city": "Lukulu", "country": "ZM", "state": "Western" }, "MNS": { "city": "Mansa", "country": "ZM", "state": "Luapula" }, "MFU": { "city": "Mfuwe", "country": "ZM", "state": "Eastern" }, "MNR": { "city": "Mongu", "country": "ZM", "state": "Western" }, "ZGM": { "city": "Ngoma", "country": "ZM", "state": "Southern" }, "NLA": { "city": "Ndola", "country": "ZM", "state": "Copperbelt" }, "SXG": { "city": "Senanga", "country": "ZM", "state": "Western" }, "KIW": { "city": "Kitwe", "country": "ZM", "state": "Copperbelt" }, "SJQ": { "city": "Sesheke", "country": "ZM", "state": "Western" }, "SLI": { "city": "Solwesi", "country": "ZM", "state": "North-Western" }, "BBZ": { "city": "Zambezi", "country": "ZM", "state": "North-Western" }, "HAH": { "city": "Moroni", "country": "KM", "state": "Grande-Comore" }, "NWA": { "city": "", "country": "KM", "state": "Moheli" }, "YVA": { "city": "Moroni", "country": "KM", "state": "Grande-Comore" }, "AJN": { "city": "Ouani", "country": "KM", "state": "Anjouan" }, "DZA": { "city": "Dzaoudzi", "country": "YT", "state": "Pamandzi" }, "RUN": { "city": "St Denis", "country": "RE", "state": "Reunion" }, "ZSE": { "city": "St Pierre", "country": "RE", "state": "Reunion" }, "WML": { "city": "Malaimbandy", "country": "MG", "state": "" }, "ATJ": { "city": "Antsirabe", "country": "MG", "state": "" }, "WAQ": { "city": "Antsalova", "country": "MG", "state": "" }, "VVB": { "city": "Mahanoro", "country": "MG", "state": "" }, "TNR": { "city": "Antananarivo", "country": "MG", "state": "" }, "JVA": { "city": "Ankavandra", "country": "MG", "state": "" }, "BMD": { "city": "Belo sur Tsiribihina", "country": "MG", "state": "Menabe" }, "ZVA": { "city": "", "country": "MG", "state": "" }, "MXT": { "city": "Maintirano", "country": "MG", "state": "Melaky" }, "ILK": { "city": "Ilaka", "country": "MG", "state": "" }, "TVA": { "city": "Morafenobe", "country": "MG", "state": "" }, "SMS": { "city": "", "country": "MG", "state": "" }, "TMM": { "city": "", "country": "MG", "state": "Atsinanana" }, "WTA": { "city": "Tambohorano", "country": "MG", "state": "" }, "MOQ": { "city": "", "country": "MG", "state": "Menabe" }, "WTS": { "city": "Tsiroanomandidy", "country": "MG", "state": "" }, "VAT": { "city": "Vatomandry", "country": "MG", "state": "" }, "WAM": { "city": "Ambatondrazaka", "country": "MG", "state": "" }, "DIE": { "city": "", "country": "MG", "state": "Diana" }, "WMR": { "city": "Mananara Nord", "country": "MG", "state": "Analanjirofo" }, "ZWA": { "city": "", "country": "MG", "state": "" }, "AMB": { "city": "", "country": "MG", "state": "" }, "WBD": { "city": "Befandriana", "country": "MG", "state": "" }, "WPB": { "city": "Port Berge", "country": "MG", "state": "" }, "ANM": { "city": "", "country": "MG", "state": "Sava" }, "IVA": { "city": "Ambanja", "country": "MG", "state": "" }, "HVA": { "city": "", "country": "MG", "state": "" }, "MJN": { "city": "", "country": "MG", "state": "" }, "NOS": { "city": "Nosy Be", "country": "MG", "state": "Diana" }, "DWB": { "city": "Soalala", "country": "MG", "state": "" }, "WMP": { "city": "Mampikony", "country": "MG", "state": "" }, "BPY": { "city": "", "country": "MG", "state": "Melaky" }, "WMN": { "city": "", "country": "MG", "state": "" }, "SVB": { "city": "", "country": "MG", "state": "" }, "TTS": { "city": "Tsaratanana", "country": "MG", "state": "" }, "VOH": { "city": "", "country": "MG", "state": "" }, "WAI": { "city": "Antsohihy", "country": "MG", "state": "" }, "WMA": { "city": "Mandritsara", "country": "MG", "state": "" }, "WBO": { "city": "Beroroha", "country": "MG", "state": "" }, "WMD": { "city": "Mandabe", "country": "MG", "state": "" }, "FTU": { "city": "Tolanaro", "country": "MG", "state": "" }, "WFI": { "city": "", "country": "MG", "state": "" }, "RVA": { "city": "", "country": "MG", "state": "" }, "IHO": { "city": "Ihosy", "country": "MG", "state": "Ihorombe" }, "MJA": { "city": "Manja", "country": "MG", "state": "" }, "WVK": { "city": "", "country": "MG", "state": "" }, "OVA": { "city": "Bekily", "country": "MG", "state": "" }, "MNJ": { "city": "", "country": "MG", "state": "" }, "TDV": { "city": "Tanandava", "country": "MG", "state": "" }, "MXM": { "city": "", "country": "MG", "state": "Atsimo-Andrefana" }, "TLE": { "city": "", "country": "MG", "state": "" }, "VND": { "city": "Vangaindrano", "country": "MG", "state": "Atsimo-Atsinanana" }, "BKU": { "city": "Betioky", "country": "MG", "state": "Atsimo-Andrefana" }, "AMP": { "city": "Ampanihy", "country": "MG", "state": "Atsimo-Andrefana" }, "WAK": { "city": "Ankazoabo", "country": "MG", "state": "" }, "AZZ": { "city": "Ambriz", "country": "AO", "state": "Bengo" }, "SSY": { "city": "Mbanza Congo", "country": "AO", "state": "Zaire" }, "BUG": { "city": "Benguela", "country": "AO", "state": "Benguela" }, "CAB": { "city": "Cabinda", "country": "AO", "state": "Cabinda" }, "CFF": { "city": "Cafunfo", "country": "AO", "state": "Luanda-Norte" }, "PGI": { "city": "Chitato", "country": "AO", "state": "Luanda-Norte" }, "CBT": { "city": "Catumbela", "country": "AO", "state": "Benguela" }, "CTI": { "city": "Cuito Cuanavale", "country": "AO", "state": "Cuando-Cobango" }, "CXM": { "city": "Camaxilo", "country": "AO", "state": "Luanda-Norte" }, "CAV": { "city": "Cazombo", "country": "AO", "state": "Moxico" }, "DUE": { "city": "Chitato", "country": "AO", "state": "Luanda-Norte" }, "VPE": { "city": "Ngiva", "country": "AO", "state": "Cunene" }, "NOV": { "city": "Huambo", "country": "AO", "state": "Huambo" }, "SVP": { "city": "Kuito", "country": "AO", "state": "Bie" }, "LAD": { "city": "Luanda", "country": "AO", "state": "Luanda" }, "MEG": { "city": "Malanje", "country": "AO", "state": "Malanje" }, "SPP": { "city": "Menongue", "country": "AO", "state": "Cuando-Cobango" }, "MSZ": { "city": "Namibe", "country": "AO", "state": "Namibe" }, "GXG": { "city": "Negage", "country": "AO", "state": "Uige" }, "PBN": { "city": "Port Amboim", "country": "AO", "state": "Kwanza-Sul" }, "VHC": { "city": "Saurimo", "country": "AO", "state": "Lunda-Sul" }, "SZA": { "city": "Soyo", "country": "AO", "state": "Zaire" }, "NDD": { "city": "Sumbe", "country": "AO", "state": "Kwanza-Sul" }, "UAL": { "city": "Luau", "country": "AO", "state": "Moxico" }, "SDD": { "city": "Lubango", "country": "AO", "state": "Huila" }, "LUO": { "city": "Luena", "country": "AO", "state": "Moxico" }, "UGO": { "city": "Uige", "country": "AO", "state": "Uige" }, "CEO": { "city": "Waco Kungo", "country": "AO", "state": "Benguela" }, "XGN": { "city": "Xangongo", "country": "AO", "state": "Cunene" }, "ARZ": { "city": "N'zeto", "country": "AO", "state": "Zaire" }, "BGB": { "city": "Booue", "country": "GA", "state": "Ogooue-Ivindo" }, "KDN": { "city": "Ndende", "country": "GA", "state": "Ngouni" }, "FOU": { "city": "Fougamou", "country": "GA", "state": "Ngouni" }, "MBC": { "city": "M'Bigou", "country": "GA", "state": "Ngouni" }, "MGX": { "city": "Moabi", "country": "GA", "state": "Nyanga" }, "KDJ": { "city": "N'Djole", "country": "GA", "state": "Moyen-Ogooue" }, "KOU": { "city": "Koulamoutou", "country": "GA", "state": "Ogooue-Lolo" }, "MJL": { "city": "Mouila", "country": "GA", "state": "Ngouni" }, "OYE": { "city": "Oyem", "country": "GA", "state": "Woleu-Ntem" }, "OKN": { "city": "Okondja", "country": "GA", "state": "Haut-Ogooue" }, "LBQ": { "city": "Lambarene", "country": "GA", "state": "Moyen-Ogooue" }, "MVX": { "city": "Minvoul", "country": "GA", "state": "Woleu-Ntem" }, "BMM": { "city": "Bitam", "country": "GA", "state": "Woleu-Ntem" }, "MFF": { "city": "Moanda", "country": "GA", "state": "Haut-Ogooue" }, "MKB": { "city": "Mekambo", "country": "GA", "state": "Ogooue-Ivindo" }, "POG": { "city": "Port Gentil", "country": "GA", "state": "Ogooue-Maritime" }, "OMB": { "city": "Omboue", "country": "GA", "state": "Ogooue-Maritime" }, "MKU": { "city": "Makokou", "country": "GA", "state": "Ogooue-Ivindo" }, "LBV": { "city": "Libreville", "country": "GA", "state": "Estuaire" }, "MZC": { "city": "Mitzic", "country": "GA", "state": "Woleu-Ntem" }, "MVB": { "city": "Franceville", "country": "GA", "state": "Haut-Ogooue" }, "LTL": { "city": "Lastourville", "country": "GA", "state": "Ogooue-Lolo" }, "ZKM": { "city": "Sette Cama", "country": "GA", "state": "Ogooue-Maritime" }, "TCH": { "city": "Tchibanga", "country": "GA", "state": "Nyanga" }, "MYB": { "city": "Mayumba", "country": "GA", "state": "Nyanga" }, "PCP": { "city": "", "country": "ST", "state": "Principe" }, "TMS": { "city": "Sao Tome", "country": "ST", "state": "Sao-Tome-Island" }, "ANO": { "city": "Angoche", "country": "MZ", "state": "Nampula" }, "BEW": { "city": "Beira", "country": "MZ", "state": "Sofala" }, "FXO": { "city": "Cuamba", "country": "MZ", "state": "Niassa" }, "VPY": { "city": "Chimoio", "country": "MZ", "state": "Manica" }, "IHC": { "city": "Inhaca", "country": "MZ", "state": "Maputo" }, "INH": { "city": "Inhambabe", "country": "MZ", "state": "Inhambane" }, "VXC": { "city": "Lichinga", "country": "MZ", "state": "Niassa" }, "LFB": { "city": "Lumbo", "country": "MZ", "state": "Nampula" }, "MPM": { "city": "Maputo", "country": "MZ", "state": "Maputo" }, "MUD": { "city": "Mueda", "country": "MZ", "state": "Cabo-Delgado" }, "MZB": { "city": "Mocimboa da Praia", "country": "MZ", "state": "Cabo-Delgado" }, "MNC": { "city": "Nacala", "country": "MZ", "state": "Nampula" }, "APL": { "city": "Nampula", "country": "MZ", "state": "Nampula" }, "POL": { "city": "Pemba / Porto Amelia", "country": "MZ", "state": "Cabo-Delgado" }, "UEL": { "city": "Quelimane", "country": "MZ", "state": "Zambezia" }, "TET": { "city": "Tete", "country": "MZ", "state": "Tete" }, "VNX": { "city": "Vilanculo", "country": "MZ", "state": "Inhambane" }, "VJB": { "city": "Xai-Xai", "country": "MZ", "state": "Gaza" }, "DES": { "city": "Desroches Island", "country": "SC", "state": "" }, "SEZ": { "city": "Mahe Island", "country": "SC", "state": "Pointe-Larue" }, "PRI": { "city": "Praslin Island", "country": "SC", "state": "Grand-Anse-Praslin" }, "BDI": { "city": "Bird Island", "country": "SC", "state": "" }, "DEI": { "city": "Denis Island", "country": "SC", "state": "" }, "FRK": { "city": "Fregate Island", "country": "SC", "state": "Inner-Islands" }, "SRH": { "city": "Sarh", "country": "TD", "state": "Moyen-Chari" }, "OGR": { "city": "Bongor", "country": "TD", "state": "Mayo-Kebbi-Est" }, "AEH": { "city": "", "country": "TD", "state": "Ouadai" }, "MQQ": { "city": "", "country": "TD", "state": "Logone-Occidental" }, "LTC": { "city": "Lai", "country": "TD", "state": "Tandjile" }, "ATV": { "city": "Ati", "country": "TD", "state": "Batha" }, "NDJ": { "city": "N'Djamena", "country": "TD", "state": "Chari-Baguirmi" }, "BKR": { "city": "Bokoro", "country": "TD", "state": "Hadjer-Lamis" }, "OTC": { "city": "Bol", "country": "TD", "state": "Lac" }, "MVO": { "city": "Mongo", "country": "TD", "state": "Guera" }, "AMC": { "city": "Am Timan", "country": "TD", "state": "Salamat" }, "PLF": { "city": "Pala", "country": "TD", "state": "Mayo-Kebbi-Ouest" }, "OUT": { "city": "Bousso", "country": "TD", "state": "Chari-Baguirmi" }, "AMO": { "city": "Mao", "country": "TD", "state": "Kanem" }, "FYT": { "city": "", "country": "TD", "state": "Borkou" }, "BUQ": { "city": "Bulawayo", "country": "ZW", "state": "Matabeleland-North" }, "CHJ": { "city": "Chipinge", "country": "ZW", "state": "Manicaland" }, "BFO": { "city": "Chiredzi", "country": "ZW", "state": "Masvingo" }, "VFA": { "city": "Victoria Falls", "country": "ZW", "state": "" }, "HRE": { "city": "Harare", "country": "ZW", "state": "Harare" }, "KAB": { "city": "Kariba", "country": "ZW", "state": "" }, "UTA": { "city": "", "country": "ZW", "state": "Manicaland" }, "MVZ": { "city": "Masvingo", "country": "ZW", "state": "Masvingo" }, "GWE": { "city": "Gweru", "country": "ZW", "state": "" }, "HWN": { "city": "Hwange", "country": "ZW", "state": "Matabeleland-North" }, "WKI": { "city": "Hwange", "country": "ZW", "state": "Matabeleland-North" }, "CEH": { "city": "", "country": "MW", "state": "Northern-Region" }, "BLZ": { "city": "Blantyre", "country": "MW", "state": "Southern-Region" }, "CMK": { "city": "Club Makokola", "country": "MW", "state": "Southern-Region" }, "DWA": { "city": "Dwangwa", "country": "MW", "state": "Central-Region" }, "KGJ": { "city": "Karonga", "country": "MW", "state": "" }, "KBQ": { "city": "Kasungu", "country": "MW", "state": "Central-Region" }, "LLW": { "city": "Lilongwe", "country": "MW", "state": "Central-Region" }, "LIX": { "city": "Likoma Island", "country": "MW", "state": "Northern-Region" }, "MAI": { "city": "Mangochi", "country": "MW", "state": "Southern-Region" }, "MYZ": { "city": "Monkey Bay", "country": "MW", "state": "Southern-Region" }, "LMB": { "city": "Salima", "country": "MW", "state": "Central-Region" }, "ZZU": { "city": "Mzuzu", "country": "MW", "state": "Northern-Region" }, "LEF": { "city": "Lebakeng", "country": "LS", "state": "Thaba-Tseka" }, "LRB": { "city": "Leribe", "country": "LS", "state": "Leribe" }, "LES": { "city": "Lesobeng", "country": "LS", "state": "Thaba-Tseka" }, "MFC": { "city": "Mafeteng", "country": "LS", "state": "Mafeteng" }, "MKH": { "city": "Mokhotlong", "country": "LS", "state": "Mokhotlong" }, "MSU": { "city": "Maseru", "country": "LS", "state": "Maseru" }, "NKU": { "city": "Nkaus", "country": "LS", "state": "Mohaleʼs-Hoek" }, "PEL": { "city": "Pelaneng", "country": "LS", "state": "Leribe" }, "UTG": { "city": "Quthing", "country": "LS", "state": "Quthing" }, "UNE": { "city": "Qacha's Nek", "country": "LS", "state": "Qachaʼs-Nek" }, "SHK": { "city": "Sehonghong", "country": "LS", "state": "Thaba-Tseka" }, "SKQ": { "city": "Sekakes", "country": "LS", "state": "Mohaleʼs-Hoek" }, "SOK": { "city": "Semonkong", "country": "LS", "state": "Maseru" }, "SHZ": { "city": "Seshutes", "country": "LS", "state": "Leribe" }, "THB": { "city": "Thaba-Tseka", "country": "LS", "state": "Thaba-Tseka" }, "TKO": { "city": "Tlokoeng", "country": "LS", "state": "Mokhotlong" }, "ADI": { "city": "Arandis", "country": "NA", "state": "" }, "GOG": { "city": "Gobabis", "country": "NA", "state": "" }, "GFY": { "city": "Grootfontein", "country": "NA", "state": "Otjozondjupa" }, "MPA": { "city": "Mpacha", "country": "NA", "state": "Zambezi" }, "KMP": { "city": "Keetmanshoop", "country": "NA", "state": "Karas" }, "LUD": { "city": "Luderitz", "country": "NA", "state": "Karas" }, "OKU": { "city": "Mokuti Lodge", "country": "NA", "state": "" }, "NNI": { "city": "Namutoni", "country": "NA", "state": "" }, "OND": { "city": "Ondangwa", "country": "NA", "state": "" }, "OMG": { "city": "Omega", "country": "NA", "state": "" }, "OMD": { "city": "Oranjemund", "country": "NA", "state": "Karas" }, "OKF": { "city": "Okaukuejo", "country": "NA", "state": "Kunene" }, "NDU": { "city": "Rundu", "country": "NA", "state": "" }, "SWP": { "city": "Swakopmund", "country": "NA", "state": "Erongo" }, "TSB": { "city": "Tsumeb", "country": "NA", "state": "" }, "WVB": { "city": "Walvis Bay", "country": "NA", "state": "Erongo" }, "ERS": { "city": "Windhoek", "country": "NA", "state": "Khomas" }, "WDH": { "city": "Windhoek", "country": "NA", "state": "Khomas" }, "FIH": { "city": "Kinshasa", "country": "CD", "state": "" }, "NLO": { "city": "", "country": "CD", "state": "Kinshasa" }, "MNB": { "city": "", "country": "CD", "state": "Bas-Congo" }, "BOA": { "city": "Boma", "country": "CD", "state": "Bas-Congo" }, "LZI": { "city": "Luozi", "country": "CD", "state": "Bas-Congo" }, "MAT": { "city": "Matadi", "country": "CD", "state": "Bas-Congo" }, "NKL": { "city": "Nkolo Fuma", "country": "CD", "state": "Bas-Congo" }, "INO": { "city": "Inongo", "country": "CD", "state": "" }, "NIO": { "city": "Nioki", "country": "CD", "state": "" }, "FDU": { "city": "", "country": "CD", "state": "Kwilu" }, "KRZ": { "city": "Kiri", "country": "CD", "state": "" }, "KKW": { "city": "", "country": "CD", "state": "Kwilu" }, "IDF": { "city": "Idiofa", "country": "CD", "state": "" }, "LUS": { "city": "Lusanga", "country": "CD", "state": "" }, "MSM": { "city": "Masi Manimba", "country": "CD", "state": "" }, "MDK": { "city": "Mbandaka", "country": "CD", "state": "Equateur" }, "BSU": { "city": "Basankusu", "country": "CD", "state": "Equateur" }, "LIE": { "city": "Libenge", "country": "CD", "state": "Equateur" }, "BDT": { "city": "", "country": "CD", "state": "Equateur" }, "GMA": { "city": "Gemena", "country": "CD", "state": "Sud-Ubangi" }, "KLI": { "city": "", "country": "CD", "state": "Equateur" }, "BMB": { "city": "Bumbar", "country": "CD", "state": "Equateur" }, "LIQ": { "city": "", "country": "CD", "state": "Equateur" }, "BNB": { "city": "Boende", "country": "CD", "state": "Equateur" }, "IKL": { "city": "Ikela", "country": "CD", "state": "Equateur" }, "FKI": { "city": "Kisangani", "country": "CD", "state": "Tshopo" }, "YAN": { "city": "Yangambi", "country": "CD", "state": "" }, "IRP": { "city": "", "country": "CD", "state": "" }, "BUX": { "city": "", "country": "CD", "state": "" }, "BZU": { "city": "", "country": "CD", "state": "" }, "BKY": { "city": "", "country": "CD", "state": "" }, "RUE": { "city": "Butembo", "country": "CD", "state": "Nord-Kivu" }, "GOM": { "city": "Goma", "country": "CD", "state": "" }, "BNC": { "city": "Beni", "country": "CD", "state": "Nord-Kivu" }, "KND": { "city": "Kindu", "country": "CD", "state": "Maniema" }, "KLY": { "city": "Kalima", "country": "CD", "state": "" }, "PUN": { "city": "Punia", "country": "CD", "state": "" }, "FBM": { "city": "Lubumbashi", "country": "CD", "state": "" }, "PWO": { "city": "Pweto", "country": "CD", "state": "" }, "KEC": { "city": "Kasenga", "country": "CD", "state": "Haut-Katanga" }, "KWZ": { "city": "", "country": "CD", "state": "Lualaba" }, "MNO": { "city": "Manono", "country": "CD", "state": "Tanganika" }, "BDV": { "city": "Moba", "country": "CD", "state": "" }, "FMI": { "city": "", "country": "CD", "state": "Tanganika" }, "KBO": { "city": "Kabalo", "country": "CD", "state": "" }, "KOO": { "city": "Kongolo", "country": "CD", "state": "" }, "KMN": { "city": "", "country": "CD", "state": "" }, "KAP": { "city": "Kapanga", "country": "CD", "state": "" }, "KNM": { "city": "Kaniama", "country": "CD", "state": "Haut-Lomani" }, "KGA": { "city": "Kananga", "country": "CD", "state": "Kasai-Central" }, "LZA": { "city": "Luiza", "country": "CD", "state": "" }, "TSH": { "city": "Tshikapa", "country": "CD", "state": "" }, "LJA": { "city": "Lodja", "country": "CD", "state": "Kasai-Oriental" }, "LBO": { "city": "Lusambo", "country": "CD", "state": "Sankuru" }, "MEW": { "city": "Mweka", "country": "CD", "state": "" }, "BAN": { "city": "Basongo", "country": "CD", "state": "" }, "PFR": { "city": "Ilebo", "country": "CD", "state": "Kasai" }, "MJM": { "city": "Mbuji Mayi", "country": "CD", "state": "Kasai-Oriental" }, "GDJ": { "city": "Gandajika", "country": "CD", "state": "Lomami" }, "KBN": { "city": "Kabinda", "country": "CD", "state": "Kasai-Oriental" }, "BKO": { "city": "Senou", "country": "ML", "state": "Bamako" }, "GUD": { "city": "Goundam", "country": "ML", "state": "Gao" }, "GAQ": { "city": "", "country": "ML", "state": "Gao" }, "KNZ": { "city": "Kenieba", "country": "ML", "state": "Kayes" }, "KTX": { "city": "Koutiala", "country": "ML", "state": "Sikasso" }, "KYS": { "city": "", "country": "ML", "state": "Kayes" }, "MZI": { "city": "", "country": "ML", "state": "Mopti" }, "NRM": { "city": "Nara", "country": "ML", "state": "Koulikoro" }, "NIX": { "city": "Nioro du Sahel", "country": "ML", "state": "Kayes" }, "KSS": { "city": "Sikasso", "country": "ML", "state": "Sikasso" }, "TOM": { "city": "Timbuktu", "country": "ML", "state": "Tombouctou" }, "EYL": { "city": "Yelimane", "country": "ML", "state": "Kayes" }, "BJL": { "city": "Banjul", "country": "GM", "state": "Western" }, "FUE": { "city": "Fuerteventura Island", "country": "ES", "state": "Canary-Islands" }, "GMZ": { "city": "Alajero", "country": "ES", "state": "Canary-Islands" }, "VDE": { "city": "El Hierro Island", "country": "ES", "state": "Canary-Islands" }, "SPC": { "city": "Sta Cruz de la Palma", "country": "ES", "state": "Canary-Islands" }, "LPA": { "city": "Gran Canaria Island", "country": "ES", "state": "Canary-Islands" }, "ACE": { "city": "Lanzarote Island", "country": "ES", "state": "Canary-Islands" }, "TFS": { "city": "Tenerife Island", "country": "ES", "state": "Canary-Islands" }, "TFN": { "city": "Tenerife Island", "country": "ES", "state": "Canary-Islands" }, "MLN": { "city": "Melilla Island", "country": "ES", "state": "Melilla" }, "BTE": { "city": "Bonthe", "country": "SL", "state": "Southern-Province" }, "KBS": { "city": "Bo", "country": "SL", "state": "Southern-Province" }, "GBK": { "city": "Gbangbatok", "country": "SL", "state": "Southern-Province" }, "HGS": { "city": "Freetown", "country": "SL", "state": "Western-Area" }, "KBA": { "city": "Kabala", "country": "SL", "state": "Northern-Province" }, "KEN": { "city": "Kenema", "country": "SL", "state": "Eastern-Province" }, "FNA": { "city": "Freetown", "country": "SL", "state": "Northern-Province" }, "WYE": { "city": "Yengema", "country": "SL", "state": "Eastern-Province" }, "BQE": { "city": "Bubaque", "country": "GW", "state": "Bolama-and-Bijagos" }, "OXB": { "city": "Bissau", "country": "GW", "state": "" }, "UCN": { "city": "Buchanan", "country": "LR", "state": "Sinoe" }, "CPA": { "city": "Harper", "country": "LR", "state": "Maryland" }, "SNI": { "city": "Greenville", "country": "LR", "state": "Sinoe" }, "MLW": { "city": "Monrovia", "country": "LR", "state": "Montserrado" }, "NIA": { "city": "Nimba", "country": "LR", "state": "Nimba" }, "ROB": { "city": "Monrovia", "country": "LR", "state": "Margibi" }, "SAZ": { "city": "Sasstown", "country": "LR", "state": "Sinoe" }, "THC": { "city": "Tchien", "country": "LR", "state": "Grand-Gedeh" }, "VOI": { "city": "Voinjama", "country": "LR", "state": "Lofa" }, "AGA": { "city": "Agadir", "country": "MA", "state": "Souss-Massa" }, "TTA": { "city": "Tan Tan", "country": "MA", "state": "Guelmim-Oued-Noun" }, "OZG": { "city": "Zagora", "country": "MA", "state": "Draa-Tafilalet" }, "UAR": { "city": "Bouarfa", "country": "MA", "state": "" }, "FEZ": { "city": "Fes", "country": "MA", "state": "Fes-Meknes" }, "ERH": { "city": "Errachidia", "country": "MA", "state": "" }, "MEK": { "city": "Meknes", "country": "MA", "state": "Fes-Meknes" }, "OUD": { "city": "Oujda", "country": "MA", "state": "Oriental" }, "SMW": { "city": "Smara", "country": "EH", "state": "Laayoune-Sakia-El-Hamra" }, "GMD": { "city": "Ben Slimane", "country": "MA", "state": "Casablanca-Settat" }, "CAS": { "city": "Casablanca", "country": "MA", "state": "Casablanca-Settat" }, "RBA": { "city": "Rabat", "country": "MA", "state": "" }, "SII": { "city": "Sidi Ifni", "country": "MA", "state": "Guelmim-Oued-Noun" }, "VIL": { "city": "Dakhla", "country": "EH", "state": "Dakhla-Oued-Ed-Dahab" }, "ESU": { "city": "Essaouira", "country": "MA", "state": "" }, "EUN": { "city": "El Aaiun", "country": "EH", "state": "Laayoune-Sakia-El-Hamra" }, "CMN": { "city": "Casablanca", "country": "MA", "state": "" }, "SFI": { "city": "Safi", "country": "MA", "state": "Marrakesh-Safi" }, "NDR": { "city": "Nador", "country": "MA", "state": "Oriental" }, "RAK": { "city": "Marrakech", "country": "MA", "state": "Marrakesh-Safi" }, "NNA": { "city": "", "country": "MA", "state": "" }, "OZZ": { "city": "Ouarzazate", "country": "MA", "state": "Draa-Tafilalet" }, "AHU": { "city": "Al Hoceima", "country": "MA", "state": "Tanger-Tetouan-Al-Hoceima" }, "TTU": { "city": "", "country": "MA", "state": "" }, "TNG": { "city": "Tangier", "country": "MA", "state": "" }, "DSS": { "city": "Diass", "country": "SN", "state": "M'bour" }, "KDA": { "city": "Kolda", "country": "SN", "state": "Kolda" }, "ZIG": { "city": "Ziguinchor", "country": "SN", "state": "Ziguinchor" }, "CSK": { "city": "Cap Skirring", "country": "SN", "state": "Ziguinchor" }, "KLC": { "city": "Kaolack", "country": "SN", "state": "Kaolack" }, "DKR": { "city": "Dakar", "country": "SN", "state": "Dakar" }, "MAX": { "city": "Matam", "country": "SN", "state": "Saint-Louis" }, "POD": { "city": "Podor", "country": "SN", "state": "Saint-Louis" }, "RDT": { "city": "Richard Toll", "country": "SN", "state": "Saint-Louis" }, "XLS": { "city": "Saint Louis", "country": "SN", "state": "Saint-Louis" }, "BXE": { "city": "Bakel", "country": "SN", "state": "Tambacounda" }, "KGG": { "city": "Kedougou", "country": "SN", "state": "Kedougou" }, "SMY": { "city": "Simenti", "country": "SN", "state": "Tambacounda" }, "TUD": { "city": "Tambacounda", "country": "SN", "state": "Tambacounda" }, "AEO": { "city": "Aioun El Atrouss", "country": "MR", "state": "" }, "OTL": { "city": "Boutilimit", "country": "MR", "state": "Trarza" }, "THI": { "city": "Tichitt", "country": "MR", "state": "Tagant" }, "TIY": { "city": "Tidjikja", "country": "MR", "state": "Tagant" }, "BGH": { "city": "Boghe", "country": "MR", "state": "Brakna" }, "KFA": { "city": "Kiffa", "country": "MR", "state": "Assaba" }, "TMD": { "city": "Timbedra", "country": "MR", "state": "Hodh-ech-Chargui" }, "EMN": { "city": "Nema", "country": "MR", "state": "Hodh-ech-Chargui" }, "AJJ": { "city": "Akjoujt", "country": "MR", "state": "" }, "KED": { "city": "Kaedi", "country": "MR", "state": "Gorgol" }, "MOM": { "city": "Moudjeria", "country": "MR", "state": "Brakna" }, "NKC": { "city": "Nouakchott", "country": "MR", "state": "Trarza" }, "SEY": { "city": "Selibaby", "country": "MR", "state": "Guidimaka" }, "THT": { "city": "Tamchakett", "country": "MR", "state": "Hodh-El-Gharbi" }, "ATR": { "city": "Atar", "country": "MR", "state": "Adrar" }, "FGD": { "city": "Fderik", "country": "MR", "state": "Tiris-Zemmour" }, "NDB": { "city": "Nouadhibou", "country": "MR", "state": "Dakhlet-Nouadhibou" }, "OUZ": { "city": "Zouerate", "country": "MR", "state": "Tiris-Zemmour" }, "CKY": { "city": "Conakry", "country": "GN", "state": "Conakry" }, "FIG": { "city": "", "country": "GN", "state": "Boke" }, "FAA": { "city": "", "country": "GN", "state": "Faranah" }, "KSI": { "city": "Kissidougou", "country": "GN", "state": "Faranah" }, "LEK": { "city": "", "country": "GN", "state": "Labe" }, "MCA": { "city": "Macenta", "country": "GN", "state": "Nzerekore" }, "NZE": { "city": "Nzerekore", "country": "GN", "state": "Nzerekore" }, "BKJ": { "city": "Boke", "country": "GN", "state": "Boke" }, "SBI": { "city": "Koundara", "country": "GN", "state": "Boke" }, "GII": { "city": "Siguiri", "country": "GN", "state": "Kankan" }, "KNN": { "city": "Kankan", "country": "GN", "state": "Kankan" }, "SID": { "city": "Espargos", "country": "CV", "state": "Sal" }, "NTO": { "city": "Ponta do Sol", "country": "CV", "state": "Ribeira-Grande" }, "BVC": { "city": "Rabil", "country": "CV", "state": "Boa-Vista" }, "BVR": { "city": "Brava Island", "country": "CV", "state": "Brava" }, "MMO": { "city": "Vila do Maio", "country": "CV", "state": "Maio" }, "MTI": { "city": "Vila do Mosteiros", "country": "CV", "state": "Mosteiros" }, "RAI": { "city": "Praia", "country": "CV", "state": "Praia" }, "SFL": { "city": "Sao Filipe", "country": "CV", "state": "Sao-Filipe" }, "SNE": { "city": "Preguica", "country": "CV", "state": "Ribeira-Brava" }, "VXE": { "city": "Sao Pedro", "country": "CV", "state": "Sao-Vicente" }, "ADD": { "city": "Addis Ababa", "country": "ET", "state": "Addis-Ababa" }, "AMH": { "city": "", "country": "ET", "state": "SNNPR" }, "AXU": { "city": "", "country": "ET", "state": "Tigray" }, "BCO": { "city": "Baco", "country": "ET", "state": "" }, "BJR": { "city": "Bahir Dar", "country": "ET", "state": "Amhara" }, "BEI": { "city": "Beica", "country": "ET", "state": "" }, "DSE": { "city": "Dessie", "country": "ET", "state": "" }, "DEM": { "city": "Dembidollo", "country": "ET", "state": "" }, "DBM": { "city": "Debra Marcos", "country": "ET", "state": "Amhara" }, "DIR": { "city": "Dire Dawa", "country": "ET", "state": "Dire-Dawa" }, "DBT": { "city": "Debre Tabor", "country": "ET", "state": "" }, "FNH": { "city": "Fincha", "country": "ET", "state": "" }, "GOB": { "city": "Goba", "country": "ET", "state": "Oromiya" }, "GNN": { "city": "Ghinnir", "country": "ET", "state": "Oromiya" }, "GMB": { "city": "Gambela", "country": "ET", "state": "" }, "GDQ": { "city": "Gondar", "country": "ET", "state": "Amhara" }, "GDE": { "city": "Gode", "country": "ET", "state": "Somali" }, "GOR": { "city": "Gore", "country": "ET", "state": "" }, "QHR": { "city": "Debre Zeyit", "country": "ET", "state": "" }, "HUE": { "city": "Humera", "country": "ET", "state": "" }, "JIM": { "city": "Jimma", "country": "ET", "state": "Oromiya" }, "ABK": { "city": "Kabri Dehar", "country": "ET", "state": "" }, "LFO": { "city": "Kelafo", "country": "ET", "state": "" }, "AWA": { "city": "Awassa", "country": "ET", "state": "SNNPR" }, "LLI": { "city": "Lalibela", "country": "ET", "state": "Amhara" }, "MQX": { "city": "", "country": "ET", "state": "Tigray" }, "NDM": { "city": "Mendi", "country": "ET", "state": "" }, "MTF": { "city": "Mizan Teferi", "country": "ET", "state": "" }, "NEJ": { "city": "Nejjo", "country": "ET", "state": "" }, "NEK": { "city": "Nekemte", "country": "ET", "state": "" }, "SXU": { "city": "Soddu", "country": "ET", "state": "" }, "ASO": { "city": "Asosa", "country": "ET", "state": "Binshangul-Gumuz" }, "TIE": { "city": "Tippi", "country": "ET", "state": "" }, "WAC": { "city": "Waca", "country": "ET", "state": "" }, "BJM": { "city": "Bujumbura", "country": "BI", "state": "Bujumbura-Mairie" }, "GID": { "city": "Gitega", "country": "BI", "state": "Gitega" }, "KRE": { "city": "Kirundo", "country": "BI", "state": "Kirundo" }, "ALU": { "city": "Alula", "country": "SO", "state": "Bari" }, "BIB": { "city": "Baidoa", "country": "SO", "state": "Bay" }, "CXN": { "city": "Candala", "country": "SO", "state": "Bari" }, "BSY": { "city": "", "country": "SO", "state": "Gedo" }, "HCM": { "city": "Eil", "country": "SO", "state": "Nugaal" }, "BSA": { "city": "Bosaso", "country": "SO", "state": "Bari" }, "GSR": { "city": "Gardo", "country": "SO", "state": "Bari" }, "HGA": { "city": "Hargeisa", "country": "SO", "state": "Woqooyi-Galbeed" }, "BBO": { "city": "Berbera", "country": "SO", "state": "Woqooyi-Galbeed" }, "KMU": { "city": "", "country": "SO", "state": "Lower-Juba" }, "MGQ": { "city": "Mogadishu", "country": "SO", "state": "Banaadir" }, "CMO": { "city": "Obbia", "country": "SO", "state": "Mudug" }, "GLK": { "city": "Galcaio", "country": "SO", "state": "Mudug" }, "CMS": { "city": "Scusciuban", "country": "SO", "state": "Bari" }, "ERA": { "city": "Erigavo", "country": "SO", "state": "Sanaag" }, "BUO": { "city": "Burao", "country": "SO", "state": "Togdheer" }, "JIB": { "city": "Djibouti City", "country": "DJ", "state": "Djibouti" }, "AII": { "city": "Ali-Sabieh", "country": "DJ", "state": "Ali-Sabieh" }, "MHI": { "city": "Moucha Island", "country": "DJ", "state": "Djibouti" }, "OBC": { "city": "Obock", "country": "DJ", "state": "Obock" }, "TDJ": { "city": "Tadjoura", "country": "DJ", "state": "Tadjourah" }, "SEW": { "city": "Siwa", "country": "EG", "state": "Matruh" }, "DBB": { "city": "El Alamein", "country": "EG", "state": "Matruh" }, "AAC": { "city": "El Arish", "country": "EG", "state": "North-Sinai" }, "ATZ": { "city": "Assiut", "country": "EG", "state": "Asyut" }, "ALY": { "city": "Alexandria", "country": "EG", "state": "" }, "HBE": { "city": "Alexandria", "country": "EG", "state": "Alexandria" }, "ABS": { "city": "Abu Simbel", "country": "EG", "state": "Aswan" }, "CAI": { "city": "Cairo", "country": "EG", "state": "Cairo" }, "CWE": { "city": "El Cairo", "country": "EG", "state": "Giza" }, "DAK": { "city": "", "country": "EG", "state": "New-Valley" }, "HRG": { "city": "Hurghada", "country": "EG", "state": "Red-Sea" }, "EGH": { "city": "", "country": "EG", "state": "North-Sinai" }, "UVL": { "city": "", "country": "EG", "state": "New-Valley" }, "LXR": { "city": "Luxor", "country": "EG", "state": "Qena" }, "RMF": { "city": "Marsa Alam", "country": "EG", "state": "Red-Sea" }, "HMB": { "city": "Sohag", "country": "EG", "state": "New-Valley" }, "MUH": { "city": "Mersa Matruh", "country": "EG", "state": "Matruh" }, "GSQ": { "city": "", "country": "EG", "state": "New-Valley" }, "PSD": { "city": "Port Said", "country": "EG", "state": "Port-Said" }, "SKV": { "city": "", "country": "EG", "state": "South-Sinai" }, "SSH": { "city": "Sharm el-Sheikh", "country": "EG", "state": "South-Sinai" }, "ASW": { "city": "Aswan", "country": "EG", "state": "Aswan" }, "SPX": { "city": "Giza", "country": "EG", "state": "Giza " }, "TCP": { "city": "Taba", "country": "EG", "state": "South-Sinai" }, "ELT": { "city": "", "country": "EG", "state": "South-Sinai" }, "ASM": { "city": "Asmara", "country": "ER", "state": "Maekel" }, "MSW": { "city": "Massawa", "country": "ER", "state": "Northern-Red-Sea" }, "ASA": { "city": "Asab", "country": "ER", "state": "" }, "TES": { "city": "Tessenei", "country": "ER", "state": "" }, "ASV": { "city": "Amboseli National Park", "country": "KE", "state": "Kajiado" }, "EDL": { "city": "Eldoret", "country": "KE", "state": "Uasin-Gishu" }, "EYS": { "city": "Eliye Springs", "country": "KE", "state": "" }, "KLK": { "city": "Kalokol", "country": "KE", "state": "Turkana" }, "GAS": { "city": "Garissa", "country": "KE", "state": "Garissa" }, "HOA": { "city": "Hola", "country": "KE", "state": "Tana-River" }, "NBO": { "city": "Nairobi", "country": "KE", "state": "Nairobi-Area" }, "GGM": { "city": "Kakamega", "country": "KE", "state": "Kakamega" }, "KIS": { "city": "Kisumu", "country": "KE", "state": "Kisumu" }, "ILU": { "city": "Kilaguni", "country": "KE", "state": "Taita-Taveta" }, "KEY": { "city": "Kericho", "country": "KE", "state": "Kericho" }, "KTL": { "city": "Kitale", "country": "KE", "state": "Trans-Nzoia" }, "LKG": { "city": "Lokichoggio", "country": "KE", "state": "Turkana" }, "LOK": { "city": "Lodwar", "country": "KE", "state": "Turkana" }, "LAU": { "city": "Lamu", "country": "KE", "state": "Lamu" }, "LOY": { "city": "Loyengalani", "country": "KE", "state": "Marsabit" }, "NDE": { "city": "Mandera", "country": "KE", "state": "Mandera" }, "RBT": { "city": "Marsabit", "country": "KE", "state": "Marsabit" }, "JJM": { "city": "Meru-Kinna", "country": "KE", "state": "Isiolo" }, "MYD": { "city": "Malindi", "country": "KE", "state": "Kilifi" }, "MBA": { "city": "Mombasa", "country": "KE", "state": "Mombasa" }, "MRE": { "city": "Masai Mara", "country": "KE", "state": "Narok" }, "OYL": { "city": "Moyale (Lower)", "country": "KE", "state": "Marsabit" }, "NYE": { "city": "Nyeri", "country": "KE", "state": "Nyeri" }, "NUU": { "city": "Nakuru", "country": "KE", "state": "Nakuru" }, "WIL": { "city": "Nairobi", "country": "KE", "state": "Nairobi-Area" }, "NYK": { "city": "Nanyuki", "country": "KE", "state": "Nyeri" }, "UAS": { "city": "Samburu South", "country": "KE", "state": "" }, "UKA": { "city": "Ukunda", "country": "KE", "state": "" }, "WJR": { "city": "Wajir", "country": "KE", "state": "Wajir" }, "SRX": { "city": "Sirt", "country": "LY", "state": "" }, "TOB": { "city": "Tobruk", "country": "LY", "state": "" }, "GHT": { "city": "Ghat", "country": "LY", "state": "Sha‘biyat-Ghat" }, "AKF": { "city": "Kufra", "country": "LY", "state": "Al-Kufrah" }, "BEN": { "city": "Benghazi", "country": "LY", "state": "Banghazi" }, "MJI": { "city": "Tripoli", "country": "LY", "state": "Tripoli" }, "LAQ": { "city": "Al Bayda'", "country": "LY", "state": "" }, "SEB": { "city": "Sabha", "country": "LY", "state": "" }, "TIP": { "city": "Tripoli", "country": "LY", "state": "" }, "LMQ": { "city": "", "country": "LY", "state": "" }, "HUQ": { "city": "", "country": "LY", "state": "" }, "LTD": { "city": "Ghadames", "country": "LY", "state": "" }, "WAX": { "city": "Zuwara", "country": "LY", "state": "" }, "GYI": { "city": "Gisenyi", "country": "RW", "state": "Western-Province" }, "BTQ": { "city": "Butare", "country": "RW", "state": "Southern-Province" }, "KGL": { "city": "Kigali", "country": "RW", "state": "Kigali" }, "RHG": { "city": "Ruhengeri", "country": "RW", "state": "Northern-Province" }, "KME": { "city": "Kamembe", "country": "RW", "state": "Western-Province" }, "ATB": { "city": "Atbara", "country": "SD", "state": "" }, "EDB": { "city": "El Debba", "country": "SD", "state": "" }, "DOG": { "city": "Dongola", "country": "SD", "state": "Northern-State" }, "RSS": { "city": "Ad Damazin", "country": "SD", "state": "Blue-Nile" }, "ELF": { "city": "El Fasher", "country": "SD", "state": "Northern-Darfur" }, "GSU": { "city": "Gedaref", "country": "SD", "state": "" }, "DNX": { "city": "Dinder", "country": "SD", "state": "" }, "EGN": { "city": "Geneina", "country": "SD", "state": "Western-Darfur" }, "HEG": { "city": "Heglig Oilfield", "country": "SD", "state": "" }, "KSL": { "city": "Kassala", "country": "SD", "state": "Kassala" }, "GBU": { "city": "Khashm El Girba", "country": "SD", "state": "" }, "KST": { "city": "Kosti", "country": "SD", "state": "White-Nile" }, "KDX": { "city": "Kadugli", "country": "SD", "state": "Southern-Kordofan" }, "RBX": { "city": "Rumbek", "country": "SS", "state": "" }, "MWE": { "city": "Merowe", "country": "SD", "state": "Northern-State" }, "NUD": { "city": "En Nahud", "country": "SD", "state": "West-Kordofan-State" }, "UYL": { "city": "Nyala", "country": "SD", "state": "Southern-Darfur" }, "NHF": { "city": "New Halfa", "country": "SD", "state": "Kassala" }, "EBD": { "city": "Al-Ubayyid", "country": "SD", "state": "North-Kordofan" }, "PZU": { "city": "Port Sudan", "country": "SD", "state": "Red-Sea" }, "JUB": { "city": "Juba", "country": "SS", "state": "" }, "MAK": { "city": "Malakal", "country": "SS", "state": "" }, "KRT": { "city": "Khartoum", "country": "SD", "state": "Khartoum" }, "WHF": { "city": "Wadi Halfa", "country": "SD", "state": "Northern-State" }, "WUU": { "city": "Wau", "country": "SS", "state": "" }, "ARK": { "city": "Arusha", "country": "TZ", "state": "Arusha" }, "BKZ": { "city": "Bukoba", "country": "TZ", "state": "Kagera" }, "DAR": { "city": "Dar es Salaam", "country": "TZ", "state": "Dar-es-Salaam" }, "DOD": { "city": "Dodoma", "country": "TZ", "state": "Dodoma" }, "IRI": { "city": "Nduli", "country": "TZ", "state": "Iringa" }, "TKQ": { "city": "Kigoma", "country": "TZ", "state": "Kigoma" }, "KIY": { "city": "Kilwa Masoko", "country": "TZ", "state": "Lindi" }, "JRO": { "city": "Arusha", "country": "TZ", "state": "Kilimanjaro" }, "LDI": { "city": "Lindi", "country": "TZ", "state": "Lindi" }, "LKY": { "city": "Lake Manyara National Park", "country": "TZ", "state": "Arusha" }, "MFA": { "city": "Mafia Island", "country": "TZ", "state": "Pwani" }, "MBI": { "city": "Mbeya", "country": "TZ", "state": "Mbeya" }, "MWN": { "city": "Mwadui", "country": "TZ", "state": "Shinyanga" }, "XMI": { "city": "Masasi", "country": "TZ", "state": "Mtwara" }, "QSI": { "city": "Moshi", "country": "TZ", "state": "Kilimanjaro" }, "MYW": { "city": "Mtwara", "country": "TZ", "state": "Mtwara" }, "MUZ": { "city": "Musoma", "country": "TZ", "state": "Mara" }, "MWZ": { "city": "Mwanza", "country": "TZ", "state": "Mwanza" }, "NCH": { "city": "Nachingwea", "country": "TZ", "state": "Lindi" }, "JOM": { "city": "Njombe", "country": "TZ", "state": "Njombe" }, "PMA": { "city": "Chake", "country": "TZ", "state": "Pemba-South" }, "SEU": { "city": "Seronera", "country": "TZ", "state": "Mara" }, "SGX": { "city": "Songea", "country": "TZ", "state": "Ruvuma" }, "SUT": { "city": "Sumbawanga", "country": "TZ", "state": "Rukwa" }, "SHY": { "city": "Shinyanga", "country": "TZ", "state": "Shinyanga" }, "TBO": { "city": "Tabora", "country": "TZ", "state": "Tabora" }, "TGT": { "city": "Tanga", "country": "TZ", "state": "Tanga" }, "ZNZ": { "city": "Kiembi Samaki", "country": "TZ", "state": "Zanzibar-Urban/West" }, "RUA": { "city": "Arua", "country": "UG", "state": "Northern-Region" }, "EBB": { "city": "Kampala", "country": "UG", "state": "Central-Region" }, "ULU": { "city": "Gulu", "country": "UG", "state": "Northern-Region" }, "JIN": { "city": "Jinja", "country": "UG", "state": "Eastern-Region" }, "KBG": { "city": "Kabalega Falls", "country": "UG", "state": "Northern-Region" }, "KSE": { "city": "Kasese", "country": "UG", "state": "Western-Region" }, "MBQ": { "city": "Mbarara", "country": "UG", "state": "Western-Region" }, "KCU": { "city": "Masindi", "country": "UG", "state": "Western-Region" }, "PAF": { "city": "", "country": "UG", "state": "Western-Region" }, "SRT": { "city": "Soroti", "country": "UG", "state": "Eastern-Region" }, "TRY": { "city": "Tororo", "country": "UG", "state": "Eastern-Region" }, "AMK": { "city": "Durango", "country": "US", "state": "Colorado" }, "BDX": { "city": "Broadus", "country": "US", "state": "Montana" }, "FID": { "city": "Fishers Island", "country": "US", "state": "New-York" }, "GCW": { "city": "Peach Springs", "country": "US", "state": "Arizona" }, "RKC": { "city": "Montague", "country": "US", "state": "California" }, "GNF": { "city": "Quincy", "country": "US", "state": "California" }, "GTP": { "city": "Grants Pass", "country": "US", "state": "Oregon" }, "GCD": { "city": "Electric City", "country": "US", "state": "Washington" }, "FPY": { "city": "Perry", "country": "US", "state": "Florida" }, "FMU": { "city": "Florence", "country": "US", "state": "Oregon" }, "ATE": { "city": "Antlers", "country": "US", "state": "Oklahoma" }, "AAF": { "city": "Apalachicola", "country": "US", "state": "Florida" }, "ABE": { "city": "Allentown", "country": "US", "state": "Pennsylvania" }, "ABI": { "city": "Abilene", "country": "US", "state": "Texas" }, "ABQ": { "city": "Albuquerque", "country": "US", "state": "New-Mexico" }, "ABR": { "city": "Aberdeen", "country": "US", "state": "South-Dakota" }, "ABY": { "city": "Albany", "country": "US", "state": "Georgia" }, "ACB": { "city": "Bellaire", "country": "US", "state": "Michigan" }, "ACK": { "city": "Nantucket", "country": "US", "state": "Massachusetts" }, "ACT": { "city": "Waco", "country": "US", "state": "Texas" }, "ACV": { "city": "Arcata/Eureka", "country": "US", "state": "California" }, "ACY": { "city": "Atlantic City", "country": "US", "state": "New-Jersey" }, "ADG": { "city": "Adrian", "country": "US", "state": "Michigan" }, "ADT": { "city": "Ada", "country": "US", "state": "Oklahoma" }, "ADM": { "city": "Ardmore", "country": "US", "state": "Oklahoma" }, "ADS": { "city": "Dallas", "country": "US", "state": "Texas" }, "ADW": { "city": "Camp Springs", "country": "US", "state": "Maryland" }, "AEL": { "city": "Albert Lea", "country": "US", "state": "Minnesota" }, "AEX": { "city": "Alexandria", "country": "US", "state": "Louisiana" }, "AFF": { "city": "Colorado Springs", "country": "US", "state": "Colorado" }, "WSG": { "city": "Washington", "country": "US", "state": "Pennsylvania" }, "AFN": { "city": "Jaffrey", "country": "US", "state": "New-Hampshire" }, "AFO": { "city": "Afton", "country": "US", "state": "Wyoming" }, "AFW": { "city": "Fort Worth", "country": "US", "state": "Texas" }, "AGC": { "city": "Pittsburgh", "country": "US", "state": "Pennsylvania" }, "AGO": { "city": "Magnolia", "country": "US", "state": "Arkansas" }, "AGS": { "city": "Augusta", "country": "US", "state": "Georgia" }, "AHC": { "city": "Herlong", "country": "US", "state": "California" }, "AHH": { "city": "Amery", "country": "US", "state": "Wisconsin" }, "AHN": { "city": "Athens", "country": "US", "state": "Georgia" }, "AIA": { "city": "Alliance", "country": "US", "state": "Nebraska" }, "AID": { "city": "Anderson", "country": "US", "state": "Indiana" }, "AIK": { "city": "Aiken", "country": "US", "state": "South-Carolina" }, "AIO": { "city": "Atlantic", "country": "US", "state": "Iowa" }, "AIV": { "city": "Aliceville", "country": "US", "state": "Alabama" }, "AIZ": { "city": "Kaiser Lake Ozark", "country": "US", "state": "Missouri" }, "AKO": { "city": "Akron", "country": "US", "state": "Colorado" }, "AKC": { "city": "Akron", "country": "US", "state": "Ohio" }, "ALB": { "city": "Albany", "country": "US", "state": "New-York" }, "ALI": { "city": "Alice", "country": "US", "state": "Texas" }, "ALM": { "city": "Alamogordo", "country": "US", "state": "New-Mexico" }, "ALN": { "city": "Alton/St Louis", "country": "US", "state": "Illinois" }, "ALO": { "city": "Waterloo", "country": "US", "state": "Iowa" }, "ALS": { "city": "Alamosa", "country": "US", "state": "Colorado" }, "ALW": { "city": "Walla Walla", "country": "US", "state": "Washington" }, "AMA": { "city": "Amarillo", "country": "US", "state": "Texas" }, "AMN": { "city": "Alma", "country": "US", "state": "Michigan" }, "AMW": { "city": "Ames", "country": "US", "state": "Iowa" }, "ANB": { "city": "Anniston", "country": "US", "state": "Alabama" }, "AND": { "city": "Anderson", "country": "US", "state": "South-Carolina" }, "ANP": { "city": "Annapolis", "country": "US", "state": "Maryland" }, "ANQ": { "city": "Angola", "country": "US", "state": "Indiana" }, "ANW": { "city": "Ainsworth", "country": "US", "state": "Nebraska" }, "ANY": { "city": "Anthony", "country": "US", "state": "Kansas" }, "AOH": { "city": "Lima", "country": "US", "state": "Ohio" }, "AOO": { "city": "Altoona", "country": "US", "state": "Pennsylvania" }, "APA": { "city": "Denver", "country": "US", "state": "Colorado" }, "APC": { "city": "Napa", "country": "US", "state": "California" }, "APF": { "city": "Naples", "country": "US", "state": "Florida" }, "APG": { "city": "Aberdeen Proving Grounds(Aberdeen)", "country": "US", "state": "Maryland" }, "APH": { "city": "Fort A. P. Hill", "country": "US", "state": "Virginia" }, "APN": { "city": "Alpena", "country": "US", "state": "Michigan" }, "APT": { "city": "Jasper", "country": "US", "state": "Tennessee" }, "APV": { "city": "Apple Valley", "country": "US", "state": "California" }, "ARA": { "city": "New Iberia", "country": "US", "state": "Louisiana" }, "ARB": { "city": "Ann Arbor", "country": "US", "state": "Michigan" }, "ARG": { "city": "Walnut Ridge", "country": "US", "state": "Arkansas" }, "AUZ": { "city": "Chicago/Aurora", "country": "US", "state": "Illinois" }, "ART": { "city": "Watertown", "country": "US", "state": "New-York" }, "ARV": { "city": "Minocqua-Woodruff", "country": "US", "state": "Wisconsin" }, "BFT": { "city": "Beaufort", "country": "US", "state": "South-Carolina" }, "ASE": { "city": "Aspen", "country": "US", "state": "Colorado" }, "ASH": { "city": "Nashua", "country": "US", "state": "New-Hampshire" }, "ASL": { "city": "Marshall", "country": "US", "state": "Texas" }, "ASN": { "city": "Talladega", "country": "US", "state": "Alabama" }, "AST": { "city": "Astoria", "country": "US", "state": "Oregon" }, "ASX": { "city": "Ashland", "country": "US", "state": "Wisconsin" }, "ASY": { "city": "Ashley", "country": "US", "state": "North-Dakota" }, "ATL": { "city": "Atlanta", "country": "US", "state": "Georgia" }, "ATS": { "city": "Artesia", "country": "US", "state": "New-Mexico" }, "ATW": { "city": "Appleton", "country": "US", "state": "Wisconsin" }, "ATY": { "city": "Watertown", "country": "US", "state": "South-Dakota" }, "AUG": { "city": "Augusta", "country": "US", "state": "Maine" }, "AUM": { "city": "Austin", "country": "US", "state": "Minnesota" }, "AUN": { "city": "Auburn", "country": "US", "state": "California" }, "AUO": { "city": "Auburn", "country": "US", "state": "Alabama" }, "AUS": { "city": "Austin", "country": "US", "state": "Texas" }, "AUW": { "city": "Wausau", "country": "US", "state": "Wisconsin" }, "AVL": { "city": "Asheville", "country": "US", "state": "North-Carolina" }, "AVO": { "city": "Avon Park", "country": "US", "state": "Florida" }, "AVP": { "city": "Wilkes-Barre/Scranton", "country": "US", "state": "Pennsylvania" }, "AVW": { "city": "Tucson", "country": "US", "state": "Arizona" }, "AWM": { "city": "West Memphis", "country": "US", "state": "Arkansas" }, "AXG": { "city": "Algona", "country": "US", "state": "Iowa" }, "AXN": { "city": "Alexandria", "country": "US", "state": "Minnesota" }, "AXS": { "city": "Altus", "country": "US", "state": "Oklahoma" }, "AXV": { "city": "Wapakoneta", "country": "US", "state": "Ohio" }, "AXX": { "city": "Angel Fire", "country": "US", "state": "New-Mexico" }, "AYS": { "city": "Waycross", "country": "US", "state": "Georgia" }, "AZO": { "city": "Kalamazoo", "country": "US", "state": "Michigan" }, "BAB": { "city": "Marysville", "country": "US", "state": "California" }, "BAD": { "city": "Bossier City", "country": "US", "state": "Louisiana" }, "BAF": { "city": "Westfield/Springfield", "country": "US", "state": "Massachusetts" }, "BBB": { "city": "Benson", "country": "US", "state": "Minnesota" }, "BBD": { "city": "Brady", "country": "US", "state": "Texas" }, "BKG": { "city": "Branson", "country": "US", "state": "Missouri" }, "BTN": { "city": "Bennettsville", "country": "US", "state": "South-Carolina" }, "BBW": { "city": "Broken Bow", "country": "US", "state": "Nebraska" }, "BCB": { "city": "Blacksburg", "country": "US", "state": "Virginia" }, "BCE": { "city": "Bryce Canyon", "country": "US", "state": "Utah" }, "BCT": { "city": "Boca Raton", "country": "US", "state": "Florida" }, "BDE": { "city": "Baudette", "country": "US", "state": "Minnesota" }, "BDL": { "city": "Hartford", "country": "US", "state": "Connecticut" }, "BDR": { "city": "Bridgeport", "country": "US", "state": "Connecticut" }, "BEC": { "city": "Wichita", "country": "US", "state": "Kansas" }, "BED": { "city": "Bedford", "country": "US", "state": "Massachusetts" }, "BEH": { "city": "Benton Harbor", "country": "US", "state": "Michigan" }, "BFD": { "city": "Bradford", "country": "US", "state": "Pennsylvania" }, "BFF": { "city": "Scottsbluff", "country": "US", "state": "Nebraska" }, "BFI": { "city": "Seattle", "country": "US", "state": "Washington" }, "BFL": { "city": "Bakersfield", "country": "US", "state": "California" }, "BFM": { "city": "Mobile", "country": "US", "state": "Alabama" }, "BFR": { "city": "Bedford", "country": "US", "state": "Indiana" }, "BGD": { "city": "Borger", "country": "US", "state": "Texas" }, "BGE": { "city": "Bainbridge", "country": "US", "state": "Georgia" }, "BGM": { "city": "Binghamton", "country": "US", "state": "New-York" }, "BGR": { "city": "Bangor", "country": "US", "state": "Maine" }, "BHB": { "city": "Bar Harbor", "country": "US", "state": "Maine" }, "BHM": { "city": "Birmingham", "country": "US", "state": "Alabama" }, "BID": { "city": "Block Island", "country": "US", "state": "Rhode-Island" }, "BIE": { "city": "Beatrice", "country": "US", "state": "Nebraska" }, "BIF": { "city": "Fort Bliss/El Paso", "country": "US", "state": "Texas" }, "BIH": { "city": "Bishop", "country": "US", "state": "California" }, "BIL": { "city": "Billings", "country": "US", "state": "Montana" }, "BIS": { "city": "Bismarck", "country": "US", "state": "North-Dakota" }, "BIX": { "city": "Biloxi", "country": "US", "state": "Mississippi" }, "BJC": { "city": "Denver", "country": "US", "state": "Colorado" }, "BJI": { "city": "Bemidji", "country": "US", "state": "Minnesota" }, "BKD": { "city": "Breckenridge", "country": "US", "state": "Texas" }, "BKE": { "city": "Baker City", "country": "US", "state": "Oregon" }, "BFK": { "city": "Aurora", "country": "US", "state": "Colorado" }, "BKL": { "city": "Cleveland", "country": "US", "state": "Ohio" }, "BKT": { "city": "Blackstone", "country": "US", "state": "Virginia" }, "BKW": { "city": "Beckley", "country": "US", "state": "West-Virginia" }, "BKX": { "city": "Brookings", "country": "US", "state": "South-Dakota" }, "BLF": { "city": "Bluefield", "country": "US", "state": "Illinois" }, "BLH": { "city": "Blythe", "country": "US", "state": "California" }, "BLI": { "city": "Bellingham", "country": "US", "state": "Washington" }, "BLU": { "city": "Emigrant Gap", "country": "US", "state": "California" }, "BLV": { "city": "Belleville", "country": "US", "state": "Illinois" }, "BMC": { "city": "Brigham City", "country": "US", "state": "Utah" }, "BMG": { "city": "Bloomington", "country": "US", "state": "Alabama" }, "BMI": { "city": "Bloomington-Normal", "country": "US", "state": "Illinois" }, "BML": { "city": "Berlin", "country": "US", "state": "New-Hampshire" }, "BMT": { "city": "Beaumont", "country": "US", "state": "Texas" }, "BNA": { "city": "Nashville", "country": "US", "state": "Tennessee" }, "BNG": { "city": "Banning", "country": "US", "state": "California" }, "BNL": { "city": "Barnwell", "country": "US", "state": "South-Carolina" }, "BNO": { "city": "Burns", "country": "US", "state": "Oregon" }, "BNW": { "city": "Boone", "country": "US", "state": "Iowa" }, "BOI": { "city": "Boise", "country": "US", "state": "Idaho" }, "BOS": { "city": "Boston", "country": "US", "state": "Massachusetts" }, "BOW": { "city": "Bartow", "country": "US", "state": "Florida" }, "BGS": { "city": "Big Spring", "country": "US", "state": "Texas" }, "BPI": { "city": "Big Piney", "country": "US", "state": "Wyoming" }, "WMH": { "city": "Mountain Home", "country": "US", "state": "Arkansas" }, "BWM": { "city": "Bowman", "country": "US", "state": "North-Dakota" }, "BPT": { "city": "Beaumont/Port Arthur", "country": "US", "state": "Texas" }, "BQK": { "city": "Brunswick", "country": "US", "state": "Georgia" }, "BRD": { "city": "Brainerd", "country": "US", "state": "Minnesota" }, "BRL": { "city": "Burlington", "country": "US", "state": "Iowa" }, "BRO": { "city": "Brownsville", "country": "US", "state": "Texas" }, "BRY": { "city": "Bardstown", "country": "US", "state": "Kentucky" }, "BTF": { "city": "Bountiful", "country": "US", "state": "Utah" }, "BTL": { "city": "Battle Creek", "country": "US", "state": "Michigan" }, "BTM": { "city": "Butte", "country": "US", "state": "Montana" }, "BTR": { "city": "Baton Rouge", "country": "US", "state": "Louisiana" }, "BTV": { "city": "Burlington", "country": "US", "state": "Vermont" }, "BTY": { "city": "Beatty", "country": "US", "state": "Nevada" }, "BUB": { "city": "Burwell", "country": "US", "state": "Nebraska" }, "BUF": { "city": "Buffalo", "country": "US", "state": "New-York" }, "BUM": { "city": "Butler", "country": "US", "state": "Missouri" }, "BUR": { "city": "Burbank", "country": "US", "state": "California" }, "BFP": { "city": "Beaver Falls", "country": "US", "state": "Pennsylvania" }, "BVO": { "city": "Bartlesville", "country": "US", "state": "Oklahoma" }, "BLD": { "city": "Boulder City", "country": "US", "state": "Nevada" }, "BVX": { "city": "Batesville", "country": "US", "state": "Arkansas" }, "BVY": { "city": "Beverly", "country": "US", "state": "Massachusetts" }, "BWC": { "city": "Brawley", "country": "US", "state": "California" }, "BWD": { "city": "Brownwood", "country": "US", "state": "Texas" }, "BWG": { "city": "Bowling Green", "country": "US", "state": "Kentucky" }, "BWI": { "city": "Baltimore", "country": "US", "state": "Maryland" }, "WAH": { "city": "Wahpeton", "country": "US", "state": "North-Dakota" }, "BXA": { "city": "Bogalusa", "country": "US", "state": "Louisiana" }, "BXK": { "city": "Buckeye", "country": "US", "state": "Arizona" }, "NHZ": { "city": "Brunswick", "country": "US", "state": "Maine" }, "BYS": { "city": "Fort Irwin/Barstow", "country": "US", "state": "California" }, "BBC": { "city": "Bay City", "country": "US", "state": "Texas" }, "BZN": { "city": "Bozeman", "country": "US", "state": "Montana" }, "CAD": { "city": "Cadillac", "country": "US", "state": "Michigan" }, "CAE": { "city": "Columbia", "country": "US", "state": "South-Carolina" }, "CAK": { "city": "Akron", "country": "US", "state": "Ohio" }, "CAO": { "city": "Clayton", "country": "US", "state": "New-Mexico" }, "CBE": { "city": "Cumberland", "country": "US", "state": "West-Virginia" }, "CBF": { "city": "Council Bluffs", "country": "US", "state": "Iowa" }, "CBK": { "city": "Colby", "country": "US", "state": "Kansas" }, "CBM": { "city": "Columbus", "country": "US", "state": "Mississippi" }, "CCB": { "city": "Upland", "country": "US", "state": "California" }, "CCR": { "city": "Concord", "country": "US", "state": "California" }, "CCY": { "city": "Charles City", "country": "US", "state": "Iowa" }, "LLX": { "city": "Lyndonville", "country": "US", "state": "Vermont" }, "CDC": { "city": "Cedar City", "country": "US", "state": "Utah" }, "CDH": { "city": "Camden", "country": "US", "state": "Arkansas" }, "CDK": { "city": "Cedar Key", "country": "US", "state": "Florida" }, "CDN": { "city": "Camden", "country": "US", "state": "New-York" }, "CDR": { "city": "Chadron", "country": "US", "state": "Nebraska" }, "CDS": { "city": "Childress", "country": "US", "state": "Texas" }, "CDW": { "city": "Caldwell", "country": "US", "state": "New-Jersey" }, "CEC": { "city": "Crescent City", "country": "US", "state": "California" }, "CEF": { "city": "Springfield/Chicopee", "country": "US", "state": "Massachusetts" }, "CEZ": { "city": "Cortez", "country": "US", "state": "Colorado" }, "CGI": { "city": "Cape Girardeau", "country": "US", "state": "Missouri" }, "CHA": { "city": "Chattanooga", "country": "US", "state": "Tennessee" }, "CHO": { "city": "Charlottesville", "country": "US", "state": "Virginia" }, "CHS": { "city": "Charleston", "country": "US", "state": "South-Carolina" }, "CID": { "city": "Cedar Rapids", "country": "US", "state": "Iowa" }, "CIU": { "city": "Sault Ste Marie", "country": "US", "state": "Michigan" }, "CKB": { "city": "Clarksburg", "country": "US", "state": "West-Virginia" }, "CLE": { "city": "Cleveland", "country": "US", "state": "Ohio" }, "CLL": { "city": "College Station", "country": "US", "state": "Texas" }, "CLM": { "city": "Port Angeles", "country": "US", "state": "Washington" }, "CLT": { "city": "Charlotte", "country": "US", "state": "North-Carolina" }, "CMH": { "city": "Columbus", "country": "US", "state": "Ohio" }, "CMI": { "city": "Champaign/Urbana", "country": "US", "state": "Illinois" }, "CMX": { "city": "Hancock", "country": "US", "state": "Michigan" }, "CNM": { "city": "Carlsbad", "country": "US", "state": "New-Mexico" }, "COD": { "city": "Cody", "country": "US", "state": "Wyoming" }, "COS": { "city": "Colorado Springs", "country": "US", "state": "Colorado" }, "COU": { "city": "Columbia", "country": "US", "state": "Missouri" }, "CPR": { "city": "Casper", "country": "US", "state": "Wyoming" }, "CRO": { "city": "Corcoran", "country": "US", "state": "California" }, "CRP": { "city": "Corpus Christi", "country": "US", "state": "Texas" }, "CRW": { "city": "Charleston", "country": "US", "state": "West-Virginia" }, "CSG": { "city": "Columbus", "country": "US", "state": "Georgia" }, "CVG": { "city": "Hebron", "country": "US", "state": "Kentucky" }, "CVN": { "city": "Clovis", "country": "US", "state": "New-Mexico" }, "CWA": { "city": "Mosinee", "country": "US", "state": "Wisconsin" }, "KIP": { "city": "Wichita Falls", "country": "US", "state": "Texas" }, "CWF": { "city": "Lake Charles", "country": "US", "state": "Louisiana" }, "CYS": { "city": "Cheyenne", "country": "US", "state": "Wyoming" }, "DAA": { "city": "Fort Belvoir", "country": "US", "state": "Virginia" }, "DAB": { "city": "Daytona Beach", "country": "US", "state": "Florida" }, "DAG": { "city": "Daggett", "country": "US", "state": "California" }, "DAL": { "city": "Dallas", "country": "US", "state": "Texas" }, "DAN": { "city": "Danville", "country": "US", "state": "Virginia" }, "DAY": { "city": "Dayton", "country": "US", "state": "Ohio" }, "DBN": { "city": "Dublin", "country": "US", "state": "Georgia" }, "DBQ": { "city": "Dubuque", "country": "US", "state": "Iowa" }, "DCA": { "city": "Washington", "country": "US", "state": "Virginia" }, "DCU": { "city": "Decatur", "country": "US", "state": "Alabama" }, "DDC": { "city": "Dodge City", "country": "US", "state": "Kansas" }, "DEC": { "city": "Decatur", "country": "US", "state": "Illinois" }, "DEH": { "city": "Decorah", "country": "US", "state": "Iowa" }, "DEN": { "city": "Denver", "country": "US", "state": "Colorado" }, "DET": { "city": "Detroit", "country": "US", "state": "Michigan" }, "DFI": { "city": "Defiance", "country": "US", "state": "Ohio" }, "DFW": { "city": "Dallas-Fort Worth", "country": "US", "state": "Texas" }, "DGL": { "city": "Douglas", "country": "US", "state": "Arizona" }, "DGW": { "city": "Douglas", "country": "US", "state": "Wyoming" }, "DHN": { "city": "Dothan", "country": "US", "state": "Alabama" }, "DHT": { "city": "Dalhart", "country": "US", "state": "Texas" }, "DIK": { "city": "Dickinson", "country": "US", "state": "North-Dakota" }, "DLH": { "city": "Duluth", "country": "US", "state": "Minnesota" }, "DNL": { "city": "Augusta", "country": "US", "state": "Georgia" }, "DPA": { "city": "Chicago/West Chicago", "country": "US", "state": "Illinois" }, "DPG": { "city": "Dugway Proving Ground", "country": "US", "state": "Utah" }, "DRO": { "city": "Durango", "country": "US", "state": "Colorado" }, "DRT": { "city": "Del Rio", "country": "US", "state": "Texas" }, "DSM": { "city": "Des Moines", "country": "US", "state": "Iowa" }, "DSV": { "city": "Dansville", "country": "US", "state": "New-York" }, "DTA": { "city": "Delta", "country": "US", "state": "Utah" }, "DTL": { "city": "Detroit Lakes", "country": "US", "state": "Minnesota" }, "DTN": { "city": "Shreveport", "country": "US", "state": "Louisiana" }, "DSI": { "city": "Destin", "country": "US", "state": "Florida" }, "DTW": { "city": "Detroit", "country": "US", "state": "Michigan" }, "DUA": { "city": "Durant", "country": "US", "state": "Oklahoma" }, "DUC": { "city": "Duncan", "country": "US", "state": "Oklahoma" }, "DUG": { "city": "Douglas Bisbee", "country": "US", "state": "Arizona" }, "DUJ": { "city": "Dubois", "country": "US", "state": "Pennsylvania" }, "DVL": { "city": "Devils Lake", "country": "US", "state": "North-Dakota" }, "DVN": { "city": "Davenport", "country": "US", "state": "Iowa" }, "DVT": { "city": "Phoenix", "country": "US", "state": "Arizona" }, "DWH": { "city": "Houston", "country": "US", "state": "Texas" }, "DXR": { "city": "Danbury", "country": "US", "state": "Connecticut" }, "DYL": { "city": "Doylestown", "country": "US", "state": "Pennsylvania" }, "DYS": { "city": "Abilene", "country": "US", "state": "Texas" }, "CCG": { "city": "Crane", "country": "US", "state": "Texas" }, "BGQ": { "city": "Big Lake", "country": "US", "state": "Texas" }, "BGT": { "city": "Bagdad", "country": "US", "state": "Arizona" }, "EAR": { "city": "Kearney", "country": "US", "state": "Nebraska" }, "EAT": { "city": "Wenatchee", "country": "US", "state": "Washington" }, "EAU": { "city": "Eau Claire", "country": "US", "state": "Wisconsin" }, "EBS": { "city": "Webster City", "country": "US", "state": "Iowa" }, "ECG": { "city": "Elizabeth City", "country": "US", "state": "North-Carolina" }, "ECP": { "city": "Panama City Beach", "country": "US", "state": "Florida" }, "EEN": { "city": "Keene", "country": "US", "state": "New-Hampshire" }, "EFK": { "city": "Newport", "country": "US", "state": "Vermont" }, "EGE": { "city": "Eagle", "country": "US", "state": "Colorado" }, "EKO": { "city": "Elko", "country": "US", "state": "Nevada" }, "ELD": { "city": "El Dorado", "country": "US", "state": "Arkansas" }, "ELM": { "city": "Elmira/Corning", "country": "US", "state": "New-York" }, "ELP": { "city": "El Paso", "country": "US", "state": "Texas" }, "END": { "city": "Enid", "country": "US", "state": "Oklahoma" }, "ENV": { "city": "Wendover", "country": "US", "state": "Utah" }, "ERI": { "city": "Erie", "country": "US", "state": "Pennsylvania" }, "EUG": { "city": "Eugene", "country": "US", "state": "Oregon" }, "EVV": { "city": "Evansville", "country": "US", "state": "Indiana" }, "EVW": { "city": "Evanston", "country": "US", "state": "Wyoming" }, "EWB": { "city": "New Bedford", "country": "US", "state": "Massachusetts" }, "EWK": { "city": "Newton", "country": "US", "state": "Kansas" }, "EWN": { "city": "New Bern", "country": "US", "state": "North-Carolina" }, "EWR": { "city": "Newark", "country": "US", "state": "New-Jersey" }, "EYW": { "city": "Key West", "country": "US", "state": "Florida" }, "FAR": { "city": "Fargo", "country": "US", "state": "North-Dakota" }, "FAT": { "city": "Fresno", "country": "US", "state": "California" }, "FAY": { "city": "Fayetteville", "country": "US", "state": "North-Carolina" }, "FBG": { "city": "Fort Bragg", "country": "US", "state": "North-Carolina" }, "FCS": { "city": "Fort Carson", "country": "US", "state": "Colorado" }, "FHB": { "city": "Fernandina Beach", "country": "US", "state": "Florida" }, "FRD": { "city": "Friday Harbor", "country": "US", "state": "Washington" }, "FHU": { "city": "Fort Huachuca Sierra Vista", "country": "US", "state": "Arizona" }, "FLG": { "city": "Flagstaff", "country": "US", "state": "Arizona" }, "FLL": { "city": "Fort Lauderdale", "country": "US", "state": "Florida" }, "FLO": { "city": "Florence", "country": "US", "state": "South-Carolina" }, "FNT": { "city": "Flint", "country": "US", "state": "Michigan" }, "FOD": { "city": "Fort Dodge", "country": "US", "state": "Iowa" }, "FOE": { "city": "Topeka", "country": "US", "state": "Kansas" }, "FIL": { "city": "Fillmore", "country": "US", "state": "Utah" }, "FPR": { "city": "Fort Pierce", "country": "US", "state": "Florida" }, "FRH": { "city": "French Lick", "country": "US", "state": "Indiana" }, "FRI": { "city": "Fort Riley(Junction City)", "country": "US", "state": "Kansas" }, "FRM": { "city": "Fairmont", "country": "US", "state": "Minnesota" }, "FSD": { "city": "Sioux Falls", "country": "US", "state": "South-Dakota" }, "FSI": { "city": "Fort Sill", "country": "US", "state": "Oklahoma" }, "FSM": { "city": "Fort Smith", "country": "US", "state": "Arkansas" }, "FMS": { "city": "Fort Madison", "country": "US", "state": "Iowa" }, "FTW": { "city": "Fort Worth", "country": "US", "state": "Texas" }, "FUL": { "city": "Fullerton", "country": "US", "state": "California" }, "FWA": { "city": "Fort Wayne", "country": "US", "state": "Indiana" }, "FYV": { "city": "Fayetteville", "country": "US", "state": "Arkansas" }, "GAB": { "city": "Gabbs", "country": "US", "state": "Nevada" }, "GAG": { "city": "Gage", "country": "US", "state": "Oklahoma" }, "GBD": { "city": "Great Bend", "country": "US", "state": "Kansas" }, "GCC": { "city": "Gillette", "country": "US", "state": "Wyoming" }, "GCK": { "city": "Garden City", "country": "US", "state": "Kansas" }, "GCN": { "city": "Grand Canyon", "country": "US", "state": "Arizona" }, "GDV": { "city": "Glendive", "country": "US", "state": "Montana" }, "GDY": { "city": "Grundy", "country": "US", "state": "Virginia" }, "GEG": { "city": "Spokane", "country": "US", "state": "Washington" }, "GFK": { "city": "Grand Forks", "country": "US", "state": "North-Dakota" }, "GGG": { "city": "Longview", "country": "US", "state": "Texas" }, "GGW": { "city": "Glasgow", "country": "US", "state": "Montana" }, "IDH": { "city": "Grangeville", "country": "US", "state": "Idaho" }, "GJT": { "city": "Grand Junction", "country": "US", "state": "Colorado" }, "GLH": { "city": "Greenville", "country": "US", "state": "Mississippi" }, "GLS": { "city": "Galveston", "country": "US", "state": "Texas" }, "GNV": { "city": "Gainesville", "country": "US", "state": "Florida" }, "GON": { "city": "Groton (New London)", "country": "US", "state": "Connecticut" }, "FCA": { "city": "Kalispell", "country": "US", "state": "Montana" }, "GPT": { "city": "Gulfport", "country": "US", "state": "Mississippi" }, "GRB": { "city": "Green Bay", "country": "US", "state": "Wisconsin" }, "GRI": { "city": "Grand Island", "country": "US", "state": "Nebraska" }, "GRK": { "city": "Fort Hood/Killeen", "country": "US", "state": "Texas" }, "GRR": { "city": "Grand Rapids", "country": "US", "state": "Michigan" }, "GSO": { "city": "Greensboro", "country": "US", "state": "North-Carolina" }, "GSP": { "city": "Greenville", "country": "US", "state": "South-Carolina" }, "GTF": { "city": "Great Falls", "country": "US", "state": "Montana" }, "GTR": { "city": "Columbus/W Point/Starkville", "country": "US", "state": "Mississippi" }, "GUC": { "city": "Gunnison", "country": "US", "state": "Colorado" }, "GUP": { "city": "Gallup", "country": "US", "state": "New-Mexico" }, "GVT": { "city": "Greenville", "country": "US", "state": "California" }, "GYY": { "city": "Gary", "country": "US", "state": "Indiana" }, "HDN": { "city": "Hayden", "country": "US", "state": "Colorado" }, "HGR": { "city": "Hagerstown", "country": "US", "state": "Maryland" }, "HIB": { "city": "Hibbing", "country": "US", "state": "Minnesota" }, "HIO": { "city": "Portland", "country": "US", "state": "Oregon" }, "HKY": { "city": "Hickory", "country": "US", "state": "North-Carolina" }, "HLN": { "city": "Helena", "country": "US", "state": "Montana" }, "HON": { "city": "Huron", "country": "US", "state": "South-Dakota" }, "HOT": { "city": "Hot Springs", "country": "US", "state": "Iowa" }, "HOU": { "city": "Houston", "country": "US", "state": "Texas" }, "HPN": { "city": "White Plains", "country": "US", "state": "New-York" }, "HRL": { "city": "Harlingen", "country": "US", "state": "Texas" }, "HRO": { "city": "Harrison", "country": "US", "state": "Arkansas" }, "HNC": { "city": "Hatteras", "country": "US", "state": "North-Carolina" }, "HSV": { "city": "Huntsville", "country": "US", "state": "Alabama" }, "HTS": { "city": "Huntington", "country": "US", "state": "West-Virginia" }, "HUF": { "city": "Terre Haute", "country": "US", "state": "Indiana" }, "HVN": { "city": "New Haven", "country": "US", "state": "Connecticut" }, "HVR": { "city": "Havre", "country": "US", "state": "Montana" }, "HHH": { "city": "Hilton Head Island", "country": "US", "state": "South-Carolina" }, "HYA": { "city": "Hyannis", "country": "US", "state": "Massachusetts" }, "HYS": { "city": "Hays", "country": "US", "state": "Kansas" }, "IAB": { "city": "Wichita", "country": "US", "state": "Kansas" }, "IAD": { "city": "Washington", "country": "US", "state": "Virginia" }, "IAG": { "city": "Niagara Falls", "country": "US", "state": "New-York" }, "IAH": { "city": "Houston", "country": "US", "state": "Texas" }, "ICT": { "city": "Wichita", "country": "US", "state": "Kansas" }, "IDA": { "city": "Idaho Falls", "country": "US", "state": "Idaho" }, "XPR": { "city": "Pine Ridge", "country": "US", "state": "South-Dakota" }, "IFP": { "city": "Bullhead City", "country": "US", "state": "Arizona" }, "IGM": { "city": "Kingman", "country": "US", "state": "Arizona" }, "ILG": { "city": "Wilmington", "country": "US", "state": "Delaware" }, "ILM": { "city": "Wilmington", "country": "US", "state": "North-Carolina" }, "IMT": { "city": "Iron Mountain Kingsford", "country": "US", "state": "Michigan" }, "IND": { "city": "Indianapolis", "country": "US", "state": "Indiana" }, "INL": { "city": "International Falls", "country": "US", "state": "Minnesota" }, "INT": { "city": "Winston Salem", "country": "US", "state": "North-Carolina" }, "IPL": { "city": "Imperial", "country": "US", "state": "California" }, "IPT": { "city": "Williamsport", "country": "US", "state": "Pennsylvania" }, "IRK": { "city": "Kirksville", "country": "US", "state": "Missouri" }, "ISN": { "city": "Williston", "country": "US", "state": "North-Dakota" }, "ISP": { "city": "Islip", "country": "US", "state": "New-York" }, "ITH": { "city": "Ithaca", "country": "US", "state": "New-York" }, "AZA": { "city": "Phoenix", "country": "US", "state": "Arizona" }, "IYK": { "city": "Inyokern", "country": "US", "state": "California" }, "JAC": { "city": "Jackson", "country": "US", "state": "Wyoming" }, "JAN": { "city": "Jackson", "country": "US", "state": "Mississippi" }, "JAX": { "city": "Jacksonville", "country": "US", "state": "Florida" }, "JBR": { "city": "Jonesboro", "country": "US", "state": "Arkansas" }, "JFK": { "city": "New York", "country": "US", "state": "New-York" }, "JLN": { "city": "Joplin", "country": "US", "state": "Missouri" }, "JMS": { "city": "Jamestown", "country": "US", "state": "North-Dakota" }, "USA": { "city": "Concord", "country": "US", "state": "North-Carolina" }, "JST": { "city": "Johnstown", "country": "US", "state": "Pennsylvania" }, "BXS": { "city": "Borrego Springs", "country": "US", "state": "California" }, "LAF": { "city": "Lafayette", "country": "US", "state": "Indiana" }, "LAN": { "city": "Lansing", "country": "US", "state": "Michigan" }, "LAR": { "city": "Laramie", "country": "US", "state": "Wyoming" }, "LAS": { "city": "Las Vegas", "country": "US", "state": "Nevada" }, "LAW": { "city": "Lawton", "country": "US", "state": "Oklahoma" }, "LAX": { "city": "Los Angeles", "country": "US", "state": "California" }, "LBB": { "city": "Lubbock", "country": "US", "state": "Texas" }, "LBE": { "city": "Latrobe", "country": "US", "state": "Pennsylvania" }, "LBF": { "city": "North Platte", "country": "US", "state": "Nebraska" }, "LBL": { "city": "Liberal", "country": "US", "state": "Kansas" }, "LCH": { "city": "Lake Charles", "country": "US", "state": "Louisiana" }, "LEB": { "city": "Lebanon", "country": "US", "state": "New-Hampshire" }, "LEX": { "city": "Lexington", "country": "US", "state": "Kentucky" }, "LFT": { "city": "Lafayette", "country": "US", "state": "Louisiana" }, "LGA": { "city": "New York", "country": "US", "state": "New-York" }, "LGB": { "city": "Long Beach", "country": "US", "state": "California" }, "LIT": { "city": "Little Rock", "country": "US", "state": "Arkansas" }, "LMT": { "city": "Klamath Falls", "country": "US", "state": "Oregon" }, "LNK": { "city": "Lincoln", "country": "US", "state": "Montana" }, "LNS": { "city": "Lancaster", "country": "US", "state": "Pennsylvania" }, "BBX": { "city": "Philadelphia", "country": "US", "state": "Florida" }, "LRD": { "city": "Laredo", "country": "US", "state": "Texas" }, "LRU": { "city": "Las Cruces", "country": "US", "state": "New-Mexico" }, "LSE": { "city": "La Crosse", "country": "US", "state": "Wisconsin" }, "LUK": { "city": "Cincinnati", "country": "US", "state": "Ohio" }, "LWB": { "city": "Lewisburg", "country": "US", "state": "West-Virginia" }, "LWS": { "city": "Lewiston", "country": "US", "state": "Idaho" }, "LWT": { "city": "Lewistown", "country": "US", "state": "Montana" }, "LYH": { "city": "Lynchburg", "country": "US", "state": "Virginia" }, "MAF": { "city": "Midland", "country": "US", "state": "Texas" }, "MBS": { "city": "Saginaw", "country": "US", "state": "Michigan" }, "MCE": { "city": "Merced", "country": "US", "state": "California" }, "MCI": { "city": "Kansas City", "country": "US", "state": "Missouri" }, "MCN": { "city": "Macon", "country": "US", "state": "Georgia" }, "MCO": { "city": "Orlando", "country": "US", "state": "Florida" }, "MCW": { "city": "Mason City", "country": "US", "state": "Iowa" }, "MDH": { "city": "Carbondale/Murphysboro", "country": "US", "state": "Illinois" }, "MDT": { "city": "Harrisburg", "country": "US", "state": "Pennsylvania" }, "MDW": { "city": "Chicago", "country": "US", "state": "Illinois" }, "MEI": { "city": "Meridian", "country": "US", "state": "Mississippi" }, "MEM": { "city": "Memphis", "country": "US", "state": "Tennessee" }, "MFE": { "city": "Mc Allen", "country": "US", "state": "Texas" }, "MFR": { "city": "Medford", "country": "US", "state": "Oregon" }, "MGM": { "city": "Montgomery", "country": "US", "state": "Alabama" }, "MGW": { "city": "Morgantown", "country": "US", "state": "West-Virginia" }, "MHK": { "city": "Manhattan", "country": "US", "state": "Kansas" }, "MHT": { "city": "Manchester", "country": "US", "state": "New-Hampshire" }, "MHV": { "city": "Mojave", "country": "US", "state": "California" }, "MIA": { "city": "Miami", "country": "US", "state": "Florida" }, "MIE": { "city": "Muncie", "country": "US", "state": "Indiana" }, "MKC": { "city": "Kansas City", "country": "US", "state": "Missouri" }, "MKE": { "city": "Milwaukee", "country": "US", "state": "Wisconsin" }, "MKG": { "city": "Muskegon", "country": "US", "state": "Michigan" }, "MKL": { "city": "Jackson", "country": "US", "state": "Tennessee" }, "MLB": { "city": "Melbourne", "country": "US", "state": "Florida" }, "MLI": { "city": "Moline", "country": "US", "state": "Illinois" }, "MLS": { "city": "Miles City", "country": "US", "state": "Montana" }, "MLU": { "city": "Monroe", "country": "US", "state": "Louisiana" }, "MMH": { "city": "Mammoth Lakes", "country": "US", "state": "California" }, "MMU": { "city": "Morristown", "country": "US", "state": "New-Jersey" }, "MOB": { "city": "Mobile", "country": "US", "state": "Alabama" }, "MOD": { "city": "Modesto", "country": "US", "state": "California" }, "MOT": { "city": "Minot", "country": "US", "state": "North-Dakota" }, "RMY": { "city": "Mariposa", "country": "US", "state": "California" }, "MPV": { "city": "Barre/Montpelier", "country": "US", "state": "Vermont" }, "MRY": { "city": "Monterey", "country": "US", "state": "California" }, "MSL": { "city": "Muscle Shoals", "country": "US", "state": "Alabama" }, "MSN": { "city": "Madison", "country": "US", "state": "Wisconsin" }, "MSO": { "city": "Missoula", "country": "US", "state": "Montana" }, "MSP": { "city": "Minneapolis", "country": "US", "state": "Minnesota" }, "MSS": { "city": "Massena", "country": "US", "state": "New-York" }, "MSY": { "city": "New Orleans", "country": "US", "state": "Louisiana" }, "MTJ": { "city": "Montrose", "country": "US", "state": "Colorado" }, "MVL": { "city": "Morrisville", "country": "US", "state": "Vermont" }, "MVY": { "city": "Martha's Vineyard", "country": "US", "state": "Massachusetts" }, "MYR": { "city": "Myrtle Beach", "country": "US", "state": "South-Carolina" }, "DGN": { "city": "Dahlgren", "country": "US", "state": "Virginia" }, "NEL": { "city": "Lakehurst", "country": "US", "state": "New-Jersey" }, "NJK": { "city": "El Centro", "country": "US", "state": "California" }, "YUM": { "city": "Yuma", "country": "US", "state": "Arizona" }, "NVN": { "city": "Beckwourth", "country": "US", "state": "California" }, "ODC": { "city": "Oakdale", "country": "US", "state": "California" }, "EYR": { "city": "Yerington", "country": "US", "state": "Nevada" }, "OAJ": { "city": "Jacksonville", "country": "US", "state": "North-Carolina" }, "OAK": { "city": "Oakland", "country": "US", "state": "California" }, "OAR": { "city": "Marina", "country": "US", "state": "California" }, "OGS": { "city": "Ogdensburg", "country": "US", "state": "New-York" }, "OKC": { "city": "Oklahoma City", "country": "US", "state": "Oklahoma" }, "OLD": { "city": "Old Town", "country": "US", "state": "Maine" }, "OLM": { "city": "Olympia", "country": "US", "state": "Washington" }, "OMA": { "city": "Omaha", "country": "US", "state": "Nebraska" }, "ONT": { "city": "Ontario", "country": "US", "state": "California" }, "ORD": { "city": "Chicago", "country": "US", "state": "Illinois" }, "ORF": { "city": "Norfolk", "country": "US", "state": "Virginia" }, "ORH": { "city": "Worcester", "country": "US", "state": "Massachusetts" }, "ESD": { "city": "Eastsound", "country": "US", "state": "Washington" }, "OSH": { "city": "Oshkosh", "country": "US", "state": "Wisconsin" }, "OTH": { "city": "North Bend", "country": "US", "state": "Oregon" }, "OTM": { "city": "Ottumwa", "country": "US", "state": "Iowa" }, "OWB": { "city": "Owensboro", "country": "US", "state": "Kentucky" }, "BSQ": { "city": "Bisbee", "country": "US", "state": "Arizona" }, "HBK": { "city": "Holbrook", "country": "US", "state": "Arizona" }, "CWX": { "city": "Willcox", "country": "US", "state": "Arizona" }, "PAE": { "city": "Everett", "country": "US", "state": "Washington" }, "PAH": { "city": "Paducah", "country": "US", "state": "Kentucky" }, "PBG": { "city": "Plattsburgh", "country": "US", "state": "New-York" }, "PBI": { "city": "West Palm Beach", "country": "US", "state": "Florida" }, "PDK": { "city": "Atlanta", "country": "US", "state": "Georgia" }, "PDX": { "city": "Portland", "country": "US", "state": "Oregon" }, "PFC": { "city": "Pacific City", "country": "US", "state": "Oregon" }, "PFN": { "city": "Panama City", "country": "US", "state": "Florida" }, "PGA": { "city": "Page", "country": "US", "state": "Arizona" }, "PGV": { "city": "Greenville", "country": "US", "state": "North-Carolina" }, "PHF": { "city": "Newport News", "country": "US", "state": "Virginia" }, "ADR": { "city": "Andrews", "country": "US", "state": "South-Carolina" }, "PHL": { "city": "Philadelphia", "country": "US", "state": "Pennsylvania" }, "PHX": { "city": "Phoenix", "country": "US", "state": "Arizona" }, "PIA": { "city": "Peoria", "country": "US", "state": "Illinois" }, "PIB": { "city": "Hattiesburg/Laurel", "country": "US", "state": "Mississippi" }, "PIE": { "city": "St Petersburg-Clearwater", "country": "US", "state": "Florida" }, "PIH": { "city": "Pocatello", "country": "US", "state": "Idaho" }, "PIR": { "city": "Pierre", "country": "US", "state": "South-Dakota" }, "PIT": { "city": "Pittsburgh", "country": "US", "state": "Pennsylvania" }, "PKB": { "city": "Parkersburg", "country": "US", "state": "West-Virginia" }, "PLN": { "city": "Pellston", "country": "US", "state": "Michigan" }, "PMD": { "city": "Palmdale", "country": "US", "state": "California" }, "PNS": { "city": "Pensacola", "country": "US", "state": "Florida" }, "POU": { "city": "Poughkeepsie", "country": "US", "state": "New-York" }, "PQI": { "city": "Presque Isle", "country": "US", "state": "Maine" }, "PRC": { "city": "Prescott", "country": "US", "state": "Arizona" }, "PSC": { "city": "Pasco", "country": "US", "state": "Washington" }, "PSM": { "city": "Portsmouth", "country": "US", "state": "New-Hampshire" }, "PSP": { "city": "Palm Springs", "country": "US", "state": "California" }, "PTK": { "city": "Pontiac", "country": "US", "state": "Michigan" }, "PUB": { "city": "Pueblo", "country": "US", "state": "Colorado" }, "PUW": { "city": "Pullman/Moscow", "country": "US", "state": "Washington" }, "PVD": { "city": "Providence", "country": "US", "state": "Rhode-Island" }, "PWM": { "city": "Portland", "country": "US", "state": "Maine" }, "PWT": { "city": "Bremerton", "country": "US", "state": "Washington" }, "RAP": { "city": "Rapid City", "country": "US", "state": "South-Dakota" }, "RCT": { "city": "Reed City", "country": "US", "state": "Michigan" }, "RDD": { "city": "Redding", "country": "US", "state": "California" }, "RDG": { "city": "Reading", "country": "US", "state": "Pennsylvania" }, "RDM": { "city": "Redmond", "country": "US", "state": "Indiana" }, "RDU": { "city": "Raleigh/Durham", "country": "US", "state": "North-Carolina" }, "RFD": { "city": "Chicago/Rockford", "country": "US", "state": "Illinois" }, "RHI": { "city": "Rhinelander", "country": "US", "state": "Wisconsin" }, "RIC": { "city": "Richmond", "country": "US", "state": "Virginia" }, "RKD": { "city": "Rockland", "country": "US", "state": "Maine" }, "RKS": { "city": "Rock Springs", "country": "US", "state": "Wyoming" }, "RNO": { "city": "Reno", "country": "US", "state": "Nevada" }, "ROA": { "city": "Roanoke", "country": "US", "state": "Virginia" }, "ROC": { "city": "Rochester", "country": "US", "state": "New-York" }, "ROW": { "city": "Roswell", "country": "US", "state": "New-Mexico" }, "RQO": { "city": "El Reno", "country": "US", "state": "Oklahoma" }, "RST": { "city": "Rochester", "country": "US", "state": "Minnesota" }, "RSW": { "city": "Fort Myers", "country": "US", "state": "Florida" }, "RUT": { "city": "Rutland", "country": "US", "state": "Vermont" }, "RWI": { "city": "Rocky Mount", "country": "US", "state": "North-Carolina" }, "RXE": { "city": "Rexburg", "country": "US", "state": "Idaho" }, "AHM": { "city": "Ashland", "country": "US", "state": "Oregon" }, "BDY": { "city": "Bandon", "country": "US", "state": "Oregon" }, "SUO": { "city": "Sunriver", "country": "US", "state": "Oregon" }, "VSK": { "city": "Kennewick", "country": "US", "state": "Washington" }, "SAF": { "city": "Santa Fe", "country": "US", "state": "New-Mexico" }, "SAN": { "city": "San Diego", "country": "US", "state": "California" }, "SAS": { "city": "Salton City", "country": "US", "state": "California" }, "SAT": { "city": "San Antonio", "country": "US", "state": "Texas" }, "SAV": { "city": "Savannah", "country": "US", "state": "Georgia" }, "MQT": { "city": "Marquette", "country": "US", "state": "Michigan" }, "SBA": { "city": "Santa Barbara", "country": "US", "state": "California" }, "SBN": { "city": "South Bend", "country": "US", "state": "Indiana" }, "SBP": { "city": "San Luis Obispo", "country": "US", "state": "California" }, "SBY": { "city": "Salisbury", "country": "US", "state": "Maryland" }, "SDF": { "city": "Louisville", "country": "US", "state": "Kentucky" }, "SDY": { "city": "Sidney", "country": "US", "state": "Montana" }, "SEA": { "city": "Seattle", "country": "US", "state": "Washington" }, "SFB": { "city": "Orlando", "country": "US", "state": "Florida" }, "SFO": { "city": "San Francisco", "country": "US", "state": "California" }, "SGF": { "city": "Springfield", "country": "US", "state": "Missouri" }, "SGU": { "city": "St George", "country": "US", "state": "Utah" }, "SHD": { "city": "Staunton/Waynesboro/Harrisonburg", "country": "US", "state": "Virginia" }, "SHR": { "city": "Sheridan", "country": "US", "state": "Wyoming" }, "SHV": { "city": "Shreveport", "country": "US", "state": "Louisiana" }, "SJC": { "city": "San Jose", "country": "US", "state": "California" }, "SJT": { "city": "San Angelo", "country": "US", "state": "Texas" }, "SLC": { "city": "Salt Lake City", "country": "US", "state": "Utah" }, "SLK": { "city": "Saranac Lake", "country": "US", "state": "New-York" }, "SLN": { "city": "Salina", "country": "US", "state": "Kansas" }, "SMF": { "city": "Sacramento", "country": "US", "state": "California" }, "SMX": { "city": "Santa Maria", "country": "US", "state": "California" }, "SNA": { "city": "Santa Ana", "country": "US", "state": "California" }, "SOW": { "city": "Show Low", "country": "US", "state": "Arizona" }, "SPI": { "city": "Springfield", "country": "US", "state": "Illinois" }, "SPS": { "city": "Wichita Falls", "country": "US", "state": "Texas" }, "SRQ": { "city": "Sarasota/Bradenton", "country": "US", "state": "Florida" }, "STC": { "city": "St Cloud", "country": "US", "state": "Minnesota" }, "STL": { "city": "St Louis", "country": "US", "state": "Missouri" }, "STP": { "city": "St Paul", "country": "US", "state": "Minnesota" }, "STS": { "city": "Santa Rosa", "country": "US", "state": "California" }, "SUN": { "city": "Hailey", "country": "US", "state": "Idaho" }, "SUX": { "city": "Sioux City", "country": "US", "state": "Iowa" }, "SVC": { "city": "Silver City", "country": "US", "state": "New-Mexico" }, "SWF": { "city": "Newburgh", "country": "US", "state": "New-York" }, "SWO": { "city": "Stillwater", "country": "US", "state": "Oklahoma" }, "SYN": { "city": "Stanton", "country": "US", "state": "Minnesota" }, "SYR": { "city": "Syracuse", "country": "US", "state": "New-York" }, "SZN": { "city": "Santa Barbara", "country": "US", "state": "California" }, "SZP": { "city": "Santa Paula", "country": "US", "state": "California" }, "TAD": { "city": "Trinidad", "country": "US", "state": "Colorado" }, "TBN": { "city": "Fort Leonard Wood", "country": "US", "state": "Missouri" }, "TCL": { "city": "Tuscaloosa", "country": "US", "state": "Alabama" }, "TEX": { "city": "Telluride", "country": "US", "state": "Colorado" }, "TLH": { "city": "Tallahassee", "country": "US", "state": "Florida" }, "TMB": { "city": "Miami", "country": "US", "state": "Miami" }, "OTK": { "city": "Tillamook", "country": "US", "state": "Oregon" }, "ASQ": { "city": "Austin", "country": "US", "state": "Nevada" }, "TOL": { "city": "Toledo", "country": "US", "state": "Ohio" }, "TPA": { "city": "Tampa", "country": "US", "state": "Florida" }, "TPL": { "city": "Temple", "country": "US", "state": "Texas" }, "TRI": { "city": "Bristol/Johnson/Kingsport", "country": "US", "state": "Tennessee" }, "TTN": { "city": "Trenton", "country": "US", "state": "New-Jersey" }, "TUL": { "city": "Tulsa", "country": "US", "state": "Oklahoma" }, "TUP": { "city": "Tupelo", "country": "US", "state": "Mississippi" }, "TUS": { "city": "Tucson", "country": "US", "state": "Arizona" }, "TVC": { "city": "Traverse City", "country": "US", "state": "Michigan" }, "TVL": { "city": "South Lake Tahoe", "country": "US", "state": "California" }, "TWF": { "city": "Twin Falls", "country": "US", "state": "Idaho" }, "TXK": { "city": "Texarkana", "country": "US", "state": "Arkansas" }, "TYR": { "city": "Tyler", "country": "US", "state": "Texas" }, "TYS": { "city": "Knoxville", "country": "US", "state": "Tennessee" }, "BFG": { "city": "Glen Canyon Natl Rec Area", "country": "US", "state": "Utah" }, "RVR": { "city": "Green River", "country": "US", "state": "Utah" }, "ICS": { "city": "Cascade", "country": "US", "state": "Idaho" }, "UIN": { "city": "Quincy", "country": "US", "state": "Illinois" }, "ATO": { "city": "Athens/Albany", "country": "US", "state": "Ohio" }, "SCE": { "city": "State College", "country": "US", "state": "Pennsylvania" }, "VAD": { "city": "Valdosta", "country": "US", "state": "Georgia" }, "VCT": { "city": "Victoria", "country": "US", "state": "Texas" }, "VKX": { "city": "Friendly", "country": "US", "state": "Maryland" }, "VLD": { "city": "Valdosta", "country": "US", "state": "Georgia" }, "VPS": { "city": "Valparaiso", "country": "US", "state": "Florida" }, "VRB": { "city": "Vero Beach", "country": "US", "state": "Florida" }, "VSF": { "city": "Springfield", "country": "US", "state": "Vermont" }, "WAL": { "city": "Wallops Island", "country": "US", "state": "Virginia" }, "WAY": { "city": "Waynesburg", "country": "US", "state": "Pennsylvania" }, "WRI": { "city": "Wrightstown", "country": "US", "state": "New-Jersey" }, "WRL": { "city": "Worland", "country": "US", "state": "Wyoming" }, "XNA": { "city": "Fayetteville/Springdale/", "country": "US", "state": "Arkansas" }, "YIP": { "city": "Detroit", "country": "US", "state": "Michigan" }, "YKM": { "city": "Yakima", "country": "US", "state": "Washington" }, "YNG": { "city": "Youngstown/Warren", "country": "US", "state": "Ohio" }, "ZPH": { "city": "Zephyrhills", "country": "US", "state": "Florida" }, "ZZV": { "city": "Zanesville", "country": "US", "state": "Ohio" }, "TIA": { "city": "Tirana", "country": "AL", "state": "" }, "BOJ": { "city": "Burgas", "country": "BG", "state": "Burgas" }, "GOZ": { "city": "Gorna Oryahovitsa", "country": "BG", "state": "Veliko-Turnovo" }, "JAM": { "city": "Yambol", "country": "BG", "state": "Burgas" }, "PDV": { "city": "Plovdiv", "country": "BG", "state": "Plovdiv" }, "PVN": { "city": "Dolna Mitropoliya", "country": "BG", "state": "Lovech" }, "SOF": { "city": "Sofia", "country": "BG", "state": "Sofia-Capital" }, "SLS": { "city": "Silistra", "country": "BG", "state": "Razgrad" }, "SZR": { "city": "Stara Zagora", "country": "BG", "state": "Khaskovo" }, "VID": { "city": "Vidin", "country": "BG", "state": "Montana" }, "VAR": { "city": "Varna", "country": "BG", "state": "Varna" }, "ECN": { "city": "Nicosia", "country": "CY", "state": "Nicosia" }, "LCA": { "city": "Larnarca", "country": "CY", "state": "Larnaka" }, "PFO": { "city": "Paphos", "country": "CY", "state": "Pafos" }, "AKT": { "city": "", "country": "CY", "state": "" }, "DBV": { "city": "Dubrovnik", "country": "HR", "state": "Dubrovacko-Neretvanska" }, "LSZ": { "city": "Losinj", "country": "HR", "state": "Primorsko-Goranska" }, "OSI": { "city": "Osijek", "country": "HR", "state": "Osjecko-Baranjska" }, "PUY": { "city": "Pula", "country": "HR", "state": "Istria" }, "RJK": { "city": "Rijeka", "country": "HR", "state": "Primorsko-Goranska" }, "BWK": { "city": "Brac Island", "country": "HR", "state": "Split-Dalmatia" }, "SPU": { "city": "Split", "country": "HR", "state": "Split-Dalmatia" }, "ZAG": { "city": "Zagreb", "country": "HR", "state": "Zagrebacka" }, "ZAD": { "city": "Zadar", "country": "HR", "state": "Zadarska" }, "ABC": { "city": "Albacete", "country": "ES", "state": "Castille-La-Mancha" }, "ALC": { "city": "Alicante", "country": "ES", "state": "Valencia" }, "LEI": { "city": "Almeria", "country": "ES", "state": "Andalusia" }, "OVD": { "city": "Ranon", "country": "ES", "state": "Asturias" }, "ODB": { "city": "Cordoba", "country": "ES", "state": "Andalusia" }, "BIO": { "city": "Bilbao", "country": "ES", "state": "Basque-Country" }, "RGS": { "city": "Burgos", "country": "ES", "state": "Castille-and-Leon" }, "BCN": { "city": "Barcelona", "country": "ES", "state": "Catalonia" }, "BJZ": { "city": "Badajoz", "country": "ES", "state": "Extremadura" }, "CDT": { "city": "Castellon de La Plana", "country": "ES", "state": "Valencia" }, "LCG": { "city": "Culleredo", "country": "ES", "state": "Galicia" }, "ECV": { "city": "Madrid", "country": "ES", "state": "Madrid" }, "ILD": { "city": "Lleida", "country": "ES", "state": "Catalonia" }, "GRO": { "city": "Girona", "country": "ES", "state": "Catalonia" }, "GRX": { "city": "Granada", "country": "ES", "state": "Andalusia" }, "IBZ": { "city": "Ibiza", "country": "ES", "state": "Balearic-Islands" }, "XRY": { "city": "Jerez de la Forntera", "country": "ES", "state": "Andalusia" }, "MJV": { "city": "San Javier", "country": "ES", "state": "Murcia" }, "QSA": { "city": "Sabadell", "country": "ES", "state": "Catalonia" }, "LEN": { "city": "Leon", "country": "ES", "state": "Castille-and-Leon" }, "RJL": { "city": "Logrono", "country": "ES", "state": "La-Rioja" }, "MAD": { "city": "Madrid", "country": "ES", "state": "Madrid" }, "HEV": { "city": "Gibraleon", "country": "ES", "state": "Andalusia" }, "AGP": { "city": "Malaga", "country": "ES", "state": "Andalusia" }, "MAH": { "city": "Menorca Island", "country": "ES", "state": "Balearic-Islands" }, "RMU": { "city": "Corvera", "country": "ES", "state": "Corvera" }, "OZP": { "city": "Moron", "country": "ES", "state": "Andalusia" }, "PMI": { "city": "Palma De Mallorca", "country": "ES", "state": "Balearic-Islands" }, "PNA": { "city": "Pamplona", "country": "ES", "state": "Navarre" }, "REU": { "city": "Reus", "country": "ES", "state": "Catalonia" }, "ROZ": { "city": "Rota", "country": "ES", "state": "Andalusia" }, "SLM": { "city": "Salamanca", "country": "ES", "state": "Castille-and-Leon" }, "EAS": { "city": "Hondarribia", "country": "ES", "state": "Basque-Country" }, "SCQ": { "city": "Santiago de Compostela", "country": "ES", "state": "Galicia" }, "LEU": { "city": "Montferrer / Castellbo", "country": "ES", "state": "Catalonia" }, "TOJ": { "city": "Madrid", "country": "ES", "state": "Madrid" }, "VLC": { "city": "Valencia", "country": "ES", "state": "Valencia" }, "VLL": { "city": "Valladolid", "country": "ES", "state": "Castille-and-Leon" }, "VIT": { "city": "Alava", "country": "ES", "state": "Basque-Country" }, "VGO": { "city": "Vigo", "country": "ES", "state": "Galicia" }, "SDR": { "city": "Santander", "country": "ES", "state": "Cantabria" }, "ZAZ": { "city": "Zaragoza", "country": "ES", "state": "Aragon" }, "SVQ": { "city": "Sevilla", "country": "ES", "state": "Andalusia" }, "DPE": { "city": "Dieppe", "country": "FR", "state": "Normandy" }, "CQF": { "city": "Marck", "country": "FR", "state": "Hauts-de-France" }, "XCP": { "city": "Compiegne", "country": "FR", "state": "Hauts-de-France" }, "XLN": { "city": "Laon-Chambry", "country": "FR", "state": "Hauts-de-France" }, "XSJ": { "city": "Peronne/Saint-Quentin", "country": "FR", "state": "Hauts-de-France" }, "XDK": { "city": "Les Moeres", "country": "FR", "state": "Hauts-de-France" }, "BYF": { "city": "Albert/Bray", "country": "FR", "state": "Hauts-de-France" }, "LTQ": { "city": "Le Touquet-Paris-Plage", "country": "FR", "state": "Hauts-de-France" }, "XVS": { "city": "Valenciennes/Denain", "country": "FR", "state": "Hauts-de-France" }, "QAM": { "city": "Amiens/Glisy", "country": "FR", "state": "Hauts-de-France" }, "AGF": { "city": "Agen/La Garenne", "country": "FR", "state": "Nouvelle-Aquitaine" }, "BOD": { "city": "Bordeaux/Merignac", "country": "FR", "state": "Nouvelle-Aquitaine" }, "EGC": { "city": "Bergerac/Roumaniere", "country": "FR", "state": "Nouvelle-Aquitaine" }, "CNG": { "city": "Cognac/Chateaubernard", "country": "FR", "state": "Nouvelle-Aquitaine" }, "LRH": { "city": "La Rochelle/Ile de Re", "country": "FR", "state": "Nouvelle-Aquitaine" }, "PIS": { "city": "Poitiers/Biard", "country": "FR", "state": "Nouvelle-Aquitaine" }, "MCU": { "city": "Montlucon/Gueret", "country": "FR", "state": "Nouvelle-Aquitaine" }, "LIG": { "city": "Limoges/Bellegarde", "country": "FR", "state": "Nouvelle-Aquitaine" }, "XMJ": { "city": "Mont-de-Marsan", "country": "FR", "state": "Nouvelle-Aquitaine" }, "NIT": { "city": "Niort/Souche", "country": "FR", "state": "Nouvelle-Aquitaine" }, "TLS": { "city": "Toulouse/Blagnac", "country": "FR", "state": "Occitanie" }, "PUF": { "city": "Pau/Pyrenees (Uzein)", "country": "FR", "state": "Nouvelle-Aquitaine" }, "LDE": { "city": "Tarbes/Lourdes/Pyrenees", "country": "FR", "state": "Occitanie" }, "ANG": { "city": "Angouleme/Brie/Champniers", "country": "FR", "state": "Nouvelle-Aquitaine" }, "BVE": { "city": "Brive-la-Gaillarde", "country": "FR", "state": "Nouvelle-Aquitaine" }, "PGX": { "city": "Perigueux/Bassillac", "country": "FR", "state": "Nouvelle-Aquitaine" }, "XDA": { "city": "Perigueux", "country": "FR", "state": "Nouvelle-Aquitaine" }, "BIQ": { "city": "Biarritz/Anglet/Bayonne", "country": "FR", "state": "Nouvelle-Aquitaine" }, "XCX": { "city": "Biarritz", "country": "FR", "state": "Nouvelle-Aquitaine" }, "ZAO": { "city": "Cahors/Lalbenque", "country": "FR", "state": "Occitanie" }, "XGT": { "city": "Cahors", "country": "FR", "state": "Nouvelle-Aquitaine" }, "XAC": { "city": "Arcachon/La Teste-de-Buch", "country": "FR", "state": "Nouvelle-Aquitaine" }, "LBI": { "city": "Albi/Le Sequestre", "country": "FR", "state": "Occitanie" }, "DCM": { "city": "Castres/Mazamet", "country": "FR", "state": "Occitanie" }, "RDZ": { "city": "Rodez/Marcillac", "country": "FR", "state": "Occitanie" }, "RYN": { "city": "Royan/Medis", "country": "FR", "state": "Nouvelle-Aquitaine" }, "XMW": { "city": "Montauban", "country": "FR", "state": "Occitanie" }, "XLR": { "city": "Libourne/Artigues-de-Lussac", "country": "FR", "state": "Nouvelle-Aquitaine" }, "RCO": { "city": "Rochefort/Saint-Agnant", "country": "FR", "state": "Nouvelle-Aquitaine" }, "XSL": { "city": "Rochefort", "country": "FR", "state": "Nouvelle-Aquitaine" }, "XTB": { "city": "Rochefort", "country": "FR", "state": "Occitanie" }, "IDY": { "city": "Ile d'Yeu", "country": "FR", "state": "Pays-de-la-Loire" }, "CMR": { "city": "Colmar/Houssen", "country": "FR", "state": "Grand-Est" }, "XBV": { "city": "Beaune/Challanges", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "DLE": { "city": "Dole/Tavaux", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "XVN": { "city": "Verdun/Le Rozelier", "country": "FR", "state": "Grand-Est" }, "MVV": { "city": "Verdun", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "OBS": { "city": "Aubenas/Ardeche Meridional", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "LPY": { "city": "Le Puy/Loudes", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "AHZ": { "city": "Bourg", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "ETZ": { "city": "Metz / Nancy", "country": "FR", "state": "Grand-Est" }, "ANE": { "city": "Angers/Marce", "country": "FR", "state": "Pays-de-la-Loire" }, "XAV": { "city": "Angers", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "BIA": { "city": "Bastia/Poretta", "country": "FR", "state": "Corsica" }, "CLY": { "city": "Calvi/Sainte-Catherine", "country": "FR", "state": "Corsica" }, "FSC": { "city": "Figari Sud-Corse", "country": "FR", "state": "Corsica" }, "AJA": { "city": "Ajaccio/Napoleon Bonaparte", "country": "FR", "state": "Corsica" }, "PRP": { "city": "Propriano", "country": "FR", "state": "Corsica" }, "SOZ": { "city": "Solenzara", "country": "FR", "state": "Corsica" }, "MFX": { "city": "Ajaccio", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "AUF": { "city": "Auxerre/Branches", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "CMF": { "city": "Chambery/Aix-les-Bains", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "CFE": { "city": "Clermont-Ferrand/Auvergne", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "BOU": { "city": "Bourges", "country": "FR", "state": "Centre" }, "QNJ": { "city": "Annemasse", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "CVF": { "city": "Courcheval", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "LYS": { "city": "Lyon", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "QNX": { "city": "Macon/Charnay", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "SYT": { "city": "Saint-Yan", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "RNE": { "city": "Roanne/Renaison", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "NCY": { "city": "Annecy/Meythet", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "XMK": { "city": "Annecy", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "GNB": { "city": "Grenoble/Saint-Geoirs", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "VAF": { "city": "Valence/Chabeuil", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "VHY": { "city": "Vichy/Charmeil", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "AUR": { "city": "Aurillac", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "CHR": { "city": "Chateauroux/Deols", "country": "FR", "state": "Centre" }, "LYN": { "city": "Lyon/Bron", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "CEQ": { "city": "Cannes/Mandelieu", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "EBU": { "city": "Saint-Etienne/Boutheon", "country": "FR", "state": "Auvergne-Rhone-Alpes" }, "QIE": { "city": "Istres/Le Tube", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "CCF": { "city": "Carcassonne/Salvaza", "country": "FR", "state": "Occitanie" }, "MRS": { "city": "Marseille", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "NCE": { "city": "Nice", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "XOG": { "city": "Orange/Caritat", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "PGF": { "city": "Perpignan/Rivesaltes", "country": "FR", "state": "Occitanie" }, "CTT": { "city": "Le Castellet", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "BAE": { "city": "Le Castellet", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "XAS": { "city": "Ales/Deaux", "country": "FR", "state": "Occitanie" }, "MPL": { "city": "Montpellier/Mediterranee", "country": "FR", "state": "Occitanie" }, "BZR": { "city": "Beziers/Vias", "country": "FR", "state": "Occitanie" }, "AVN": { "city": "Avignon/Caumont", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "GAT": { "city": "Avignon", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "MEN": { "city": "Mende/Brenoux", "country": "FR", "state": "Occitanie" }, "SCP": { "city": "Mende", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "BVA": { "city": "Beauvais/Tille", "country": "FR", "state": "Hauts-de-France" }, "XSU": { "city": "Saumur/Saint-Florent", "country": "FR", "state": "Pays-de-la-Loire" }, "EVX": { "city": "Evreux/Fauville", "country": "FR", "state": "Normandy" }, "XAN": { "city": "Evreux", "country": "FR", "state": "Normandy" }, "LEH": { "city": "Le Havre/Octeville", "country": "FR", "state": "Normandy" }, "XAB": { "city": "Abbeville (Buigny/Saint-Maclou)", "country": "FR", "state": "Hauts-de-France" }, "ORE": { "city": "Orleans/Bricy", "country": "FR", "state": "Centre" }, "XCR": { "city": "Chalons/Vatry", "country": "FR", "state": "Grand-Est" }, "LSO": { "city": "Les Sables-d'Olonne", "country": "FR", "state": "Pays-de-la-Loire" }, "URO": { "city": "Rouen/Vallee de Seine", "country": "FR", "state": "Normandy" }, "XBQ": { "city": "Blois/Le Breuil", "country": "FR", "state": "Centre" }, "QTJ": { "city": "Blois", "country": "FR", "state": "Centre" }, "TUF": { "city": "Tours/Val de Loire (Loire Valley)", "country": "FR", "state": "Centre" }, "CET": { "city": "Cholet/Le Pontreau", "country": "FR", "state": "Pays-de-la-Loire" }, "LVA": { "city": "Laval/Entrammes", "country": "FR", "state": "Pays-de-la-Loire" }, "LBG": { "city": "Paris", "country": "FR", "state": "Ile-de-France" }, "CSF": { "city": "Creil", "country": "FR", "state": "Hauts-de-France" }, "CDG": { "city": "Paris", "country": "FR", "state": "Ile-de-France" }, "TNF": { "city": "Toussus-le-Noble", "country": "FR", "state": "Ile-de-France" }, "ORY": { "city": "Paris", "country": "FR", "state": "Ile-de-France" }, "POX": { "city": "Pontoise", "country": "FR", "state": "Ile-de-France" }, "VIY": { "city": "Villacoublay/Velizy", "country": "FR", "state": "Ile-de-France" }, "QYR": { "city": "Troyes/Barberey", "country": "FR", "state": "Grand-Est" }, "NVS": { "city": "Nevers/Fourchambault", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "XCB": { "city": "Cambrai/Epinoy", "country": "FR", "state": "Hauts-de-France" }, "XME": { "city": "Maubeuge/Elesmes", "country": "FR", "state": "Hauts-de-France" }, "LIL": { "city": "Lille/Lesquin", "country": "FR", "state": "Hauts-de-France" }, "HZB": { "city": "Merville/Calonne", "country": "FR", "state": "Hauts-de-France" }, "XCZ": { "city": "Charleville-Mezieres", "country": "FR", "state": "Grand-Est" }, "XVO": { "city": "Vesoul/Frotey", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "BES": { "city": "Brest/Guipavas", "country": "FR", "state": "Brittany" }, "CER": { "city": "Cherbourg/Maupertus", "country": "FR", "state": "Normandy" }, "DNR": { "city": "Dinard/Pleurtuit/Saint-Malo", "country": "FR", "state": "Brittany" }, "LBY": { "city": "La Baule-Escoublac", "country": "FR", "state": "Pays-de-la-Loire" }, "GFR": { "city": "Granville", "country": "FR", "state": "Normandy" }, "DOL": { "city": "Deauville", "country": "FR", "state": "Normandy" }, "LRT": { "city": "Lorient/Lann/Bihoue", "country": "FR", "state": "Brittany" }, "EDM": { "city": "La Roche-sur-Yon/Les Ajoncs", "country": "FR", "state": "Pays-de-la-Loire" }, "LDV": { "city": "Landivisiau", "country": "FR", "state": "Brittany" }, "CFR": { "city": "Caen/Carpiquet", "country": "FR", "state": "Normandy" }, "LME": { "city": "Le Mans/Arnage", "country": "FR", "state": "Pays-de-la-Loire" }, "RNS": { "city": "Rennes/Saint-Jacques", "country": "FR", "state": "Brittany" }, "LAI": { "city": "Lannion", "country": "FR", "state": "Brittany" }, "UIP": { "city": "Quimper/Pluguffan", "country": "FR", "state": "Brittany" }, "NTE": { "city": "Nantes", "country": "FR", "state": "Pays-de-la-Loire" }, "SBK": { "city": "Saint-Brieuc/Armor", "country": "FR", "state": "Brittany" }, "MXN": { "city": "Morlaix/Ploujean", "country": "FR", "state": "Brittany" }, "VNE": { "city": "Vannes/Meucon", "country": "FR", "state": "Brittany" }, "SNR": { "city": "Saint-Nazaire/Montoir", "country": "FR", "state": "Pays-de-la-Loire" }, "QBQ": { "city": "St Nazaire", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "BSL": { "city": "Bale/Mulhouse", "country": "FR", "state": "Grand-Est" }, "DIJ": { "city": "Dijon/Longvic", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "MZM": { "city": "Metz/Frescaty", "country": "FR", "state": "Grand-Est" }, "EPL": { "city": "Epinal/Mirecourt", "country": "FR", "state": "Grand-Est" }, "XMF": { "city": "Montbeliard/Courcelles", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "ENC": { "city": "Nancy/Essey", "country": "FR", "state": "Grand-Est" }, "BOR": { "city": "Belfort", "country": "FR", "state": "Bourgogne-Franche-Comte" }, "RHE": { "city": "Reims/Champagne", "country": "FR", "state": "Grand-Est" }, "SXB": { "city": "Strasbourg", "country": "FR", "state": "Grand-Est" }, "VTL": { "city": "Luxeuil", "country": "FR", "state": "Grand-Est" }, "XHE": { "city": "Toulon/Hyeres/Le Palyvestre", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "FNI": { "city": "Nimes/Garons", "country": "FR", "state": "Occitanie" }, "LTT": { "city": "La Mole", "country": "FR", "state": "Provence-Alpes-Cote-d'Azur" }, "MQC": { "city": "Miquelon", "country": "PM", "state": "Miquelon-Langlade" }, "FSP": { "city": "Saint-Pierre", "country": "PM", "state": "" }, "PYR": { "city": "Andravida", "country": "GR", "state": "West-Greece" }, "AGQ": { "city": "Agrinion", "country": "GR", "state": "West-Greece" }, "AXD": { "city": "Alexandroupolis", "country": "GR", "state": "East-Macedonia-and-Thrace" }, "HEW": { "city": "Athens", "country": "GR", "state": "Attica" }, "ATH": { "city": "Athens", "country": "GR", "state": "Attica" }, "VOL": { "city": "Nea Anchialos", "country": "GR", "state": "Thessaly" }, "JKH": { "city": "Chios Island", "country": "GR", "state": "North-Aegean" }, "PKH": { "city": "Porto Cheli", "country": "GR", "state": "Peloponnese" }, "JIK": { "city": "Ikaria Island", "country": "GR", "state": "North-Aegean" }, "IOA": { "city": "Ioannina", "country": "GR", "state": "Epirus" }, "HER": { "city": "Heraklion", "country": "GR", "state": "Crete" }, "KSO": { "city": "Kastoria", "country": "GR", "state": "West-Macedonia" }, "KIT": { "city": "Kithira Island", "country": "GR", "state": "Attica" }, "EFL": { "city": "Kefallinia Island", "country": "GR", "state": "Ionian-Islands" }, "KZS": { "city": "Kastelorizo Island", "country": "GR", "state": "South-Aegean" }, "KLX": { "city": "Kalamata", "country": "GR", "state": "Peloponnese" }, "KGS": { "city": "Kos Island", "country": "GR", "state": "South-Aegean" }, "AOK": { "city": "Karpathos Island", "country": "GR", "state": "South-Aegean" }, "CFU": { "city": "Kerkyra Island", "country": "GR", "state": "Ionian-Islands" }, "KSJ": { "city": "Kasos Island", "country": "GR", "state": "South-Aegean" }, "KVA": { "city": "Kavala", "country": "GR", "state": "East-Macedonia-and-Thrace" }, "KZI": { "city": "Kozani", "country": "GR", "state": "West-Macedonia" }, "LRS": { "city": "Leros Island", "country": "GR", "state": "South-Aegean" }, "LXS": { "city": "Limnos Island", "country": "GR", "state": "North-Aegean" }, "LRA": { "city": "Larisa", "country": "GR", "state": "Thessaly" }, "JMK": { "city": "Mykonos Island", "country": "GR", "state": "South-Aegean" }, "MLO": { "city": "Milos Island", "country": "GR", "state": "South-Aegean" }, "MJT": { "city": "Mytilene", "country": "GR", "state": "North-Aegean" }, "JNX": { "city": "Naxos Island", "country": "GR", "state": "South-Aegean" }, "PAS": { "city": "Paros Island", "country": "GR", "state": "South-Aegean" }, "JTY": { "city": "Astypalaia Island", "country": "GR", "state": "South-Aegean" }, "PVK": { "city": "Preveza/Lefkada", "country": "GR", "state": "West-Greece" }, "RHO": { "city": "Rodes Island", "country": "GR", "state": "South-Aegean" }, "GPA": { "city": "Patras", "country": "GR", "state": "West-Greece" }, "CHQ": { "city": "Souda", "country": "GR", "state": "Crete" }, "JSI": { "city": "Skiathos", "country": "GR", "state": "Thessaly" }, "SMI": { "city": "Samos Island", "country": "GR", "state": "North-Aegean" }, "JSY": { "city": "Syros Island", "country": "GR", "state": "South-Aegean" }, "SPJ": { "city": "Sparti", "country": "GR", "state": "Peloponnese" }, "JTR": { "city": "Santorini Island", "country": "GR", "state": "South-Aegean" }, "JSH": { "city": "Crete Island", "country": "GR", "state": "Crete" }, "SKU": { "city": "Skiros Island", "country": "GR", "state": "Central-Greece" }, "SKG": { "city": "Thessaloniki", "country": "GR", "state": "Central-Macedonia" }, "ZTH": { "city": "Zakynthos Island", "country": "GR", "state": "Ionian-Islands" }, "BUD": { "city": "Budapest", "country": "HU", "state": "Budapest" }, "DEB": { "city": "Debrecen", "country": "HU", "state": "Hajdu-Bihar" }, "MCQ": { "city": "Miskolc", "country": "HU", "state": "Borsod-Abauj-Zemplen" }, "PEV": { "city": "Pecs-Pogany", "country": "HU", "state": "Baranya" }, "QGY": { "city": "Gyor", "country": "HU", "state": "Gyor-Moson-Sopron" }, "SOB": { "city": "Sarmellek", "country": "HU", "state": "Zala" }, "TZR": { "city": "Taszar", "country": "HU", "state": "Somogy" }, "QZD": { "city": "Szeged", "country": "HU", "state": "Csongrad" }, "CRV": { "city": "Crotone", "country": "IT", "state": "Calabria" }, "BRI": { "city": "Bari", "country": "IT", "state": "Apulia" }, "FOG": { "city": "Foggia", "country": "IT", "state": "Apulia" }, "TAR": { "city": "Grottaglie", "country": "IT", "state": "Apulia" }, "LCC": { "city": "", "country": "IT", "state": "Apulia" }, "PSR": { "city": "Pescara", "country": "IT", "state": "Abruzzo" }, "BDS": { "city": "Brindisi", "country": "IT", "state": "Apulia" }, "SUF": { "city": "Lamezia Terme", "country": "IT", "state": "Calabria" }, "CIY": { "city": "Comiso", "country": "IT", "state": "Sicily" }, "CTA": { "city": "Catania", "country": "IT", "state": "Sicily" }, "LMP": { "city": "Lampedusa", "country": "IT", "state": "Sicily" }, "PNL": { "city": "Pantelleria", "country": "IT", "state": "Sicily" }, "PMO": { "city": "Palermo", "country": "IT", "state": "Sicily" }, "REG": { "city": "Reggio Calabria", "country": "IT", "state": "Calabria" }, "TPS": { "city": "Trapani", "country": "IT", "state": "Sicily" }, "NSY": { "city": "", "country": "IT", "state": "Sicily" }, "BLX": { "city": "Belluno", "country": "IT", "state": "Veneto" }, "CDF": { "city": "Cortina D'Ampezzo", "country": "IT", "state": "Veneto" }, "RAN": { "city": "Ravenna", "country": "IT", "state": "Emilia-Romagna" }, "ZIA": { "city": "Trento", "country": "IT", "state": "Trentino-Alto-Adige" }, "AHO": { "city": "Alghero", "country": "IT", "state": "Sardinia" }, "DCI": { "city": "Decimomannu", "country": "IT", "state": "Sardinia" }, "CAG": { "city": "Cagliari", "country": "IT", "state": "Sardinia" }, "OLB": { "city": "Olbia", "country": "IT", "state": "Sardinia" }, "FNU": { "city": "Oristano", "country": "IT", "state": "Sardinia" }, "TTB": { "city": "Arbatax", "country": "IT", "state": "Sardinia" }, "QVA": { "city": "Varese", "country": "IT", "state": "Lombardy" }, "QMM": { "city": "Marina Di Massa", "country": "IT", "state": "Tuscany" }, "MXP": { "city": "Milan", "country": "IT", "state": "Lombardy" }, "BGY": { "city": "Bergamo", "country": "IT", "state": "Lombardy" }, "TRN": { "city": "Torino", "country": "IT", "state": "Piedmont" }, "ALL": { "city": "Albenga", "country": "IT", "state": "Liguria" }, "GOA": { "city": "Genova", "country": "IT", "state": "Liguria" }, "LIN": { "city": "Milan", "country": "IT", "state": "Lombardy" }, "PMF": { "city": "Parma", "country": "IT", "state": "Emilia-Romagna" }, "QPZ": { "city": "Piacenza", "country": "IT", "state": "Emilia-Romagna" }, "AOT": { "city": "Aosta", "country": "IT", "state": "Aosta-Valley" }, "CUF": { "city": "Cuneo", "country": "IT", "state": "Piedmont" }, "AVB": { "city": "Aviano", "country": "IT", "state": "Friuli-Venezia-Giulia" }, "BZO": { "city": "Bolzano", "country": "IT", "state": "Trentino-Alto-Adige" }, "UDN": { "city": "Udine", "country": "IT", "state": "Friuli-Venezia-Giulia" }, "BLQ": { "city": "Bologna", "country": "IT", "state": "Emilia-Romagna" }, "TSF": { "city": "Treviso", "country": "IT", "state": "Veneto" }, "FRL": { "city": "Forli", "country": "IT", "state": "Emilia-Romagna" }, "VBS": { "city": "Brescia", "country": "IT", "state": "Lombardy" }, "TRS": { "city": "Trieste", "country": "IT", "state": "Friuli-Venezia-Giulia" }, "RMI": { "city": "Rimini", "country": "IT", "state": "Emilia-Romagna" }, "VIC": { "city": "Vicenza", "country": "IT", "state": "Veneto" }, "QPA": { "city": "Padova", "country": "IT", "state": "Veneto" }, "VRN": { "city": "Verona", "country": "IT", "state": "Veneto" }, "AOI": { "city": "Ancona", "country": "IT", "state": "The-Marches" }, "VCE": { "city": "Venezia", "country": "IT", "state": "Veneto" }, "QZO": { "city": "Arezzo", "country": "IT", "state": "Tuscany" }, "LCV": { "city": "Lucca", "country": "IT", "state": "Tuscany" }, "QRT": { "city": "Rieti", "country": "IT", "state": "Latium" }, "SAY": { "city": "Siena", "country": "IT", "state": "Tuscany" }, "CIA": { "city": "Roma", "country": "IT", "state": "Latium" }, "FCO": { "city": "Rome", "country": "IT", "state": "Latium" }, "QFR": { "city": "Frosinone", "country": "IT", "state": "Latium" }, "QSR": { "city": "Salerno", "country": "IT", "state": "Campania" }, "EBA": { "city": "Marina Di Campo", "country": "IT", "state": "Tuscany" }, "QLT": { "city": "Latina", "country": "IT", "state": "Latium" }, "NAP": { "city": "Napoli", "country": "IT", "state": "Campania" }, "PSA": { "city": "Pisa", "country": "IT", "state": "Tuscany" }, "FLR": { "city": "Firenze", "country": "IT", "state": "Tuscany" }, "GRS": { "city": "Grosetto", "country": "IT", "state": "Tuscany" }, "PEG": { "city": "Perugia", "country": "IT", "state": "Umbria" }, "LJU": { "city": "Ljubljana", "country": "SI", "state": "Cerklje-na-Gorenjskem" }, "MBX": { "city": "", "country": "SI", "state": "Hoce-Slivnica" }, "POW": { "city": "Portoroz", "country": "SI", "state": "Piran-Pirano" }, "GTW": { "city": "Holesov", "country": "CZ", "state": "Zlin" }, "UHE": { "city": "Uherske Hradiste", "country": "CZ", "state": "Zlin" }, "KLV": { "city": "Karlovy Vary", "country": "CZ", "state": "Karlovarsky" }, "MKA": { "city": "Marianske Lazne", "country": "CZ", "state": "Karlovarsky" }, "OSR": { "city": "Ostrava", "country": "CZ", "state": "Moravskoslezsky" }, "PED": { "city": "Pardubice", "country": "CZ", "state": "Pardubicky" }, "PRV": { "city": "Prerov", "country": "CZ", "state": "Olomoucky" }, "PRG": { "city": "Prague", "country": "CZ", "state": "Praha" }, "BRQ": { "city": "Brno", "country": "CZ", "state": "South-Moravian" }, "ZBE": { "city": "Zabreh", "country": "CZ", "state": "Moravskoslezsky" }, "TLV": { "city": "Tel Aviv", "country": "IL", "state": "Central-District" }, "BEV": { "city": "Beersheva", "country": "IL", "state": "Southern-District" }, "ETH": { "city": "Eilat", "country": "IL", "state": "Southern-District" }, "EIY": { "city": "Sapir", "country": "IL", "state": "Southern-District" }, "HFA": { "city": "Haifa", "country": "IL", "state": "Haifa" }, "RPN": { "city": "Rosh Pina", "country": "IL", "state": "Northern-District" }, "KSW": { "city": "Kiryat Shmona", "country": "IL", "state": "Northern-District" }, "MTZ": { "city": "Masada", "country": "IL", "state": "Southern-District" }, "VTM": { "city": "Beersheba", "country": "IL", "state": "Southern-District" }, "VDA": { "city": "Eilat", "country": "IL", "state": "Southern-District" }, "MIP": { "city": "Beersheba", "country": "IL", "state": "Southern-District" }, "SDV": { "city": "Tel Aviv", "country": "IL", "state": "Tel-Aviv" }, "YOT": { "city": "Yotvata", "country": "IL", "state": "Southern-District" }, "MLA": { "city": "Luqa", "country": "MT", "state": "Luqa" }, "HOH": { "city": "Hohenems / Dornbirn", "country": "AT", "state": "Vorarlberg" }, "GRZ": { "city": "Graz", "country": "AT", "state": "Styria" }, "INN": { "city": "Innsbruck", "country": "AT", "state": "Tyrol" }, "KLU": { "city": "Klagenfurt am Worthersee", "country": "AT", "state": "Carinthia" }, "LNZ": { "city": "Linz", "country": "AT", "state": "Upper-Austria" }, "SZG": { "city": "Salzburg", "country": "AT", "state": "Salzburg" }, "VIE": { "city": "Vienna", "country": "AT", "state": "Lower-Austria" }, "SMA": { "city": "Vila do Porto", "country": "PT", "state": "Azores" }, "BGC": { "city": "", "country": "PT", "state": "Braganca" }, "BYJ": { "city": "Beja", "country": "PT", "state": "Beja" }, "BGZ": { "city": "Braga", "country": "PT", "state": "Braga" }, "CHV": { "city": "Chaves", "country": "PT", "state": "Vila-Real" }, "CBP": { "city": "", "country": "PT", "state": "Coimbra" }, "CVU": { "city": "Corvo", "country": "PT", "state": "Azores" }, "COV": { "city": "", "country": "PT", "state": "Castelo-Branco" }, "FLW": { "city": "Santa Cruz das Flores", "country": "PT", "state": "Azores" }, "FAO": { "city": "Faro", "country": "PT", "state": "Faro" }, "GRW": { "city": "Santa Cruz da Graciosa", "country": "PT", "state": "Azores" }, "HOR": { "city": "Horta", "country": "PT", "state": "Azores" }, "TER": { "city": "Lajes", "country": "PT", "state": "Azores" }, "FNC": { "city": "Funchal", "country": "PT", "state": "Madeira" }, "PDL": { "city": "Ponta Delgada", "country": "PT", "state": "Azores" }, "PIX": { "city": "Pico Island", "country": "PT", "state": "Azores" }, "PRM": { "city": "", "country": "PT", "state": "Faro" }, "OPO": { "city": "Porto", "country": "PT", "state": "Porto" }, "PXO": { "city": "Vila Baleira", "country": "PT", "state": "Madeira" }, "LIS": { "city": "Lisbon", "country": "PT", "state": "Lisbon" }, "SIE": { "city": "", "country": "PT", "state": "Setubal" }, "SJZ": { "city": "Velas", "country": "PT", "state": "Azores" }, "VRL": { "city": "", "country": "PT", "state": "Vila-Real" }, "VSE": { "city": "", "country": "PT", "state": "Viseu" }, "BNX": { "city": "Banja Luka", "country": "BA", "state": "Srspka" }, "OMO": { "city": "Mostar", "country": "BA", "state": "Federation-of-B&H" }, "SJJ": { "city": "Sarajevo", "country": "BA", "state": "Federation-of-B&H" }, "TZL": { "city": "Tuzla", "country": "BA", "state": "Federation-of-B&H" }, "ARW": { "city": "Arad", "country": "RO", "state": "Arad" }, "BCM": { "city": "Bacau", "country": "RO", "state": "Bacau" }, "BAY": { "city": "Baia Mare", "country": "RO", "state": "Maramureş" }, "BBU": { "city": "Bucharest", "country": "RO", "state": "Bucureşti" }, "CND": { "city": "Constanta", "country": "RO", "state": "Constanța" }, "CLJ": { "city": "Cluj-Napoca", "country": "RO", "state": "Cluj" }, "CSB": { "city": "Caransebes", "country": "RO", "state": "Caraş-Severin" }, "CRA": { "city": "Craiova", "country": "RO", "state": "Dolj" }, "IAS": { "city": "Iasi", "country": "RO", "state": "Iaşi" }, "OMR": { "city": "Oradea", "country": "RO", "state": "Bihor" }, "OTP": { "city": "Bucharest", "country": "RO", "state": "Ilfov" }, "SBZ": { "city": "Sibiu", "country": "RO", "state": "Sibiu" }, "SUJ": { "city": "Satu Mare", "country": "RO", "state": "Satu-Mare" }, "SCV": { "city": "Suceava", "country": "RO", "state": "Suceava" }, "TCE": { "city": "Tulcea", "country": "RO", "state": "Tulcea" }, "TGM": { "city": "Targu Mures", "country": "RO", "state": "Mureş" }, "TSR": { "city": "Timisoara", "country": "RO", "state": "Timiş" }, "GVA": { "city": "Geneva", "country": "CH", "state": "Geneva" }, "QLS": { "city": "Lausanne", "country": "CH", "state": "Vaud" }, "QNC": { "city": "", "country": "CH", "state": "Neuchatel" }, "SIR": { "city": "Sion", "country": "CH", "state": "Valais" }, "ZIN": { "city": "", "country": "CH", "state": "Bern" }, "LUG": { "city": "Lugano", "country": "CH", "state": "Ticino" }, "BRN": { "city": "Bern", "country": "CH", "state": "Bern" }, "BXO": { "city": "Buochs", "country": "CH", "state": "Nidwalden" }, "ZHI": { "city": "", "country": "CH", "state": "Solothurn" }, "ZRH": { "city": "Zurich", "country": "CH", "state": "Zurich" }, "ZJI": { "city": "", "country": "CH", "state": "Ticino" }, "MLH": { "city": "Bale/Mulhouse", "country": "CH", "state": "Grand-Est" }, "ACH": { "city": "Altenrhein", "country": "CH", "state": "Saint-Gallen" }, "SMV": { "city": "", "country": "CH", "state": "Grisons" }, "ESB": { "city": "Ankara", "country": "TR", "state": "Ankara" }, "ANK": { "city": "Ankara", "country": "TR", "state": "Ankara" }, "ADA": { "city": "Adana", "country": "TR", "state": "Adana" }, "UAB": { "city": "Adana", "country": "TR", "state": "Adana" }, "AFY": { "city": "Afyonkarahisar", "country": "TR", "state": "Afyonkarahisar" }, "AYT": { "city": "Antalya", "country": "TR", "state": "Antalya" }, "GZT": { "city": "Gaziantep", "country": "TR", "state": "Gaziantep" }, "KFS": { "city": "Kastamonu", "country": "TR", "state": "Kastamonu" }, "KYA": { "city": "Konya", "country": "TR", "state": "Konya" }, "MZH": { "city": "Amasya", "country": "TR", "state": "Amasya" }, "SSX": { "city": "Samsun", "country": "TR", "state": "Samsun" }, "VAS": { "city": "Sivas", "country": "TR", "state": "Sivas" }, "ONQ": { "city": "Zonguldak", "country": "TR", "state": "Zonguldak" }, "MLX": { "city": "Malatya", "country": "TR", "state": "Malatya" }, "ASR": { "city": "Kayseri", "country": "TR", "state": "Kayseri" }, "TJK": { "city": "Tokat", "country": "TR", "state": "Tokat" }, "DNZ": { "city": "Denizli", "country": "TR", "state": "Denizli" }, "NAV": { "city": "Nevsehir", "country": "TR", "state": "Nevşehir" }, "ISL": { "city": "Istanbul", "country": "TR", "state": "Istanbul" }, "IST": { "city": "Istanbul", "country": "TR", "state": "Istanbul" }, "CII": { "city": "Aydin", "country": "TR", "state": "Aydin" }, "BTZ": { "city": "Bursa", "country": "TR", "state": "Bursa" }, "BZI": { "city": "Balikesir", "country": "TR", "state": "Balikesir" }, "BDM": { "city": "Bandirma", "country": "TR", "state": "Balikesir" }, "CKZ": { "city": "Canakkale", "country": "TR", "state": "Canakkale" }, "ESK": { "city": "Eskisehir", "country": "TR", "state": "Eskişehir" }, "ADB": { "city": "Izmir", "country": "TR", "state": "Izmir" }, "IGL": { "city": "Izmir", "country": "TR", "state": "Izmir" }, "USQ": { "city": "Usak", "country": "TR", "state": "Uşak" }, "KCO": { "city": "", "country": "TR", "state": "Kocaeli" }, "YEI": { "city": "Bursa", "country": "TR", "state": "Bursa" }, "DLM": { "city": "Dalaman", "country": "TR", "state": "Mugla" }, "TEQ": { "city": "Corlu", "country": "TR", "state": "Tekirdag" }, "BXN": { "city": "Bodrum", "country": "TR", "state": "Mugla" }, "AOE": { "city": "Eskisehir", "country": "TR", "state": "Eskişehir" }, "KZR": { "city": "Altintas", "country": "TR", "state": "Kutahya" }, "EZS": { "city": "Elazig", "country": "TR", "state": "Elazig" }, "OGU": { "city": "Ordu", "country": "TR", "state": "Ordu Province" }, "DIY": { "city": "Diyarbakir", "country": "TR", "state": "Diyarbakir" }, "ERC": { "city": "Erzincan", "country": "TR", "state": "Erzincan" }, "ERZ": { "city": "Erzurum", "country": "TR", "state": "Erzurum" }, "KSY": { "city": "Kars", "country": "TR", "state": "Kars" }, "TZX": { "city": "Trabzon", "country": "TR", "state": "Trabzon" }, "SFQ": { "city": "Sanliurfa", "country": "TR", "state": "Sanliurfa" }, "VAN": { "city": "Van", "country": "TR", "state": "Van" }, "BAL": { "city": "Batman", "country": "TR", "state": "Batman" }, "MSR": { "city": "Mus", "country": "TR", "state": "Muş" }, "SXZ": { "city": "Siirt", "country": "TR", "state": "Siirt" }, "NOP": { "city": "Sinop", "country": "TR", "state": "Sinop" }, "KCM": { "city": "Kahramanmaras", "country": "TR", "state": "Kahramanmaraş" }, "AJI": { "city": "Agri", "country": "TR", "state": "Agri" }, "ADF": { "city": "Adiyaman", "country": "TR", "state": "Adiyaman" }, "MQM": { "city": "Mardin", "country": "TR", "state": "Mardin" }, "GNY": { "city": "Sanliurfa", "country": "TR", "state": "Sanliurfa" }, "IGD": { "city": "Igdir", "country": "TR", "state": "Kars" }, "HTY": { "city": "Hatay", "country": "TR", "state": "Hatay" }, "ISE": { "city": "Isparta", "country": "TR", "state": "Isparta" }, "EDO": { "city": "Edremit", "country": "TR", "state": "Balikesir" }, "BJV": { "city": "Bodrum", "country": "TR", "state": "Mugla" }, "GZP": { "city": "Gazipasa", "country": "TR", "state": "Antalya" }, "SZF": { "city": "Samsun", "country": "TR", "state": "Samsun" }, "SAW": { "city": "Istanbul", "country": "TR", "state": "Istanbul" }, "GKD": { "city": "Gokceada", "country": "TR", "state": "Canakkale" }, "BZY": { "city": "Strymba", "country": "MD", "state": "Balţi" }, "KIV": { "city": "Chisinau", "country": "MD", "state": "Chișinau-Municipality" }, "OHD": { "city": "Ohrid", "country": "MK", "state": "Debarca" }, "SKP": { "city": "Skopje", "country": "MK", "state": "Ilinden" }, "GIB": { "city": "Gibraltar", "country": "GI", "state": "" }, "BEG": { "city": "Belgrad", "country": "RS", "state": "" }, "IVG": { "city": "Berane", "country": "ME", "state": "" }, "BJY": { "city": "Batajnica", "country": "RS", "state": "" }, "INI": { "city": "Nis", "country": "RS", "state": "Central-Serbia" }, "QND": { "city": "Novi Sad", "country": "RS", "state": "" }, "TGD": { "city": "Podgorica", "country": "ME", "state": "Podgorica" }, "TIV": { "city": "Tivat", "country": "ME", "state": "" }, "UZC": { "city": "Uzice", "country": "RS", "state": "" }, "QWV": { "city": "Valjevo", "country": "RS", "state": "" }, "ZRE": { "city": "Zrenjanin", "country": "RS", "state": "Vojvodina" }, "BTS": { "city": "Bratislava", "country": "SK", "state": "Bratislavsky" }, "KSC": { "city": "Kosice", "country": "SK", "state": "Kosicky" }, "LUE": { "city": "Lucenec", "country": "SK", "state": "Banskobystricky" }, "PZY": { "city": "Piestany", "country": "SK", "state": "" }, "POV": { "city": "Presov", "country": "SK", "state": "Presovsky" }, "SLD": { "city": "Sliac", "country": "SK", "state": "Banskobystricky" }, "TAT": { "city": "Poprad", "country": "SK", "state": "Presovsky" }, "ILZ": { "city": "Zilina", "country": "SK", "state": "Zilinsky" }, "GDT": { "city": "Cockburn Town", "country": "TC", "state": "" }, "MDS": { "city": "Middle Caicos", "country": "TC", "state": "" }, "NCA": { "city": "", "country": "TC", "state": "" }, "PIC": { "city": "Pine Cay", "country": "TC", "state": "" }, "PLS": { "city": "Providenciales Island", "country": "TC", "state": "" }, "XSC": { "city": "", "country": "TC", "state": "" }, "SLX": { "city": "Salt Cay", "country": "TC", "state": "" }, "BRX": { "city": "Barahona", "country": "DO", "state": "Barahona" }, "CBJ": { "city": "Cabo Rojo", "country": "DO", "state": "Pedernales" }, "AZS": { "city": "Samana", "country": "DO", "state": "Maria-Trinidad-Sanchez" }, "COZ": { "city": "Costanza", "country": "DO", "state": "La-Vega" }, "JBQ": { "city": "La Isabela", "country": "DO", "state": "Santo-Domingo" }, "LRM": { "city": "La Romana", "country": "DO", "state": "La-Romana" }, "PUJ": { "city": "Punta Cana", "country": "DO", "state": "La-Altagracia" }, "EPS": { "city": "Samana", "country": "DO", "state": "Samana" }, "POP": { "city": "Puerto Plata", "country": "DO", "state": "Puerto-Plata" }, "SNX": { "city": "Sabana de Mar", "country": "DO", "state": "Hato-Mayor" }, "SDQ": { "city": "Santo Domingo", "country": "DO", "state": "Nacional" }, "STI": { "city": "Santiago", "country": "DO", "state": "Dajabon" }, "CBV": { "city": "Coban", "country": "GT", "state": "Alta-Verapaz" }, "CIQ": { "city": "Chiquimula", "country": "GT", "state": "Chiquimula" }, "CMM": { "city": "Carmelita", "country": "GT", "state": "Peten" }, "CTF": { "city": "Coatepeque", "country": "GT", "state": "Totonicapan" }, "DON": { "city": "Dos Lagunas", "country": "GT", "state": "Peten" }, "GUA": { "city": "Guatemala City", "country": "GT", "state": "Guatemala" }, "HUG": { "city": "Huehuetenango", "country": "GT", "state": "Huehuetenango" }, "MCR": { "city": "Melchor de Mencos", "country": "GT", "state": "Peten" }, "PBR": { "city": "Puerto Barrios", "country": "GT", "state": "Izabal" }, "PCG": { "city": "Paso Caballos", "country": "GT", "state": "Peten" }, "PKJ": { "city": "Playa Grande", "country": "GT", "state": "Quiche" }, "PON": { "city": "Poptun", "country": "GT", "state": "Peten" }, "AQB": { "city": "Santa Cruz del Quiche", "country": "GT", "state": "Quiche" }, "AAZ": { "city": "Quezaltenango", "country": "GT", "state": "Quetzaltenango" }, "RUV": { "city": "Rubelsanto", "country": "GT", "state": "Alta-Verapaz" }, "LCF": { "city": "Rio Dulce", "country": "GT", "state": "Izabal" }, "RER": { "city": "Retalhuleu", "country": "GT", "state": "Retalhuleu" }, "GSJ": { "city": "Puerto San Jose", "country": "GT", "state": "Escuintla" }, "FRS": { "city": "San Benito", "country": "GT", "state": "Peten" }, "UAX": { "city": "Uaxactun", "country": "GT", "state": "Peten" }, "AHS": { "city": "Ahuas", "country": "HN", "state": "Gracias-a-Dios" }, "BHG": { "city": "Brus Laguna", "country": "HN", "state": "Gracias-a-Dios" }, "CAA": { "city": "Catacamas", "country": "HN", "state": "Olancho" }, "CDD": { "city": "Cauquira", "country": "HN", "state": "Gracias-a-Dios" }, "JUT": { "city": "Jutigalpa", "country": "HN", "state": "Olancho" }, "LCE": { "city": "La Ceiba", "country": "HN", "state": "Atlantida" }, "LEZ": { "city": "La Esperanza", "country": "HN", "state": "Intibuca" }, "SAP": { "city": "La Mesa", "country": "HN", "state": "Cortes" }, "GJA": { "city": "Guanaja", "country": "HN", "state": "Bay-Islands" }, "PEU": { "city": "Puerto Lempira", "country": "HN", "state": "Gracias-a-Dios" }, "RTB": { "city": "Roatan Island", "country": "HN", "state": "Bay-Islands" }, "SDH": { "city": "Santa Rosa de Copan", "country": "HN", "state": "Copan" }, "RUY": { "city": "Ruinas de Copan", "country": "HN", "state": "Copan" }, "XPL": { "city": "Comayagua", "country": "HN", "state": "Comayagua" }, "TEA": { "city": "Tela", "country": "HN", "state": "Atlantida" }, "TGU": { "city": "Tegucigalpa", "country": "HN", "state": "Francisco-Morazan" }, "TJI": { "city": "Trujillo", "country": "HN", "state": "Colon" }, "SCD": { "city": "Sulaco", "country": "HN", "state": "Comayagua" }, "UII": { "city": "Utila Island", "country": "HN", "state": "Bay-Islands" }, "OCJ": { "city": "Ocho Rios", "country": "JM", "state": "St-Mary" }, "KIN": { "city": "Kingston", "country": "JM", "state": "Kingston" }, "MBJ": { "city": "Montego Bay", "country": "JM", "state": "St-James" }, "POT": { "city": "Ken Jones", "country": "JM", "state": "Portland" }, "NEG": { "city": "Negril", "country": "JM", "state": "Hanover" }, "KTP": { "city": "Tinson Pen", "country": "JM", "state": "St-Andrew" }, "MIJ": { "city": "Mili Island", "country": "MH", "state": "Mili-Atoll" }, "ACA": { "city": "Acapulco", "country": "MX", "state": "Guerrero" }, "NTR": { "city": "", "country": "MX", "state": "Nuevo-Leon" }, "AGU": { "city": "Aguascalientes", "country": "MX", "state": "Aguascalientes" }, "HUX": { "city": "Huatulco", "country": "MX", "state": "Oaxaca" }, "CNA": { "city": "", "country": "MX", "state": "Sonora" }, "CVJ": { "city": "", "country": "MX", "state": "Morelos" }, "ACN": { "city": "Ciudad Acuna", "country": "MX", "state": "Coahuila" }, "CME": { "city": "Ciudad del Carmen", "country": "MX", "state": "Campeche" }, "NCG": { "city": "", "country": "MX", "state": "Chihuahua" }, "CUL": { "city": "Culiacan", "country": "MX", "state": "Sinaloa" }, "CTM": { "city": "Chetumal", "country": "MX", "state": "Quintana-Roo" }, "CEN": { "city": "Ciudad Obregon", "country": "MX", "state": "Sonora" }, "CJT": { "city": "", "country": "MX", "state": "Chiapas" }, "CPE": { "city": "Campeche", "country": "MX", "state": "Campeche" }, "CJS": { "city": "Ciudad Juarez", "country": "MX", "state": "Chihuahua" }, "CZA": { "city": "", "country": "MX", "state": "Yucatan" }, "CUU": { "city": "Chihuahua", "country": "MX", "state": "Chihuahua" }, "CVM": { "city": "Ciudad Victoria", "country": "MX", "state": "Tamaulipas" }, "CYW": { "city": "Celaya", "country": "MX", "state": "Guanajuato" }, "CZM": { "city": "Cozumel", "country": "MX", "state": "Quintana-Roo" }, "CUA": { "city": "Ciudad Constitucion", "country": "MX", "state": "Baja-California-Sur" }, "MMC": { "city": "Ciudad Mante", "country": "MX", "state": "Tamaulipas" }, "DGO": { "city": "Durango", "country": "MX", "state": "Durango" }, "TPQ": { "city": "Tepic", "country": "MX", "state": "Nayarit" }, "ESE": { "city": "", "country": "MX", "state": "Baja-California" }, "GDL": { "city": "Guadalajara", "country": "MX", "state": "Jalisco" }, "GYM": { "city": "Guaymas", "country": "MX", "state": "Sonora" }, "GUB": { "city": "Guerrero Negro", "country": "MX", "state": "Baja-California" }, "TCN": { "city": "", "country": "MX", "state": "Puebla" }, "HMO": { "city": "Hermosillo", "country": "MX", "state": "Sonora" }, "CLQ": { "city": "Colima", "country": "MX", "state": "Colima" }, "ISJ": { "city": "", "country": "MX", "state": "Quintana-Roo" }, "SLW": { "city": "Saltillo", "country": "MX", "state": "Coahuila" }, "IZT": { "city": "", "country": "MX", "state": "Oaxaca" }, "JAL": { "city": "Xalapa", "country": "MX", "state": "Veracruz" }, "AZP": { "city": "", "country": "MX", "state": "Mexico" }, "LZC": { "city": "Lazaro Cardenas", "country": "MX", "state": "Michoacan" }, "LMM": { "city": "Los Mochis", "country": "MX", "state": "Sinaloa" }, "BJX": { "city": "Silao", "country": "MX", "state": "Guanajuato" }, "LAP": { "city": "La Paz", "country": "MX", "state": "Baja-California-Sur" }, "LTO": { "city": "Loreto", "country": "MX", "state": "Baja-California-Sur" }, "MAM": { "city": "Matamoros", "country": "MX", "state": "Tamaulipas" }, "MID": { "city": "Merida", "country": "MX", "state": "Yucatan" }, "MUG": { "city": "Mulege", "country": "MX", "state": "Baja-California-Sur" }, "MXL": { "city": "Mexicali", "country": "MX", "state": "Baja-California" }, "MLM": { "city": "Morelia", "country": "MX", "state": "Michoacan" }, "MTT": { "city": "Minatitlan", "country": "MX", "state": "Veracruz" }, "LOV": { "city": "", "country": "MX", "state": "Coahuila" }, "MEX": { "city": "Mexico City", "country": "MX", "state": "Mexico-City" }, "MTY": { "city": "Monterrey", "country": "MX", "state": "Nuevo-Leon" }, "MZT": { "city": "Mazatlan", "country": "MX", "state": "Sinaloa" }, "NOG": { "city": "", "country": "MX", "state": "Sonora" }, "NLD": { "city": "Nuevo Laredo", "country": "MX", "state": "Tamaulipas" }, "OAX": { "city": "Oaxaca", "country": "MX", "state": "Oaxaca" }, "PAZ": { "city": "Poza Rica", "country": "MX", "state": "Veracruz" }, "PBC": { "city": "Puebla", "country": "MX", "state": "Puebla" }, "PPE": { "city": "Puerto Penasco", "country": "MX", "state": "Sonora" }, "PDS": { "city": "", "country": "MX", "state": "Coahuila" }, "PCO": { "city": "La Ribera", "country": "MX", "state": "Baja-California-Sur" }, "UPN": { "city": "", "country": "MX", "state": "Michoacan" }, "PQM": { "city": "", "country": "MX", "state": "Chiapas" }, "PVR": { "city": "Puerto Vallarta", "country": "MX", "state": "Jalisco" }, "PXM": { "city": "Puerto Escondido", "country": "MX", "state": "Oaxaca" }, "QRO": { "city": "Queretaro", "country": "MX", "state": "Queretaro" }, "REX": { "city": "Reynosa", "country": "MX", "state": "Tamaulipas" }, "SZT": { "city": "", "country": "MX", "state": "Chiapas" }, "SJD": { "city": "San Jose del Cabo", "country": "MX", "state": "Baja-California-Sur" }, "SFH": { "city": "", "country": "MX", "state": "Baja-California" }, "SLP": { "city": "San Luis Potosi", "country": "MX", "state": "San-Luis-Potosi" }, "TRC": { "city": "Torreon", "country": "MX", "state": "Coahuila" }, "TGZ": { "city": "Tuxtla Gutierrez", "country": "MX", "state": "Chiapas" }, "TIJ": { "city": "Tijuana", "country": "MX", "state": "Baja-California-Sur" }, "TAM": { "city": "Tampico", "country": "MX", "state": "Tamaulipas" }, "TSL": { "city": "", "country": "MX", "state": "San-Luis-Potosi" }, "TLC": { "city": "Toluca", "country": "MX", "state": "Mexico" }, "TAP": { "city": "Tapachula", "country": "MX", "state": "Chiapas" }, "WIX": { "city": "", "country": "MX", "state": "Jalisco" }, "CUN": { "city": "Cancun", "country": "MX", "state": "Quintana-Roo" }, "VSA": { "city": "Villahermosa", "country": "MX", "state": "Tabasco" }, "VER": { "city": "Veracruz", "country": "MX", "state": "Veracruz" }, "ZCL": { "city": "Zacatecas", "country": "MX", "state": "Zacatecas" }, "ZIH": { "city": "Ixtapa", "country": "MX", "state": "Guerrero" }, "ZMM": { "city": "", "country": "MX", "state": "Michoacan" }, "ZLO": { "city": "Manzanillo", "country": "MX", "state": "Colima" }, "BEF": { "city": "Bluefileds", "country": "NI", "state": "Atlantico-Sur" }, "BZA": { "city": "Bonanza", "country": "NI", "state": "" }, "RNI": { "city": "Corn Island", "country": "NI", "state": "" }, "MGA": { "city": "Managua", "country": "NI", "state": "Managua" }, "NVG": { "city": "Nueva Guinea", "country": "NI", "state": "" }, "PUZ": { "city": "Puerto Cabezas", "country": "NI", "state": "Atlantico-Norte-(RAAN)" }, "RFS": { "city": "La Rosita", "country": "NI", "state": "Atlantico-Norte-(RAAN)" }, "NCR": { "city": "San Carlos", "country": "NI", "state": "Granada" }, "SIU": { "city": "Siuna", "country": "NI", "state": "" }, "WSP": { "city": "Waspam", "country": "NI", "state": "" }, "BOC": { "city": "Isla Colon", "country": "PA", "state": "Bocas-del-Toro" }, "CTD": { "city": "Chitre", "country": "PA", "state": "Herrera" }, "CHX": { "city": "Changuinola", "country": "PA", "state": "Bocas-del-Toro" }, "DAV": { "city": "David", "country": "PA", "state": "Chiriqui" }, "ONX": { "city": "Colon", "country": "PA", "state": "Colon" }, "JQE": { "city": "Jaque", "country": "PA", "state": "Darien" }, "PLP": { "city": "La Palma", "country": "PA", "state": "Darien" }, "PAC": { "city": "Albrook", "country": "PA", "state": "Panama" }, "BLB": { "city": "Panama City", "country": "PA", "state": "Panama" }, "SYP": { "city": "Santiago", "country": "PA", "state": "Veraguas" }, "PTY": { "city": "Tocumen", "country": "PA", "state": "Panama" }, "NBL": { "city": "Wannukandi", "country": "PA", "state": "Guna-Yala" }, "FON": { "city": "La Fortuna/San Carlos", "country": "CR", "state": "Alajuela" }, "TTQ": { "city": "Roxana", "country": "CR", "state": "Limon" }, "BAI": { "city": "Punta Arenas", "country": "CR", "state": "Puntarenas" }, "BCL": { "city": "Pococi", "country": "CR", "state": "Limon" }, "CSC": { "city": "Guapiles", "country": "CR", "state": "Guanacaste" }, "OTR": { "city": "Corredores", "country": "CR", "state": "Puntarenas" }, "RIK": { "city": "Nicoya", "country": "CR", "state": "Guanacaste" }, "DRK": { "city": "Puntarenas", "country": "CR", "state": "Puntarenas" }, "FMG": { "city": "Brasilito", "country": "CR", "state": "Guanacaste" }, "GLF": { "city": "Golfito", "country": "CR", "state": "Puntarenas" }, "GPL": { "city": "Pococi", "country": "CR", "state": "Limon" }, "PBP": { "city": "Nandayure", "country": "CR", "state": "Guanacaste" }, "LIR": { "city": "Liberia", "country": "CR", "state": "Guanacaste" }, "LSL": { "city": "Los Chiles", "country": "CR", "state": "Alajuela" }, "LIO": { "city": "Puerto Limon", "country": "CR", "state": "Limon" }, "NCT": { "city": "Nicoya/Guanacate", "country": "CR", "state": "Guanacaste" }, "NOB": { "city": "Nicoya", "country": "CR", "state": "Guanacaste" }, "SJO": { "city": "San Jose", "country": "CR", "state": "Alajuela" }, "PJM": { "city": "Puerto Jimenez", "country": "CR", "state": "Puntarenas" }, "PMZ": { "city": "Palmar Sur", "country": "CR", "state": "Puntarenas" }, "SYQ": { "city": "San Jose", "country": "CR", "state": "San-Jose" }, "XQP": { "city": "Quepos", "country": "CR", "state": "Puntarenas" }, "RFR": { "city": "Rio Frio / Progreso", "country": "CR", "state": "Heredia" }, "PLD": { "city": "Playa Samara", "country": "CR", "state": "Guanacaste" }, "TOO": { "city": "Coto Brus", "country": "CR", "state": "Puntarenas" }, "TNO": { "city": "Santa Cruz", "country": "CR", "state": "Guanacaste" }, "TMU": { "city": "Nicoya", "country": "CR", "state": "Puntarenas" }, "UPL": { "city": "Upala", "country": "CR", "state": "Alajuela" }, "SAL": { "city": "Santa Clara", "country": "SV", "state": "La-Paz" }, "CYA": { "city": "Les Cayes", "country": "HT", "state": "Sud" }, "CAP": { "city": "Cap Haitien", "country": "HT", "state": "Nord" }, "JAK": { "city": "Jacmel", "country": "HT", "state": "Sud-Est" }, "JEE": { "city": "Jeremie", "country": "HT", "state": "GrandʼAnse" }, "PAP": { "city": "Port-au-Prince", "country": "HT", "state": "Ouest" }, "PAX": { "city": "Port-de-Paix", "country": "HT", "state": "Nord-Ouest" }, "BCA": { "city": "Baracoa", "country": "CU", "state": "Guantanamo" }, "BWW": { "city": "Cayo Santa Maria", "country": "CU", "state": "Villa-Clara" }, "BYM": { "city": "Bayamo", "country": "CU", "state": "Granma" }, "AVI": { "city": "Ciego de Avila", "country": "CU", "state": "Ciego-de-Avila" }, "CCC": { "city": "Cayo Coco", "country": "CU", "state": "Ciego-de-Avila" }, "CFG": { "city": "Cienfuegos", "country": "CU", "state": "Cienfuegos" }, "CYO": { "city": "Cayo Largo del Sur", "country": "CU", "state": "Isla-de-la-Juventud" }, "CMW": { "city": "Camaguey", "country": "CU", "state": "Camagueey" }, "QCO": { "city": "Colon", "country": "CU", "state": "Matanzas" }, "SCU": { "city": "Santiago", "country": "CU", "state": "Santiago-de-Cuba" }, "NBW": { "city": "Guantanamo Bay Naval Station", "country": "CU", "state": "Guantanamo" }, "GAO": { "city": "Guantanamo", "country": "CU", "state": "Guantanamo" }, "HAV": { "city": "Havana", "country": "CU", "state": "La-Habana" }, "HOG": { "city": "Holguin", "country": "CU", "state": "Holguin" }, "VRO": { "city": "Matanzas", "country": "CU", "state": "Matanzas" }, "LCL": { "city": "Pinar del Rio", "country": "CU", "state": "Pinar-del-Rio" }, "UMA": { "city": "Maisi", "country": "CU", "state": "Guantanamo" }, "MJG": { "city": "Mayajigua", "country": "CU", "state": "Sancti-Spiritus" }, "MOA": { "city": "Moa", "country": "CU", "state": "Holguin" }, "MZO": { "city": "Manzanillo", "country": "CU", "state": "Granma" }, "QSN": { "city": "San Nicolas", "country": "CU", "state": "Mayabeque" }, "ICR": { "city": "Nicaro", "country": "CU", "state": "Holguin" }, "GER": { "city": "Nueva Gerona", "country": "CU", "state": "Isla-de-la-Juventud" }, "UPB": { "city": "Havana", "country": "CU", "state": "Artemisa" }, "QPD": { "city": "Pinar del Rio", "country": "CU", "state": "Pinar-del-Rio" }, "SNU": { "city": "Santa Clara", "country": "CU", "state": "Villa-Clara" }, "SNJ": { "city": "Pinar Del Rio", "country": "CU", "state": "Pinar-del-Rio" }, "SZJ": { "city": "Isla de la Juventud", "country": "CU", "state": "Isla-de-la-Juventud" }, "USS": { "city": "Sancti Spiritus", "country": "CU", "state": "Sancti-Spiritus" }, "TND": { "city": "Trinidad", "country": "CU", "state": "Sancti-Spiritus" }, "VRA": { "city": "Varadero", "country": "CU", "state": "Matanzas" }, "VTU": { "city": "Las Tunas", "country": "CU", "state": "Las-Tunas" }, "CYB": { "city": "Cayman Brac", "country": "KY", "state": "" }, "LYB": { "city": "Little Cayman", "country": "KY", "state": "" }, "GCM": { "city": "Georgetown", "country": "KY", "state": "" }, "MAY": { "city": "Mangrove Cay", "country": "BS", "state": "Mangrove-Cay" }, "ASD": { "city": "", "country": "BS", "state": "North-Andros" }, "COX": { "city": "Andros", "country": "BS", "state": "South-Andros" }, "MHH": { "city": "Marsh Harbour", "country": "BS", "state": "" }, "SAQ": { "city": "Andros Island", "country": "BS", "state": "North-Andros" }, "AXP": { "city": "Spring Point", "country": "BS", "state": "Acklins" }, "TCB": { "city": "Treasure Cay", "country": "BS", "state": "" }, "WKR": { "city": "", "country": "BS", "state": "Grand-Cay" }, "CCZ": { "city": "", "country": "BS", "state": "Berry-Islands" }, "GHC": { "city": "", "country": "BS", "state": "Berry-Islands" }, "BIM": { "city": "South Bimini", "country": "BS", "state": "Bimini" }, "ATC": { "city": "Arthur's Town", "country": "BS", "state": "Cat-Island" }, "CAT": { "city": "Cat Island", "country": "BS", "state": "Cat-Island" }, "CXY": { "city": "Cat Cay", "country": "BS", "state": "Bimini" }, "CRI": { "city": "Colonel Hill", "country": "BS", "state": "Crooked-Island-and-Long-Cay" }, "PWN": { "city": "Pitts Town", "country": "BS", "state": "Crooked-Island-and-Long-Cay" }, "GGT": { "city": "George Town", "country": "BS", "state": "Exuma" }, "ELH": { "city": "North Eleuthera", "country": "BS", "state": "North-Eleuthera" }, "GHB": { "city": "Governor's Harbour", "country": "BS", "state": "North-Eleuthera" }, "NMC": { "city": "", "country": "BS", "state": "Black-Point" }, "RSD": { "city": "Rock Sound", "country": "BS", "state": "South-Eleuthera" }, "TYM": { "city": "", "country": "BS", "state": "Black-Point" }, "FPO": { "city": "Freeport", "country": "BS", "state": "Freeport" }, "WTD": { "city": "West End", "country": "BS", "state": "West-Grand-Bahama" }, "IGA": { "city": "Matthew Town", "country": "BS", "state": "Inagua" }, "LGI": { "city": "Deadman's Cay", "country": "BS", "state": "Long-Island" }, "SML": { "city": "Stella Maris", "country": "BS", "state": "Long-Island" }, "MYG": { "city": "Mayaguana", "country": "BS", "state": "Mayaguana" }, "NAS": { "city": "Nassau", "country": "BS", "state": "New-Providence" }, "PID": { "city": "Nassau", "country": "BS", "state": "New-Providence" }, "DCT": { "city": "", "country": "BS", "state": "Ragged-Island" }, "RCY": { "city": "", "country": "BS", "state": "Rum-Cay" }, "ZSA": { "city": "San Salvador", "country": "BS", "state": "San-Salvador" }, "BZE": { "city": "Belize City", "country": "BZ", "state": "Belize" }, "AIT": { "city": "Aitutaki", "country": "CK", "state": "" }, "AIU": { "city": "Atiu Island", "country": "CK", "state": "" }, "MGS": { "city": "Mangaia Island", "country": "CK", "state": "" }, "MHX": { "city": "Manihiki Island", "country": "CK", "state": "" }, "MUK": { "city": "Mauke Island", "country": "CK", "state": "" }, "MOI": { "city": "Mitiaro Island", "country": "CK", "state": "" }, "PYE": { "city": "Penrhyn Island", "country": "CK", "state": "" }, "RAR": { "city": "Avarua", "country": "CK", "state": "" }, "ICI": { "city": "Cicia", "country": "FJ", "state": "Eastern" }, "BFJ": { "city": "", "country": "FJ", "state": "Western" }, "NAN": { "city": "Nadi", "country": "FJ", "state": "Western" }, "PTF": { "city": "Malolo Lailai Island", "country": "FJ", "state": "Western" }, "KDV": { "city": "Vunisea", "country": "FJ", "state": "" }, "MNF": { "city": "Mana Island", "country": "FJ", "state": "Western" }, "MFJ": { "city": "Moala", "country": "FJ", "state": "Eastern" }, "SUV": { "city": "Nausori", "country": "FJ", "state": "Central" }, "LEV": { "city": "Bureta", "country": "FJ", "state": "Eastern" }, "NGI": { "city": "Ngau", "country": "FJ", "state": "Eastern" }, "LUC": { "city": "Laucala Island", "country": "FJ", "state": "Northern" }, "LKB": { "city": "Lakeba Island", "country": "FJ", "state": "Eastern" }, "LBS": { "city": "", "country": "FJ", "state": "Northern" }, "TVU": { "city": "Matei", "country": "FJ", "state": "Northern" }, "KXF": { "city": "Koro Island", "country": "FJ", "state": "Eastern" }, "RTA": { "city": "Rotuma", "country": "FJ", "state": "Rotuma" }, "SVU": { "city": "Savusavu", "country": "FJ", "state": "Northern" }, "VAU": { "city": "Vatukoula", "country": "FJ", "state": "Western" }, "KAY": { "city": "Wakaya Island", "country": "FJ", "state": "" }, "ONU": { "city": "Ono-I-Lau", "country": "FJ", "state": "" }, "YAS": { "city": "Yasawa Island", "country": "FJ", "state": "Western" }, "EUA": { "city": "Eua Island", "country": "TO", "state": "ʻEua" }, "TBU": { "city": "Nuku'alofa", "country": "TO", "state": "Tongatapu" }, "HPA": { "city": "Lifuka", "country": "TO", "state": "Ha‘apai" }, "Niu": { "city": "Angaha", "country": "TO", "state": "Vava‘u" }, "NTT": { "city": "Niuatoputapu", "country": "TO", "state": "Niuas" }, "VAV": { "city": "Vava'u Island", "country": "TO", "state": "Vava‘u" }, "VBV": { "city": "Vanua Balavu", "country": "FJ", "state": "Eastern" }, "VTF": { "city": "Vatulele", "country": "FJ", "state": "Western" }, "ABF": { "city": "Abaiang", "country": "KI", "state": "Gilbert-Islands" }, "BEZ": { "city": "Beru", "country": "KI", "state": "Gilbert-Islands" }, "FUN": { "city": "Funafuti", "country": "TV", "state": "Funafuti" }, "KUC": { "city": "Kuria", "country": "KI", "state": "Gilbert-Islands" }, "MNK": { "city": "Maiana", "country": "KI", "state": "Gilbert-Islands" }, "MZK": { "city": "Marakei", "country": "KI", "state": "Gilbert-Islands" }, "MTK": { "city": "Makin Island", "country": "KI", "state": "Gilbert-Islands" }, "NIG": { "city": "Nikunau", "country": "KI", "state": "Gilbert-Islands" }, "OOT": { "city": "Onotoa", "country": "KI", "state": "Gilbert-Islands" }, "TRW": { "city": "Tarawa", "country": "KI", "state": "Gilbert-Islands" }, "AEA": { "city": "Abemama Atoll", "country": "KI", "state": "Gilbert-Islands" }, "TBF": { "city": "", "country": "KI", "state": "Gilbert-Islands" }, "TMN": { "city": "Tamana Island", "country": "KI", "state": "Gilbert-Islands" }, "NON": { "city": "Nonouti", "country": "KI", "state": "Gilbert-Islands" }, "AIS": { "city": "Arorae Island", "country": "KI", "state": "Gilbert-Islands" }, "TSU": { "city": "Tabiteuea South", "country": "KI", "state": "Gilbert-Islands" }, "BBG": { "city": "Butaritari Atoll", "country": "KI", "state": "Gilbert-Islands" }, "AAK": { "city": "Buariki", "country": "KI", "state": "Gilbert-Islands" }, "IUE": { "city": "Alofi", "country": "NU", "state": "" }, "FUT": { "city": "Futuna Island", "country": "WF", "state": "Alo" }, "WLS": { "city": "Wallis Island", "country": "WF", "state": "Uvea" }, "OFU": { "city": "Ofu Village", "country": "AS", "state": "Manu'a" }, "AAU": { "city": "Asau", "country": "WS", "state": "" }, "APW": { "city": "Apia", "country": "WS", "state": "A'ana" }, "FGI": { "city": "Apia", "country": "WS", "state": "Tuamasaga" }, "FTI": { "city": "Fitiuta Village", "country": "AS", "state": "Manu'a" }, "MXS": { "city": "Maota", "country": "WS", "state": "" }, "PPG": { "city": "Pago Pago", "country": "AS", "state": "Eastern-District" }, "PPT": { "city": "Papeete", "country": "PF", "state": "Iles-du-Vent" }, "RUR": { "city": "", "country": "PF", "state": "Iles-Australes" }, "TUB": { "city": "", "country": "PF", "state": "Iles-Australes" }, "RVV": { "city": "", "country": "PF", "state": "Iles-Australes" }, "AAA": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "FGU": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "TIH": { "city": "", "country": "PF", "state": "" }, "APK": { "city": "Apataki", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "REA": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "FAV": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "HHZ": { "city": "Hikueru Atoll", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "XMH": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "GMR": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "KKR": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "MKP": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "NAU": { "city": "Napuka Island", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "TKV": { "city": "Tatakoto", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "PKP": { "city": "", "country": "PF", "state": "" }, "PUK": { "city": "Pukarua", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "TKP": { "city": "", "country": "PF", "state": "" }, "AXR": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "MVT": { "city": "", "country": "PF", "state": "" }, "NUK": { "city": "Nukutavake", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "ZTA": { "city": "", "country": "PF", "state": "" }, "AHE": { "city": "Ahe Atoll", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "KHZ": { "city": "Kauehi", "country": "PF", "state": "" }, "FAC": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "FHZ": { "city": "Fakahina", "country": "PF", "state": "" }, "RKA": { "city": "", "country": "PF", "state": "" }, "RRR": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "TKX": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "NHV": { "city": "", "country": "PF", "state": "Iles-Marquises" }, "AUQ": { "city": "", "country": "PF", "state": "Iles-Marquises" }, "UAP": { "city": "Ua Pou", "country": "PF", "state": "Iles-Marquises" }, "UAH": { "city": "Ua Huka", "country": "PF", "state": "Iles-Marquises" }, "BOB": { "city": "Motu Mute", "country": "PF", "state": "Leeward-Islands" }, "TTI": { "city": "Tetiaroa", "country": "PF", "state": "" }, "RGI": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "HUH": { "city": "Fare", "country": "PF", "state": "Leeward-Islands" }, "MOZ": { "city": "", "country": "PF", "state": "Iles-du-Vent" }, "HOI": { "city": "", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "MAU": { "city": "", "country": "PF", "state": "Leeward-Islands" }, "RFP": { "city": "Uturoa", "country": "PF", "state": "Leeward-Islands" }, "VHZ": { "city": "Vahitahi", "country": "PF", "state": "Iles-Tuamotu-Gambier" }, "MTV": { "city": "Ablow", "country": "VU", "state": "" }, "SLH": { "city": "Sola", "country": "VU", "state": "Torba" }, "TOH": { "city": "Loh/Linua", "country": "VU", "state": "Torba" }, "EAE": { "city": "Sangafa", "country": "VU", "state": "" }, "CCV": { "city": "Craig Cove", "country": "VU", "state": "Malampa" }, "LOD": { "city": "Longana", "country": "VU", "state": "Penama" }, "SSR": { "city": "Pentecost Island", "country": "VU", "state": "Penama" }, "PBJ": { "city": "Paama Island", "country": "VU", "state": "Malampa" }, "LPM": { "city": "Lamap", "country": "VU", "state": "Malampa" }, "LNB": { "city": "Lamen Bay", "country": "VU", "state": "Shefa" }, "MWF": { "city": "Maewo Island", "country": "VU", "state": "Penama" }, "LNE": { "city": "Lonorore", "country": "VU", "state": "Penama" }, "NUS": { "city": "Norsup", "country": "VU", "state": "Malampa" }, "ZGU": { "city": "Gaua Island", "country": "VU", "state": "Torba" }, "RCL": { "city": "Redcliffe", "country": "VU", "state": "Penama" }, "SON": { "city": "Luganville", "country": "VU", "state": "Sanma" }, "TGH": { "city": "Tongoa Island", "country": "VU", "state": "Shefa" }, "ULB": { "city": "Ambryn Island", "country": "VU", "state": "Malampa" }, "VLS": { "city": "Valesdir", "country": "VU", "state": "Shefa" }, "WLH": { "city": "Walaha", "country": "VU", "state": "Penama" }, "SWJ": { "city": "Malekula Island", "country": "VU", "state": "Malampa" }, "OLJ": { "city": "Olpoi", "country": "VU", "state": "Sanma" }, "AUY": { "city": "Anelghowhat", "country": "VU", "state": "Tafea" }, "AWD": { "city": "Aniwa", "country": "VU", "state": "Tafea" }, "DLY": { "city": "Dillon's Bay", "country": "VU", "state": "Tafea" }, "FTA": { "city": "Futuna Island", "country": "VU", "state": "Tafea" }, "IPA": { "city": "Ipota", "country": "VU", "state": "Tafea" }, "UIQ": { "city": "Quion Hill", "country": "VU", "state": "Shefa" }, "VLI": { "city": "Port Vila", "country": "VU", "state": "Shefa" }, "TAH": { "city": "", "country": "VU", "state": "Tafea" }, "TGJ": { "city": "Tiga", "country": "NC", "state": "" }, "BMY": { "city": "Waala", "country": "NC", "state": "North-Province" }, "KNQ": { "city": "Kone", "country": "NC", "state": "" }, "ILP": { "city": "Ile des Pins", "country": "NC", "state": "" }, "HLU": { "city": "Houailou", "country": "NC", "state": "" }, "KOC": { "city": "Koumac", "country": "NC", "state": "" }, "LIF": { "city": "Lifou", "country": "NC", "state": "Loyalty-Islands" }, "GEA": { "city": "Noumea", "country": "NC", "state": "South-Province" }, "IOU": { "city": "Ile Ouen", "country": "NC", "state": "" }, "PUV": { "city": "Poum", "country": "NC", "state": "" }, "PDC": { "city": "Mueo", "country": "NC", "state": "" }, "MEE": { "city": "Mare", "country": "NC", "state": "Loyalty-Islands" }, "TOU": { "city": "Touho", "country": "NC", "state": "" }, "UVE": { "city": "Ouvea", "country": "NC", "state": "Loyalty-Islands" }, "NOU": { "city": "Noumea", "country": "NC", "state": "South-Province" }, "AKL": { "city": "Auckland", "country": "NZ", "state": "Auckland" }, "TUO": { "city": "Taupo", "country": "NZ", "state": "Auckland" }, "AMZ": { "city": "Manurewa", "country": "NZ", "state": "Auckland" }, "ASG": { "city": "", "country": "NZ", "state": "Canterbury" }, "CHC": { "city": "Christchurch", "country": "NZ", "state": "Canterbury" }, "CHT": { "city": "Waitangi", "country": "NZ", "state": "Chatham-Islands" }, "CMV": { "city": "", "country": "NZ", "state": "Waikato" }, "DGR": { "city": "", "country": "NZ", "state": "Northland" }, "DUD": { "city": "Dunedin", "country": "NZ", "state": "Otago" }, "WHO": { "city": "", "country": "NZ", "state": "West-Coast" }, "GBZ": { "city": "Claris", "country": "NZ", "state": "Auckland" }, "GMN": { "city": "", "country": "NZ", "state": "West-Coast" }, "GIS": { "city": "Gisborne", "country": "NZ", "state": "Gisborne" }, "GTN": { "city": "Glentanner Station", "country": "NZ", "state": "Canterbury" }, "HKK": { "city": "", "country": "NZ", "state": "West-Coast" }, "HLZ": { "city": "Hamilton", "country": "NZ", "state": "Waikato" }, "WIK": { "city": "", "country": "NZ", "state": "Auckland" }, "KBZ": { "city": "", "country": "NZ", "state": "Marlborough" }, "KKE": { "city": "Kerikeri", "country": "NZ", "state": "Northland" }, "KKO": { "city": "", "country": "NZ", "state": "Auckland" }, "KAT": { "city": "Kaitaia", "country": "NZ", "state": "Auckland" }, "ALR": { "city": "Alexandra", "country": "NZ", "state": "Otago" }, "MTA": { "city": "", "country": "NZ", "state": "Auckland" }, "MON": { "city": "", "country": "NZ", "state": "Canterbury" }, "MFN": { "city": "", "country": "NZ", "state": "Southland" }, "MZP": { "city": "", "country": "NZ", "state": "Nelson" }, "TEU": { "city": "", "country": "NZ", "state": "Southland" }, "MRO": { "city": "Masterton", "country": "NZ", "state": "Wellington" }, "NPL": { "city": "New Plymouth", "country": "NZ", "state": "Taranaki" }, "NPE": { "city": "", "country": "NZ", "state": "Hawke's-Bay" }, "NSN": { "city": "Nelson", "country": "NZ", "state": "Nelson" }, "IVC": { "city": "Invercargill", "country": "NZ", "state": "Southland" }, "OHA": { "city": "", "country": "NZ", "state": "Wellington" }, "OAM": { "city": "", "country": "NZ", "state": "Otago" }, "PMR": { "city": "", "country": "NZ", "state": "Wellington" }, "PCN": { "city": "Picton", "country": "NZ", "state": "Marlborough" }, "PPQ": { "city": "", "country": "NZ", "state": "Wellington" }, "ZQN": { "city": "Queenstown", "country": "NZ", "state": "Otago" }, "RAG": { "city": "", "country": "NZ", "state": "Waikato" }, "SZS": { "city": "Oban", "country": "NZ", "state": "Southland" }, "ROT": { "city": "Rotorua", "country": "NZ", "state": "Auckland" }, "TRG": { "city": "Tauranga", "country": "NZ", "state": "Bay-of-Plenty" }, "TMZ": { "city": "", "country": "NZ", "state": "Waikato" }, "KTF": { "city": "", "country": "NZ", "state": "Tasman" }, "TKZ": { "city": "Tokoroa", "country": "NZ", "state": "Waikato" }, "THH": { "city": "Taharoa", "country": "NZ", "state": "Waikato" }, "TIU": { "city": "", "country": "NZ", "state": "Canterbury" }, "TWZ": { "city": "Twitzel", "country": "NZ", "state": "Canterbury" }, "BHE": { "city": "Blenheim", "country": "NZ", "state": "Marlborough" }, "WKA": { "city": "", "country": "NZ", "state": "Otago" }, "WHK": { "city": "", "country": "NZ", "state": "Auckland" }, "WLG": { "city": "Wellington", "country": "NZ", "state": "Wellington" }, "WIR": { "city": "Wairoa", "country": "NZ", "state": "Hawke's-Bay" }, "WRE": { "city": "", "country": "NZ", "state": "Northland" }, "WSZ": { "city": "", "country": "NZ", "state": "West-Coast" }, "WTZ": { "city": "", "country": "NZ", "state": "Auckland" }, "WAG": { "city": "Wanganui", "country": "NZ", "state": "Manawatu-Wanganui" }, "BIN": { "city": "Bamiyan", "country": "AF", "state": "Bamyan" }, "BST": { "city": "Bost", "country": "AF", "state": "Helmand" }, "CCN": { "city": "Chakcharan", "country": "AF", "state": "Ghowr" }, "DAZ": { "city": "Darwaz", "country": "AF", "state": "Badakhshan" }, "FAH": { "city": "Farah", "country": "AF", "state": "Farah" }, "FBD": { "city": "Faizabad", "country": "AF", "state": "Badakhshan" }, "KWH": { "city": "Khwahan", "country": "AF", "state": "Badakhshan" }, "HEA": { "city": "", "country": "AF", "state": "Herat" }, "OAI": { "city": "Bagram", "country": "AF", "state": "Parwan" }, "JAA": { "city": "", "country": "AF", "state": "Nangarhar" }, "KBL": { "city": "Kabul", "country": "AF", "state": "Kabul" }, "KDH": { "city": "", "country": "AF", "state": "Kandahar" }, "KHT": { "city": "Khost", "country": "AF", "state": "Khowst" }, "MMZ": { "city": "", "country": "AF", "state": "Faryab" }, "MZR": { "city": "", "country": "AF", "state": "Balkh" }, "LQN": { "city": "Qala-I-Naw", "country": "AF", "state": "Badghis" }, "OAS": { "city": "Sharana", "country": "AF", "state": "Paktika" }, "OAH": { "city": "", "country": "AF", "state": "Herat" }, "SGA": { "city": "Sheghnan", "country": "AF", "state": "Badakhshan" }, "TII": { "city": "Tarin Kowt", "country": "AF", "state": "Oruzgan" }, "UND": { "city": "", "country": "AF", "state": "Kunduz" }, "OAZ": { "city": "", "country": "AF", "state": "Helmand" }, "ZAJ": { "city": "Zaranj", "country": "AF", "state": "" }, "BAH": { "city": "Manama", "country": "BH", "state": "Muharraq" }, "AHB": { "city": "Abha", "country": "SA", "state": "" }, "HOF": { "city": "", "country": "SA", "state": "Eastern-Province" }, "ABT": { "city": "", "country": "SA", "state": "" }, "BHH": { "city": "", "country": "SA", "state": "" }, "DMM": { "city": "Ad Dammam", "country": "SA", "state": "Eastern-Province" }, "DHA": { "city": "", "country": "SA", "state": "Eastern-Province" }, "DWD": { "city": "Dawadmi", "country": "SA", "state": "Ar-Riyaḑ" }, "GIZ": { "city": "Jizan", "country": "SA", "state": "Jizan" }, "ELQ": { "city": "", "country": "SA", "state": "" }, "URY": { "city": "", "country": "SA", "state": "Al-Jawf" }, "HAS": { "city": "", "country": "SA", "state": "Ḩaʼil" }, "QJB": { "city": "Jubail", "country": "SA", "state": "Eastern-Province" }, "JED": { "city": "Jeddah", "country": "SA", "state": "Makkah" }, "HBT": { "city": "King Khaled Military City", "country": "SA", "state": "" }, "KMX": { "city": "", "country": "SA", "state": "" }, "MED": { "city": "Medina", "country": "SA", "state": "Al-Madinah-al-Munawwarah" }, "EAM": { "city": "", "country": "SA", "state": "" }, "AQI": { "city": "Qaisumah", "country": "SA", "state": "Eastern-Province" }, "AKH": { "city": "", "country": "SA", "state": "Ar-Riyaḑ" }, "RAH": { "city": "Rafha", "country": "SA", "state": "Northern-Borders" }, "RUH": { "city": "Riyadh", "country": "SA", "state": "" }, "RAE": { "city": "Arar", "country": "SA", "state": "Northern-Borders" }, "XXN": { "city": "Riyadh", "country": "SA", "state": "Ar-Riyaḑ" }, "SHW": { "city": "", "country": "SA", "state": "" }, "AJF": { "city": "Al-Jawf", "country": "SA", "state": "Al-Jawf" }, "SLF": { "city": "", "country": "SA", "state": "Ar-Riyaḑ" }, "TUU": { "city": "", "country": "SA", "state": "Tabuk" }, "TIF": { "city": "", "country": "SA", "state": "Makkah" }, "TUI": { "city": "", "country": "SA", "state": "Northern-Borders" }, "WAE": { "city": "", "country": "SA", "state": "Ar-Riyaḑ" }, "EJH": { "city": "Al Wajh", "country": "SA", "state": "Tabuk" }, "YNB": { "city": "", "country": "SA", "state": "Al-Madinah-al-Munawwarah" }, "ZUL": { "city": "Zilfi", "country": "SA", "state": "Ar-Riyaḑ" }, "ABD": { "city": "Abadan", "country": "IR", "state": "Khuzestan" }, "DEF": { "city": "", "country": "IR", "state": "Khuzestan" }, "OMI": { "city": "Omidiyeh", "country": "IR", "state": "Khuzestan" }, "MRX": { "city": "", "country": "IR", "state": "Khuzestan" }, "AWZ": { "city": "Ahwaz", "country": "IR", "state": "Khuzestan" }, "AEU": { "city": "", "country": "IR", "state": "Hormozgan" }, "BUZ": { "city": "Bushehr", "country": "IR", "state": "Bushehr" }, "AOY": { "city": "Asaloyeh", "country": "IR", "state": "" }, "KNR": { "city": "Kangan", "country": "IR", "state": "Bushehr" }, "KIH": { "city": "Kish Island", "country": "IR", "state": "Hormozgan" }, "BDH": { "city": "Bandar Lengeh", "country": "IR", "state": "Hormozgan" }, "YEH": { "city": "Asalouyeh", "country": "IR", "state": "Bushehr" }, "KHK": { "city": "", "country": "IR", "state": "Bushehr" }, "SXI": { "city": "", "country": "IR", "state": "Hormozgan" }, "LVP": { "city": "", "country": "IR", "state": "Hormozgan" }, "KSH": { "city": "Kermanshah", "country": "IR", "state": "Kermanshah" }, "IIL": { "city": "Ilam", "country": "IR", "state": "Ilam" }, "KHD": { "city": "", "country": "IR", "state": "Lorestan" }, "SDG": { "city": "", "country": "IR", "state": "Kordestan" }, "IFH": { "city": "Hesa", "country": "IR", "state": "Isfahan" }, "IFN": { "city": "Isfahan", "country": "IR", "state": "Isfahan" }, "CQD": { "city": "Shahrekord", "country": "IR", "state": "Chaharmahal-and-Bakhtiari" }, "RAS": { "city": "Rasht", "country": "IR", "state": "Gilan" }, "HDM": { "city": "Hamadan", "country": "IR", "state": "Hamadan" }, "AJK": { "city": "Araak", "country": "IR", "state": "Markazi" }, "IKA": { "city": "Tehran", "country": "IR", "state": "Tehran" }, "THR": { "city": "Tehran", "country": "IR", "state": "Tehran" }, "BND": { "city": "Bandar Abbas", "country": "IR", "state": "Hormozgan" }, "KER": { "city": "Kerman", "country": "IR", "state": "Kerman" }, "BXR": { "city": "", "country": "IR", "state": "Kerman" }, "HDR": { "city": "Havadarya", "country": "IR", "state": "Hormozgan" }, "RJN": { "city": "", "country": "IR", "state": "Kerman" }, "SYJ": { "city": "", "country": "IR", "state": "Kerman" }, "XBJ": { "city": "Birjand", "country": "IR", "state": "Khorasan-e-Jonubi" }, "CKT": { "city": "Sarakhs", "country": "IR", "state": "Razavi-Khorasan" }, "RUD": { "city": "", "country": "IR", "state": "Semnan" }, "MHD": { "city": "Mashhad", "country": "IR", "state": "Razavi-Khorasan" }, "BJB": { "city": "Bojnord", "country": "IR", "state": "Khorasan-e-Shomali" }, "AFZ": { "city": "Sabzevar", "country": "IR", "state": "Razavi-Khorasan" }, "TCX": { "city": "Tabas", "country": "IR", "state": "Yazd" }, "BBL": { "city": "Babolsar", "country": "IR", "state": "Mazandaran" }, "GBT": { "city": "Gorgan", "country": "IR", "state": "Mazandaran" }, "BSM": { "city": "Amol", "country": "IR", "state": "Mazandaran" }, "NSH": { "city": "", "country": "IR", "state": "Mazandaran" }, "RZR": { "city": "", "country": "IR", "state": "Mazandaran" }, "SRY": { "city": "Sari", "country": "IR", "state": "Mazandaran" }, "FAZ": { "city": "Fasa", "country": "IR", "state": "Fars" }, "LRR": { "city": "Lar", "country": "IR", "state": "Fars" }, "SYZ": { "city": "Shiraz", "country": "IR", "state": "Fars" }, "KHY": { "city": "Khoy", "country": "IR", "state": "Az̄arbayjan-e-Gharbi" }, "ADU": { "city": "Ardabil", "country": "IR", "state": "Ardabil" }, "ACP": { "city": "Maragheh", "country": "IR", "state": "East-Azerbaijan" }, "PFQ": { "city": "Parsabad", "country": "IR", "state": "Ardabil" }, "OMH": { "city": "Urmia", "country": "IR", "state": "Az̄arbayjan-e-Gharbi" }, "TBZ": { "city": "Tabriz", "country": "IR", "state": "East-Azerbaijan" }, "AZD": { "city": "Yazd", "country": "IR", "state": "Yazd" }, "ACZ": { "city": "", "country": "IR", "state": "Sistan-and-Baluchestan" }, "ZBR": { "city": "Chabahar", "country": "IR", "state": "Sistan-and-Baluchestan" }, "ZAH": { "city": "Zahedan", "country": "IR", "state": "Sistan-and-Baluchestan" }, "AMM": { "city": "Amman", "country": "JO", "state": "Amman" }, "ADJ": { "city": "Amman", "country": "JO", "state": "Amman" }, "AQJ": { "city": "Aqaba", "country": "JO", "state": "Aqaba" }, "OMF": { "city": "Mafraq", "country": "JO", "state": "Mafraq" }, "DWN": { "city": "Oklahoma City", "country": "US", "state": "Oklahoma" }, "KWI": { "city": "Kuwait City", "country": "KW", "state": "" }, "BEY": { "city": "Beirut", "country": "LB", "state": "Mont-Liban" }, "KYE": { "city": "Tripoli", "country": "LB", "state": "Liban-Nord" }, "AUH": { "city": "Abu Dhabi", "country": "AE", "state": "Abu-Dhabi" }, "AZI": { "city": "", "country": "AE", "state": "Abu-Dhabi" }, "AAN": { "city": "Al Ain", "country": "AE", "state": "Abu-Dhabi" }, "DHF": { "city": "", "country": "AE", "state": "Abu-Dhabi" }, "DXB": { "city": "Dubai", "country": "AE", "state": "Dubai" }, "NHD": { "city": "Dubai", "country": "AE", "state": "Dubai" }, "DWC": { "city": "Jebel Ali", "country": "AE", "state": "Dubai" }, "FJR": { "city": "", "country": "AE", "state": "Al-Fujayrah" }, "RKT": { "city": "Ras Al Khaimah", "country": "AE", "state": "Raʼs-al-Khaymah" }, "SHJ": { "city": "Sharjah", "country": "AE", "state": "Ash-Shariqah" }, "RMB": { "city": "Buraimi", "country": "OM", "state": "Al-Buraimi" }, "DQM": { "city": "Duqm", "country": "OM", "state": "Duqm" }, "FAU": { "city": "Fahud", "country": "OM", "state": "Az̧-Z̧ahirah" }, "RNM": { "city": "Ghaba", "country": "OM", "state": "Al-Wusţa" }, "KHS": { "city": "Khasab", "country": "OM", "state": "Musandam" }, "LKW": { "city": "", "country": "OM", "state": "Az̧-Z̧ahirah" }, "MSH": { "city": "Masirah", "country": "OM", "state": "Southeastern-Governorate" }, "MCT": { "city": "Muscat", "country": "OM", "state": "Muscat" }, "OMM": { "city": "Marmul", "country": "OM", "state": "Dhofar" }, "SLL": { "city": "Salalah", "country": "OM", "state": "Dhofar" }, "OHS": { "city": "Sohar", "country": "OM", "state": "Al-Batinah-North" }, "SUH": { "city": "Sur", "country": "OM", "state": "Southeastern-Governorate" }, "TTH": { "city": "Thumrait", "country": "OM", "state": "Dhofar" }, "AAW": { "city": "Abbottabad", "country": "PK", "state": "Khyber-Pakhtunkhwa" }, "BHW": { "city": "Bhagatanwala", "country": "PK", "state": "Punjab" }, "BNP": { "city": "Bannu", "country": "PK", "state": "Khyber-Pakhtunkhwa" }, "WGB": { "city": "Bahawalnagar", "country": "PK", "state": "Punjab" }, "BHV": { "city": "Bahawalpur", "country": "PK", "state": "Punjab" }, "CJL": { "city": "Chitral", "country": "PK", "state": "Khyber-Pakhtunkhwa" }, "CHB": { "city": "Chilas", "country": "PK", "state": "Gilgit-Baltistan" }, "DBA": { "city": "Dalbandin", "country": "PK", "state": "Balochistan" }, "DDU": { "city": "Dadu", "country": "PK", "state": "Sindh" }, "DEA": { "city": "Dera Ghazi Khan", "country": "PK", "state": "Punjab" }, "DSK": { "city": "Dera Ismael Khan", "country": "PK", "state": "Khyber-Pakhtunkhwa" }, "LYP": { "city": "Faisalabad", "country": "PK", "state": "Punjab" }, "GWD": { "city": "Gwadar", "country": "PK", "state": "Balochistan" }, "GIL": { "city": "Gilgit", "country": "PK", "state": "Gilgit-Baltistan" }, "JAG": { "city": "Jacobabad", "country": "PK", "state": "Sindh" }, "JIW": { "city": "Jiwani", "country": "PK", "state": "Balochistan" }, "KHI": { "city": "Karachi", "country": "PK", "state": "Sindh" }, "HDD": { "city": "Hyderabad", "country": "PK", "state": "Sindh" }, "KDD": { "city": "Khuzdar", "country": "PK", "state": "Balochistan" }, "KBH": { "city": "Kalat", "country": "PK", "state": "Balochistan" }, "OHT": { "city": "Kohat", "country": "PK", "state": "Khyber-Pakhtunkhwa" }, "LHE": { "city": "Lahore", "country": "PK", "state": "Punjab" }, "LRG": { "city": "Loralai", "country": "PK", "state": "Balochistan" }, "XJM": { "city": "Mangla", "country": "PK", "state": "Punjab" }, "MFG": { "city": "Muzaffarabad", "country": "PK", "state": "Azad-Kashmir" }, "MWD": { "city": "Mianwali", "country": "PK", "state": "Punjab" }, "MJD": { "city": "Moenjodaro", "country": "PK", "state": "Sindh" }, "MPD": { "city": "Sindhri", "country": "PK", "state": "Sindh" }, "MUX": { "city": "Multan", "country": "PK", "state": "Punjab" }, "WNS": { "city": "Nawabash", "country": "PK", "state": "Sindh" }, "NHS": { "city": "Nushki", "country": "PK", "state": "Balochistan" }, "ORW": { "city": "Ormara Raik", "country": "PK", "state": "Balochistan" }, "PAJ": { "city": "Parachinar", "country": "PK", "state": "FATA" }, "PJG": { "city": "Panjgur", "country": "PK", "state": "Balochistan" }, "PSI": { "city": "Pasni", "country": "PK", "state": "Balochistan" }, "PEW": { "city": "Peshawar", "country": "PK", "state": "Khyber-Pakhtunkhwa" }, "UET": { "city": "Quetta", "country": "PK", "state": "Balochistan" }, "RYK": { "city": "Rahim Yar Khan", "country": "PK", "state": "Punjab" }, "ISB": { "city": "Islamabad", "country": "PK", "state": "Punjab" }, "RAZ": { "city": "Rawalakot", "country": "PK", "state": "Azad-Kashmir" }, "SBQ": { "city": "Sibi", "country": "PK", "state": "Balochistan" }, "KDU": { "city": "Skardu", "country": "PK", "state": "Gilgit-Baltistan" }, "SKZ": { "city": "Mirpur Khas", "country": "PK", "state": "Sindh" }, "SYW": { "city": "Sehwan Sharif", "country": "PK", "state": "Sindh" }, "SGI": { "city": "Sargodha", "country": "PK", "state": "Punjab" }, "SDT": { "city": "Saidu Sharif", "country": "PK", "state": "Khyber-Pakhtunkhwa" }, "SKT": { "city": "Sialkot", "country": "PK", "state": "Punjab" }, "SUL": { "city": "Sui", "country": "PK", "state": "Balochistan" }, "SWN": { "city": "Sahiwal", "country": "PK", "state": "Punjab" }, "TLB": { "city": "Tarbela", "country": "PK", "state": "Khyber-Pakhtunkhwa" }, "BDN": { "city": "Badin", "country": "PK", "state": "Sindh" }, "TFT": { "city": "Taftan", "country": "PK", "state": "Balochistan" }, "TUK": { "city": "Turbat", "country": "PK", "state": "Balochistan" }, "WAF": { "city": "Waana", "country": "PK", "state": "FATA" }, "PZH": { "city": "Fort Sandeman", "country": "PK", "state": "Balochistan" }, "IQA": { "city": "Hit", "country": "IQ", "state": "Anbar" }, "BMN": { "city": "Bamarni", "country": "IQ", "state": "Dahuk" }, "BGW": { "city": "Baghdad", "country": "IQ", "state": "Baghdad" }, "OSB": { "city": "Mosul", "country": "IQ", "state": "Ninawa" }, "EBL": { "city": "Arbil", "country": "IQ", "state": "Arbil" }, "KIK": { "city": "Kirkuk", "country": "IQ", "state": "Kirkuk" }, "BSR": { "city": "Basrah", "country": "IQ", "state": "Basra" }, "NJF": { "city": "Najaf", "country": "IQ", "state": "Najaf Governorate" }, "RQW": { "city": "Qayyarah", "country": "IQ", "state": "Ninawa" }, "ISU": { "city": "Sulaymaniyah", "country": "IQ", "state": "As-Sulaymaniyah" }, "ALP": { "city": "Aleppo", "country": "SY", "state": "Aleppo" }, "DAM": { "city": "Damascus", "country": "SY", "state": "Rif-dimashq" }, "DEZ": { "city": "Deir ez-Zor", "country": "SY", "state": "Deir-ez-Zor" }, "KAC": { "city": "Kamishly", "country": "SY", "state": "Al-Hasakah" }, "LTK": { "city": "Latakia", "country": "SY", "state": "Latakia" }, "PMS": { "city": "", "country": "SY", "state": "Homs" }, "DIA": { "city": "Doha", "country": "QA", "state": "Baladiyat-ad-Dawḩah" }, "IUD": { "city": "Ar Rayyan", "country": "QA", "state": "Baladiyat-ar-Rayyan" }, "DOH": { "city": "Doha", "country": "QA", "state": "Baladiyat-ad-Dawḩah" }, "ADE": { "city": "Aden", "country": "YE", "state": "Aden" }, "AXK": { "city": "", "country": "YE", "state": "Shabwah" }, "BHN": { "city": "", "country": "YE", "state": "Shabwah" }, "AAY": { "city": "", "country": "YE", "state": "Al-Mahrah" }, "HOD": { "city": "Hodeida", "country": "YE", "state": "Al-Hudaydah" }, "MYN": { "city": "Mareb", "country": "YE", "state": "Ma’rib" }, "IHN": { "city": "Qishn", "country": "YE", "state": "Al-Mahrah" }, "RIY": { "city": "Riyan", "country": "YE", "state": "Muḩafaz̧at-Ḩaḑramawt" }, "SYE": { "city": "Sadah", "country": "YE", "state": "Sa‘dah" }, "SAH": { "city": "Sana'a", "country": "YE", "state": "Amanat-Al-Asimah" }, "SCT": { "city": "Socotra Islands", "country": "YE", "state": "Soqatra" }, "GXF": { "city": "Sayun", "country": "YE", "state": "Muḩafaz̧at-Ḩaḑramawt" }, "TAI": { "city": "Ta'izz", "country": "YE", "state": "Ta‘izz" }, "AKB": { "city": "Atka", "country": "US", "state": "Alaska" }, "PML": { "city": "Cold Bay", "country": "US", "state": "Alaska" }, "PAQ": { "city": "Palmer", "country": "US", "state": "Alaska" }, "BTI": { "city": "Barter Island Lrrs", "country": "US", "state": "Alaska" }, "BET": { "city": "Bethel", "country": "US", "state": "Alaska" }, "BVU": { "city": "Beluga", "country": "US", "state": "Alaska" }, "BIG": { "city": "Delta Junction Ft Greely", "country": "US", "state": "Alaska" }, "BKC": { "city": "Buckland", "country": "US", "state": "Alaska" }, "BMX": { "city": "Big Mountain", "country": "US", "state": "Alaska" }, "BRW": { "city": "Barrow", "country": "US", "state": "Alaska" }, "BTT": { "city": "Bettles", "country": "US", "state": "Alaska" }, "CDB": { "city": "Cold Bay", "country": "US", "state": "Alaska" }, "CEM": { "city": "Central", "country": "US", "state": "Alaska" }, "CHU": { "city": "Chuathbaluk", "country": "US", "state": "Alaska" }, "CIK": { "city": "Chalkyitsik", "country": "US", "state": "Alaska" }, "SCM": { "city": "Scammon Bay", "country": "US", "state": "Alaska" }, "IRC": { "city": "Circle", "country": "US", "state": "Alaska" }, "CDV": { "city": "Cordova", "country": "US", "state": "Alaska" }, "CZF": { "city": "Cape Romanzof", "country": "US", "state": "Alaska" }, "DRG": { "city": "Deering", "country": "US", "state": "Alaska" }, "RDB": { "city": "Red Dog", "country": "US", "state": "Alaska" }, "ADK": { "city": "Adak Island", "country": "US", "state": "Alaska" }, "DLG": { "city": "Dillingham", "country": "US", "state": "Alaska" }, "ADQ": { "city": "Kodiak", "country": "US", "state": "Alaska" }, "DUT": { "city": "Unalaska", "country": "US", "state": "Alaska" }, "EDF": { "city": "Anchorage", "country": "US", "state": "Alaska" }, "EEK": { "city": "Eek", "country": "US", "state": "Alaska" }, "EHM": { "city": "Cape Newenham", "country": "US", "state": "Alaska" }, "EIL": { "city": "Fairbanks", "country": "US", "state": "Alaska" }, "EMK": { "city": "Emmonak", "country": "US", "state": "Alaska" }, "ENA": { "city": "Kenai", "country": "US", "state": "Alaska" }, "FAI": { "city": "Fairbanks", "country": "US", "state": "Alaska" }, "FBK": { "city": "Fairbanks/Ft Wainwright", "country": "US", "state": "Alaska" }, "AFE": { "city": "Kake", "country": "US", "state": "Alaska" }, "ABL": { "city": "Ambler", "country": "US", "state": "Alaska" }, "FMC": { "city": "Five Mile", "country": "US", "state": "Alaska" }, "GAL": { "city": "Galena", "country": "US", "state": "Alaska" }, "GKN": { "city": "Gulkana", "country": "US", "state": "Alaska" }, "GLV": { "city": "Golovin", "country": "US", "state": "Alaska" }, "GAM": { "city": "Gambell", "country": "US", "state": "Alaska" }, "GST": { "city": "Gustavus", "country": "US", "state": "Alaska" }, "SGY": { "city": "Skagway", "country": "US", "state": "Alaska" }, "GMT": { "city": "Granite Mountain", "country": "US", "state": "Alaska" }, "HCR": { "city": "Holy Cross", "country": "US", "state": "Alaska" }, "HNE": { "city": "Tahneta Pass Lodge", "country": "US", "state": "Alaska" }, "HNS": { "city": "Haines", "country": "US", "state": "Alaska" }, "HOM": { "city": "Homer", "country": "US", "state": "Alaska" }, "HPB": { "city": "Hooper Bay", "country": "US", "state": "Alaska" }, "SHX": { "city": "Shageluk", "country": "US", "state": "Alaska" }, "IGG": { "city": "Igiugig", "country": "US", "state": "Alaska" }, "EGX": { "city": "Egegik", "country": "US", "state": "Alaska" }, "IAN": { "city": "Kiana", "country": "US", "state": "Alaska" }, "ILI": { "city": "Iliamna", "country": "US", "state": "Alaska" }, "UTO": { "city": "Utopia Creek", "country": "US", "state": "Alaska" }, "WAA": { "city": "Wales", "country": "US", "state": "Alaska" }, "JNU": { "city": "Juneau", "country": "US", "state": "Alaska" }, "KFP": { "city": "False Pass", "country": "US", "state": "Alaska" }, "AKK": { "city": "Akhiok", "country": "US", "state": "Alaska" }, "KKA": { "city": "Koyuk", "country": "US", "state": "Alaska" }, "AKN": { "city": "King Salmon", "country": "US", "state": "Alaska" }, "IKO": { "city": "Nikolski", "country": "US", "state": "Alaska" }, "AKP": { "city": "Anaktuvuk Pass", "country": "US", "state": "Alaska" }, "KTN": { "city": "Ketchikan", "country": "US", "state": "Alaska" }, "UUK": { "city": "Kuparuk", "country": "US", "state": "Alaska" }, "KAL": { "city": "Kaltag", "country": "US", "state": "Alaska" }, "AKW": { "city": "Klawock", "country": "US", "state": "Alaska" }, "KYK": { "city": "Karluk", "country": "US", "state": "Alaska" }, "KLG": { "city": "Kalskag", "country": "US", "state": "Alaska" }, "PTA": { "city": "Port Alsworth", "country": "US", "state": "Alaska" }, "LNI": { "city": "Lonely", "country": "US", "state": "Alaska" }, "DQH": { "city": "Deadhorse", "country": "US", "state": "Alaska" }, "LUR": { "city": "Cape Lisburne", "country": "US", "state": "Alaska" }, "KMO": { "city": "Manokotak", "country": "US", "state": "Alaska" }, "MCG": { "city": "McGrath", "country": "US", "state": "Alaska" }, "MLY": { "city": "Manley Hot Springs", "country": "US", "state": "Alaska" }, "MOU": { "city": "Mountain Village", "country": "US", "state": "Alaska" }, "MRI": { "city": "Anchorage", "country": "US", "state": "Iowa" }, "MYU": { "city": "Mekoryuk", "country": "US", "state": "Alaska" }, "WNA": { "city": "Napakiak", "country": "US", "state": "Alaska" }, "ANC": { "city": "Anchorage", "country": "US", "state": "Alaska" }, "ANI": { "city": "Aniak", "country": "US", "state": "Alaska" }, "ENN": { "city": "Nenana", "country": "US", "state": "Alaska" }, "ANN": { "city": "Annette", "country": "US", "state": "Alaska" }, "ANV": { "city": "Anvik", "country": "US", "state": "Alaska" }, "KNW": { "city": "New Stuyahok", "country": "US", "state": "Alaska" }, "OBU": { "city": "Kobuk", "country": "US", "state": "Alaska" }, "PCA": { "city": "Portage Creek", "country": "US", "state": "Alaska" }, "HNH": { "city": "Hoonah", "country": "US", "state": "Alaska" }, "OME": { "city": "Nome", "country": "US", "state": "Alaska" }, "OOK": { "city": "Toksook Bay", "country": "US", "state": "Alaska" }, "ORT": { "city": "Northway", "country": "US", "state": "Alaska" }, "OTZ": { "city": "Kotzebue", "country": "US", "state": "Alaska" }, "PBV": { "city": "St George", "country": "US", "state": "South-Carolina" }, "KPC": { "city": "Port Clarence", "country": "US", "state": "Alaska" }, "PSG": { "city": "Petersburg", "country": "US", "state": "Alaska" }, "PTH": { "city": "Port Heiden", "country": "US", "state": "Alaska" }, "PKA": { "city": "Napaskiak", "country": "US", "state": "Alaska" }, "PTU": { "city": "Platinum", "country": "US", "state": "Alaska" }, "PIP": { "city": "Pilot Point", "country": "US", "state": "Alaska" }, "PHO": { "city": "Point Hope", "country": "US", "state": "Alaska" }, "NUI": { "city": "Nuiqsut", "country": "US", "state": "Alaska" }, "ARC": { "city": "Arctic Village", "country": "US", "state": "Alaska" }, "RBY": { "city": "Ruby", "country": "US", "state": "Alaska" }, "SVA": { "city": "Savoonga", "country": "US", "state": "Alaska" }, "SCC": { "city": "Deadhorse", "country": "US", "state": "Alaska" }, "SDP": { "city": "Sand Point", "country": "US", "state": "Alaska" }, "SHH": { "city": "Shishmaref", "country": "US", "state": "Alaska" }, "SIT": { "city": "Sitka", "country": "US", "state": "Alaska" }, "SQL": { "city": "Sleetmute", "country": "US", "state": "Alaska" }, "KSM": { "city": "St Mary's", "country": "US", "state": "Alaska" }, "SNP": { "city": "St Paul Island", "country": "US", "state": "Alaska" }, "SMU": { "city": "Sheep Mountain", "country": "US", "state": "Alaska" }, "UMM": { "city": "Summit", "country": "US", "state": "Alaska" }, "SVW": { "city": "Sparrevohn", "country": "US", "state": "Alaska" }, "SXQ": { "city": "Soldotna", "country": "US", "state": "Alaska" }, "SYA": { "city": "Shemya", "country": "US", "state": "Alaska" }, "TAL": { "city": "Tanana", "country": "US", "state": "Alaska" }, "TNC": { "city": "Tin City", "country": "US", "state": "Alaska" }, "TOG": { "city": "Togiak Village", "country": "US", "state": "Alaska" }, "TKJ": { "city": "Tok", "country": "US", "state": "Alaska" }, "TLJ": { "city": "Takotna", "country": "US", "state": "Alaska" }, "ATK": { "city": "Atqasuk", "country": "US", "state": "Alaska" }, "AUK": { "city": "Alakanuk", "country": "US", "state": "Alaska" }, "UMT": { "city": "Umiat", "country": "US", "state": "Alaska" }, "UNK": { "city": "Unalakleet", "country": "US", "state": "Alaska" }, "VAK": { "city": "Chevak", "country": "US", "state": "Alaska" }, "KVC": { "city": "King Cove", "country": "US", "state": "Alaska" }, "VDZ": { "city": "Valdez", "country": "US", "state": "Alaska" }, "VEE": { "city": "Venetie", "country": "US", "state": "Alaska" }, "KVL": { "city": "Kivalina", "country": "US", "state": "Alaska" }, "WBQ": { "city": "Beaver", "country": "US", "state": "Alaska" }, "SWD": { "city": "Seward", "country": "US", "state": "Alaska" }, "WRG": { "city": "Wrangell", "country": "US", "state": "Alaska" }, "AIN": { "city": "Wainwright", "country": "US", "state": "Alaska" }, "WTK": { "city": "Noatak", "country": "US", "state": "Alaska" }, "IYS": { "city": "Wasilla", "country": "US", "state": "Alaska" }, "YAK": { "city": "Yakutat", "country": "US", "state": "Alaska" }, "CIS": { "city": "Abariringa", "country": "KI", "state": "Phoenix-Islands" }, "AKI": { "city": "Akiak", "country": "US", "state": "Alaska" }, "AET": { "city": "Allakaket", "country": "US", "state": "Alaska" }, "NCN": { "city": "Chenega", "country": "US", "state": "Alaska" }, "CLP": { "city": "Clarks Point", "country": "US", "state": "Alaska" }, "ELI": { "city": "Elim", "country": "US", "state": "Alaska" }, "KNK": { "city": "Kokhanok", "country": "US", "state": "Alaska" }, "KOT": { "city": "Kotlik", "country": "US", "state": "Alaska" }, "KYU": { "city": "Koyukuk", "country": "US", "state": "Alaska" }, "KWT": { "city": "Kwethluk", "country": "US", "state": "Alaska" }, "ORV": { "city": "Noorvik", "country": "US", "state": "Alaska" }, "SKK": { "city": "Shaktoolik", "country": "US", "state": "Alaska" }, "WSN": { "city": "South Naknek", "country": "US", "state": "Alaska" }, "FYU": { "city": "Fort Yukon", "country": "US", "state": "Alaska" }, "ROP": { "city": "Rota Island", "country": "MP", "state": "Rota" }, "SPN": { "city": "Saipan Island", "country": "MP", "state": "Saipan" }, "GUM": { "city": "Hagatna", "country": "GU", "state": "Barrigada" }, "TIQ": { "city": "Tinian Island", "country": "MP", "state": "Tinian" }, "BKH": { "city": "Kekaha", "country": "US", "state": "Hawaii" }, "HDH": { "city": "Mokuleia", "country": "US", "state": "Hawaii" }, "HHI": { "city": "Wahiawa", "country": "US", "state": "Hawaii" }, "HNM": { "city": "Hana", "country": "US", "state": "Hawaii" }, "JHM": { "city": "Lahaina", "country": "US", "state": "Hawaii" }, "JRF": { "city": "Kapolei", "country": "US", "state": "Hawaii" }, "KOA": { "city": "Kailua/Kona", "country": "US", "state": "Hawaii" }, "LIH": { "city": "Lihue", "country": "US", "state": "Hawaii" }, "LUP": { "city": "Kalaupapa", "country": "US", "state": "Hawaii" }, "MKK": { "city": "Kaunakakai", "country": "US", "state": "Hawaii" }, "MUE": { "city": "Kamuela", "country": "US", "state": "Hawaii" }, "HNL": { "city": "Honolulu", "country": "US", "state": "Hawaii" }, "LNY": { "city": "Lanai City", "country": "US", "state": "Hawaii" }, "OGG": { "city": "Kahului", "country": "US", "state": "Hawaii" }, "PAK": { "city": "Hanapepe", "country": "US", "state": "Hawaii" }, "BSF": { "city": "Camp Pohakuloa", "country": "US", "state": "Hawaii" }, "ITO": { "city": "Hilo", "country": "US", "state": "Hawaii" }, "UPP": { "city": "Hawi", "country": "US", "state": "Hawaii" }, "ENT": { "city": "Eniwetok Atoll", "country": "MH", "state": "Enewetak-Atoll" }, "MAJ": { "city": "Majuro Atoll", "country": "MH", "state": "Majuro-Atoll" }, "KIA": { "city": "Kaieteur Falls", "country": "GY", "state": "Potaro-Siparuni" }, "KWA": { "city": "Kwajalein", "country": "MH", "state": "Kwajalein-Atoll" }, "CXI": { "city": "Banana", "country": "KI", "state": "Line-Islands" }, "TNV": { "city": "Tabuaeran Island", "country": "KI", "state": "Line-Islands" }, "MDY": { "city": "Sand Island", "country": "UM", "state": "Midway-Islands" }, "PIZ": { "city": "Point Lay", "country": "US", "state": "Alaska" }, "TKK": { "city": "Weno Island", "country": "FM", "state": "Chuuk" }, "PNI": { "city": "Pohnpei Island", "country": "FM", "state": "Pohnpei" }, "ROR": { "city": "Babelthuap Island", "country": "PW", "state": "Airai" }, "KSA": { "city": "Okat", "country": "FM", "state": "Kosrae" }, "YAP": { "city": "Yap Island", "country": "FM", "state": "Yap" }, "AWK": { "city": "Wake Island", "country": "UM", "state": "Wake-Island" }, "KNH": { "city": "Shang-I", "country": "TW", "state": "Fukien" }, "LZN": { "city": "Nangang Island", "country": "TW", "state": "Fukien" }, "TTT": { "city": "Taitung City", "country": "TW", "state": "Taiwan" }, "GNI": { "city": "Lyudao", "country": "TW", "state": "Taiwan" }, "KHH": { "city": "Kaohsiung City", "country": "TW", "state": "Takao" }, "CYI": { "city": "Chiayi City", "country": "TW", "state": "Taiwan" }, "HCN": { "city": "Hengchung", "country": "TW", "state": "Taiwan" }, "TXG": { "city": "Taichung City", "country": "TW", "state": "Taiwan" }, "KYD": { "city": "Orchid Island", "country": "TW", "state": "Taiwan" }, "RMQ": { "city": "Taichung City", "country": "TW", "state": "Taiwan" }, "MFK": { "city": "Beigan Island", "country": "TW", "state": "Fukien" }, "TNN": { "city": "Tainan City", "country": "TW", "state": "Taiwan" }, "MZG": { "city": "Makung City", "country": "TW", "state": "Taiwan" }, "PIF": { "city": "Pingtung", "country": "TW", "state": "Taiwan" }, "TSA": { "city": "Taipei City", "country": "TW", "state": "Taiwan" }, "TPE": { "city": "Taipei", "country": "TW", "state": "Taiwan" }, "WOT": { "city": "Wang-an", "country": "TW", "state": "Taiwan" }, "HUN": { "city": "Hualien City", "country": "TW", "state": "Taiwan" }, "NRT": { "city": "Tokyo", "country": "JP", "state": "Chiba" }, "MMJ": { "city": "Matsumoto", "country": "JP", "state": "Nagano" }, "IBR": { "city": "Omitama", "country": "JP", "state": "Ibaraki" }, "MUS": { "city": "", "country": "JP", "state": "Tokyo" }, "IWO": { "city": "", "country": "JP", "state": "Tokyo" }, "KIX": { "city": "Osaka", "country": "JP", "state": "Osaka" }, "SHM": { "city": "Shirahama", "country": "JP", "state": "Wakayama" }, "UKB": { "city": "Kobe", "country": "JP", "state": "Hyogo" }, "HIW": { "city": "", "country": "JP", "state": "Hiroshima" }, "TJH": { "city": "Tajima", "country": "JP", "state": "Hyogo" }, "OBO": { "city": "Obihiro", "country": "JP", "state": "Hokkaido" }, "CTS": { "city": "Chitose / Tomakomai", "country": "JP", "state": "Hokkaido" }, "HKD": { "city": "Hakodate", "country": "JP", "state": "Hokkaido" }, "KUH": { "city": "Kushiro", "country": "JP", "state": "Hokkaido" }, "MMB": { "city": "Ozora", "country": "JP", "state": "Hokkaido" }, "SHB": { "city": "Nakashibetsu", "country": "JP", "state": "Hokkaido" }, "OKD": { "city": "Sapporo", "country": "JP", "state": "Hokkaido" }, "RBJ": { "city": "", "country": "JP", "state": "Hokkaido" }, "WKJ": { "city": "Wakkanai", "country": "JP", "state": "Hokkaido" }, "IKI": { "city": "Iki", "country": "JP", "state": "Nagasaki" }, "UBJ": { "city": "Ube", "country": "JP", "state": "Yamaguchi" }, "TSJ": { "city": "Tsushima", "country": "JP", "state": "Nagasaki" }, "MBE": { "city": "Monbetsu", "country": "JP", "state": "Hokkaido" }, "AKJ": { "city": "Asahikawa", "country": "JP", "state": "Hokkaido" }, "OIR": { "city": "", "country": "JP", "state": "Hokkaido" }, "RIS": { "city": "Rishiri", "country": "JP", "state": "Hokkaido" }, "KUM": { "city": "", "country": "JP", "state": "Kagoshima" }, "FUJ": { "city": "Goto", "country": "JP", "state": "Nagasaki" }, "FUK": { "city": "Fukuoka", "country": "JP", "state": "Fukuoka" }, "TNE": { "city": "", "country": "JP", "state": "Kagoshima" }, "KOJ": { "city": "Kagoshima", "country": "JP", "state": "Kagoshima" }, "KMI": { "city": "Miyazaki", "country": "JP", "state": "Miyazaki" }, "OIT": { "city": "Oita", "country": "JP", "state": "Oita" }, "KKJ": { "city": "Kitakyushu", "country": "JP", "state": "Fukuoka" }, "HSG": { "city": "Saga", "country": "JP", "state": "Saga" }, "KMJ": { "city": "Kumamoto", "country": "JP", "state": "Kumamoto" }, "NGS": { "city": "Nagasaki", "country": "JP", "state": "Nagasaki" }, "NGO": { "city": "Tokoname", "country": "JP", "state": "Aichi" }, "ASJ": { "city": "Amami", "country": "JP", "state": "Kagoshima" }, "OKE": { "city": "", "country": "JP", "state": "Kagoshima" }, "KKX": { "city": "", "country": "JP", "state": "Kagoshima" }, "TKN": { "city": "Tokunoshima", "country": "JP", "state": "Kagoshima" }, "NKM": { "city": "Nagoya", "country": "JP", "state": "Aichi" }, "FKJ": { "city": "", "country": "JP", "state": "Fukui" }, "QGU": { "city": "Gifu", "country": "JP", "state": "Gifu" }, "KMQ": { "city": "Kanazawa", "country": "JP", "state": "Ishikawa" }, "OKI": { "city": "Okinoshima", "country": "JP", "state": "Shimane" }, "TOY": { "city": "Toyama", "country": "JP", "state": "Toyama" }, "NTQ": { "city": "Wajima", "country": "JP", "state": "Ishikawa" }, "HIJ": { "city": "Hiroshima", "country": "JP", "state": "Hiroshima" }, "OKJ": { "city": "Okayama City", "country": "JP", "state": "Okayama" }, "IZO": { "city": "Izumo", "country": "JP", "state": "Shimane" }, "YGJ": { "city": "Yonago", "country": "JP", "state": "Tottori" }, "IWK": { "city": "Iwakuni", "country": "JP", "state": "Yamaguchi" }, "KCZ": { "city": "Nankoku", "country": "JP", "state": "Kochi" }, "MYJ": { "city": "Matsuyama", "country": "JP", "state": "Ehime" }, "ITM": { "city": "Osaka", "country": "JP", "state": "Hyogo" }, "TTJ": { "city": "Tottori", "country": "JP", "state": "Tottori" }, "TKS": { "city": "Tokushima", "country": "JP", "state": "Tokushima" }, "TAK": { "city": "Takamatsu", "country": "JP", "state": "Kagawa" }, "IWJ": { "city": "Masuda", "country": "JP", "state": "Shimane" }, "AOJ": { "city": "Aomori", "country": "JP", "state": "Aomori" }, "GAJ": { "city": "Yamagata", "country": "JP", "state": "Yamagata" }, "SDS": { "city": "", "country": "JP", "state": "Niigata" }, "FKS": { "city": "Sukagawa", "country": "JP", "state": "Fukushima" }, "HHE": { "city": "", "country": "JP", "state": "Aomori" }, "HNA": { "city": "", "country": "JP", "state": "Iwate" }, "AXT": { "city": "Akita", "country": "JP", "state": "Akita" }, "MSJ": { "city": "Misawa", "country": "JP", "state": "Aomori" }, "KIJ": { "city": "Niigata", "country": "JP", "state": "Niigata" }, "ONJ": { "city": "Odate", "country": "JP", "state": "Akita" }, "SDJ": { "city": "Sendai", "country": "JP", "state": "Miyagi" }, "SYO": { "city": "Shonai", "country": "JP", "state": "Yamagata" }, "NJA": { "city": "", "country": "JP", "state": "Kanagawa" }, "HAC": { "city": "Hachijojima", "country": "JP", "state": "Tokyo" }, "OIM": { "city": "Izu Oshima", "country": "JP", "state": "Tokyo" }, "MYE": { "city": "Miyakejima", "country": "JP", "state": "Tokyo" }, "HND": { "city": "Tokyo", "country": "JP", "state": "Tokyo" }, "QUT": { "city": "", "country": "JP", "state": "Tochigi" }, "OKO": { "city": "Fussa", "country": "JP", "state": "Tokyo" }, "MWX": { "city": "", "country": "KR", "state": "Jeollanam-do" }, "KWJ": { "city": "Gwangju", "country": "KR", "state": "Gwangju" }, "KUV": { "city": "Kunsan", "country": "KR", "state": "Jeollabuk-do" }, "CHN": { "city": "Jeon Ju", "country": "KR", "state": "Jeollabuk-do" }, "RSU": { "city": "Yeosu", "country": "KR", "state": "Jeollanam-do" }, "QUN": { "city": "Chun Chon City", "country": "KR", "state": "Gangwon-do" }, "SHO": { "city": "", "country": "KR", "state": "Gangwon-do" }, "KAG": { "city": "", "country": "KR", "state": "Gangwon-do" }, "WJU": { "city": "Wonju", "country": "KR", "state": "Gangwon-do" }, "YNY": { "city": "Sokcho / Gangneung", "country": "KR", "state": "Gangwon-do" }, "CJU": { "city": "Jeju City", "country": "KR", "state": "Jeju-do" }, "CHF": { "city": "Jinhae", "country": "KR", "state": "Gyeongsangnam-do" }, "PUS": { "city": "Busan", "country": "KR", "state": "Busan" }, "HIN": { "city": "Sacheon", "country": "KR", "state": "Gyeongsangnam-do" }, "USN": { "city": "Ulsan", "country": "KR", "state": "Ulsan" }, "ICN": { "city": "Seoul", "country": "KR", "state": "Incheon" }, "SSN": { "city": "", "country": "KR", "state": "Gyeonggi-do" }, "OSN": { "city": "", "country": "KR", "state": "Gyeonggi-do" }, "GMP": { "city": "Seoul", "country": "KR", "state": "Seoul" }, "SWU": { "city": "", "country": "KR", "state": "Gyeonggi-do" }, "KPO": { "city": "Pohang", "country": "KR", "state": "Gyeongsangbuk-do" }, "TAE": { "city": "Daegu", "country": "KR", "state": "Daegu" }, "CJJ": { "city": "Cheongju", "country": "KR", "state": "North-Chungcheong" }, "YEC": { "city": "", "country": "KR", "state": "Gyeongsangbuk-do" }, "OKA": { "city": "Naha", "country": "JP", "state": "Okinawa" }, "DNA": { "city": "", "country": "JP", "state": "Okinawa" }, "ISG": { "city": "Ishigaki", "country": "JP", "state": "Okinawa" }, "UEO": { "city": "", "country": "JP", "state": "Okinawa" }, "KJP": { "city": "Kerama", "country": "JP", "state": "Okinawa" }, "MMD": { "city": "", "country": "JP", "state": "Okinawa" }, "MMY": { "city": "Miyako City", "country": "JP", "state": "Okinawa" }, "AGJ": { "city": "Aguni", "country": "JP", "state": "Okinawa" }, "IEJ": { "city": "", "country": "JP", "state": "Okinawa" }, "HTR": { "city": "Hateruma", "country": "JP", "state": "Okinawa" }, "KTD": { "city": "", "country": "JP", "state": "Okinawa" }, "SHI": { "city": "", "country": "JP", "state": "Okinawa" }, "TRA": { "city": "", "country": "JP", "state": "Okinawa" }, "RNJ": { "city": "", "country": "JP", "state": "Kagoshima" }, "OGN": { "city": "", "country": "JP", "state": "Okinawa" }, "SFS": { "city": "Olongapo City", "country": "PH", "state": "Central-Luzon" }, "CRK": { "city": "Angeles City", "country": "PH", "state": "Central-Luzon" }, "LAO": { "city": "Laoag City", "country": "PH", "state": "Ilocos" }, "MNL": { "city": "Manila", "country": "PH", "state": "" }, "CYU": { "city": "Cuyo", "country": "PH", "state": "Mimaropa" }, "LGP": { "city": "Legazpi City", "country": "PH", "state": "Bicol" }, "NSP": { "city": "Cavite City", "country": "PH", "state": "Calabarzon" }, "LBX": { "city": "", "country": "PH", "state": "Mimaropa" }, "AAV": { "city": "Surallah", "country": "PH", "state": "Soccsksargen" }, "GES": { "city": "General Santos City", "country": "PH", "state": "Soccsksargen" }, "CBO": { "city": "Cotabato City", "country": "PH", "state": "ARMM" }, "DVO": { "city": "Davao City", "country": "PH", "state": "Davao" }, "BXU": { "city": "Butuan City", "country": "PH", "state": "Caraga" }, "BPH": { "city": "", "country": "PH", "state": "Caraga" }, "DPL": { "city": "Dipolog City", "country": "PH", "state": "Zamboanga-Peninsula" }, "CGM": { "city": "", "country": "PH", "state": "Northern-Mindanao" }, "IGN": { "city": "", "country": "PH", "state": "" }, "JOL": { "city": "", "country": "PH", "state": "ARMM" }, "CGY": { "city": "Cagayan De Oro City", "country": "PH", "state": "Northern-Mindanao" }, "MLP": { "city": "Malabang", "country": "PH", "state": "ARMM" }, "SGS": { "city": "", "country": "PH", "state": "ARMM" }, "OZC": { "city": "Ozamiz City", "country": "PH", "state": "Northern-Mindanao" }, "PAG": { "city": "Pagadian City", "country": "PH", "state": "Zamboanga-Peninsula" }, "MXI": { "city": "", "country": "PH", "state": "Davao" }, "SUG": { "city": "Surigao City", "country": "PH", "state": "Caraga" }, "CDY": { "city": "Mapun", "country": "PH", "state": "ARMM" }, "IPE": { "city": "Ipil", "country": "PH", "state": "Zamboanga-Peninsula" }, "TDG": { "city": "", "country": "PH", "state": "Caraga" }, "ZAM": { "city": "Zamboanga City", "country": "PH", "state": "Zamboanga-Peninsula" }, "IAO": { "city": "Del Carmen", "country": "PH", "state": "Caraga" }, "RZP": { "city": "Taytay Airport", "country": "PH", "state": "Mimaropa" }, "BAG": { "city": "Baguio City", "country": "PH", "state": "Cordillera" }, "DTE": { "city": "Daet", "country": "PH", "state": "Bicol" }, "SJI": { "city": "San Jose", "country": "PH", "state": "Mimaropa" }, "MBO": { "city": "", "country": "PH", "state": "Mimaropa" }, "WNP": { "city": "Naga", "country": "PH", "state": "Bicol" }, "BSO": { "city": "Basco", "country": "PH", "state": "Cagayan-Valley" }, "BQA": { "city": "Baler", "country": "PH", "state": "Central-Luzon" }, "SFE": { "city": "", "country": "PH", "state": "Ilocos" }, "TUG": { "city": "Tuguegarao City", "country": "PH", "state": "Cagayan-Valley" }, "VRC": { "city": "Virac", "country": "PH", "state": "Bicol" }, "MRQ": { "city": "Gasan", "country": "PH", "state": "Mimaropa" }, "CYZ": { "city": "Cauayan City", "country": "PH", "state": "Cagayan-Valley" }, "TAC": { "city": "Tacloban City", "country": "PH", "state": "Eastern-Visayas" }, "BCD": { "city": "Bacolod City", "country": "PH", "state": "Negros-Island-Region" }, "CYP": { "city": "Calbayog City", "country": "PH", "state": "Eastern-Visayas" }, "DGT": { "city": "Dumaguete City", "country": "PH", "state": "Central-Visayas" }, "MPH": { "city": "Malay", "country": "PH", "state": "Western-Visayas" }, "CRM": { "city": "Catarman", "country": "PH", "state": "Eastern-Visayas" }, "ILO": { "city": "Iloilo City", "country": "PH", "state": "Western-Visayas" }, "MBT": { "city": "Masbate", "country": "PH", "state": "Bicol" }, "KLO": { "city": "Kalibo", "country": "PH", "state": "Western-Visayas" }, "CEB": { "city": "Lapu-Lapu City", "country": "PH", "state": "Central-Visayas" }, "OMC": { "city": "Ormoc City", "country": "PH", "state": "Eastern-Visayas" }, "PPS": { "city": "Puerto Princesa City", "country": "PH", "state": "Mimaropa" }, "RXS": { "city": "Roxas City", "country": "PH", "state": "Western-Visayas" }, "EUQ": { "city": "San Jose", "country": "PH", "state": "Western-Visayas" }, "TAG": { "city": "Tagbilaran City", "country": "PH", "state": "Central-Visayas" }, "TBH": { "city": "Romblon", "country": "PH", "state": "Mimaropa" }, "USU": { "city": "Coron", "country": "PH", "state": "Mimaropa" }, "BPR": { "city": "Borongan City", "country": "PH", "state": "Eastern-Visayas" }, "CCT": { "city": "Colonia Catriel", "country": "AR", "state": "Rio-Negro" }, "COC": { "city": "Concordia", "country": "AR", "state": "Entre-Rios" }, "GHU": { "city": "Gualeguaychu", "country": "AR", "state": "Entre-Rios" }, "JNI": { "city": "Junin", "country": "AR", "state": "Buenos-Aires" }, "PRA": { "city": "Parana", "country": "AR", "state": "Entre-Rios" }, "ROS": { "city": "Rosario", "country": "AR", "state": "Santa-Fe" }, "SFN": { "city": "Santa Fe", "country": "AR", "state": "Santa-Fe" }, "AEP": { "city": "Buenos Aires", "country": "AR", "state": "Buenos-Aires-F-D-" }, "LCM": { "city": "La Cumbre", "country": "AR", "state": "Cordoba" }, "COR": { "city": "Cordoba", "country": "AR", "state": "Cordoba" }, "FDO": { "city": "San Fernando", "country": "AR", "state": "Buenos-Aires" }, "LPG": { "city": "La Plata", "country": "AR", "state": "Buenos-Aires" }, "EPA": { "city": "El Palomar", "country": "AR", "state": "Buenos-Aires" }, "MJR": { "city": "Miramar", "country": "AR", "state": "Buenos-Aires" }, "EZE": { "city": "Ezeiza", "country": "AR", "state": "Buenos-Aires" }, "NCJ": { "city": "Sunchales", "country": "AR", "state": "Santa-Fe" }, "HOS": { "city": "Chos Malal", "country": "AR", "state": "Neuquen" }, "CVH": { "city": "Lafontaine", "country": "AR", "state": "Neuquen" }, "GNR": { "city": "General Roca", "country": "AR", "state": "Rio-Negro" }, "RDS": { "city": "Rincon de los Sauces", "country": "AR", "state": "Neuquen" }, "APZ": { "city": "Zapala", "country": "AR", "state": "Neuquen" }, "MDZ": { "city": "Mendoza", "country": "AR", "state": "Mendoza" }, "LGS": { "city": "Malargue", "country": "AR", "state": "Mendoza" }, "AFA": { "city": "San Rafael", "country": "AR", "state": "Mendoza" }, "CTC": { "city": "Catamarca", "country": "AR", "state": "Catamarca" }, "SDE": { "city": "Santiago del Estero", "country": "AR", "state": "Santiago-del-Estero" }, "RHD": { "city": "Rio Hondo", "country": "AR", "state": "Santiago-del-Estero" }, "IRJ": { "city": "La Rioja", "country": "AR", "state": "La-Rioja" }, "TUC": { "city": "San Miguel de Tucuman", "country": "AR", "state": "Tucuman" }, "UAQ": { "city": "San Juan", "country": "AR", "state": "San-Juan" }, "CRR": { "city": "Ceres", "country": "AR", "state": "Santa-Fe" }, "RCU": { "city": "Rio Cuarto", "country": "AR", "state": "Cordoba" }, "VDR": { "city": "Villa Dolores", "country": "AR", "state": "Cordoba" }, "VME": { "city": "Villa Reynolds", "country": "AR", "state": "San-Luis" }, "RLO": { "city": "Merlo", "country": "AR", "state": "San-Luis" }, "LUQ": { "city": "San Luis", "country": "AR", "state": "San-Luis" }, "CNQ": { "city": "Corrientes", "country": "AR", "state": "Corrientes" }, "RES": { "city": "Resistencia", "country": "AR", "state": "Chaco" }, "FMA": { "city": "Formosa", "country": "AR", "state": "Formosa" }, "IGR": { "city": "Puerto Iguazu", "country": "AR", "state": "Misiones" }, "AOL": { "city": "Paso de los Libres", "country": "AR", "state": "Corrientes" }, "MCS": { "city": "Monte Caseros", "country": "AR", "state": "Corrientes" }, "PSS": { "city": "Posadas", "country": "AR", "state": "Misiones" }, "PRQ": { "city": "Presidencia Roque Saenz Pena", "country": "AR", "state": "Chaco" }, "SLA": { "city": "Salta", "country": "AR", "state": "Salta" }, "JUJ": { "city": "San Salvador de Jujuy", "country": "AR", "state": "Jujuy" }, "ORA": { "city": "Oran", "country": "AR", "state": "Salta" }, "TTG": { "city": "Tartagal", "country": "AR", "state": "Salta" }, "CLX": { "city": "Clorinda", "country": "AR", "state": "Formosa" }, "ELO": { "city": "El Dorado", "country": "AR", "state": "Misiones" }, "OYA": { "city": "Goya", "country": "AR", "state": "Corrientes" }, "LLS": { "city": "Las Lomitas", "country": "AR", "state": "Formosa" }, "MDX": { "city": "Mercedes", "country": "AR", "state": "Corrientes" }, "RCQ": { "city": "Reconquista", "country": "AR", "state": "Santa-Fe" }, "UZU": { "city": "Curuzu Cuatia", "country": "AR", "state": "Corrientes" }, "EHL": { "city": "El Bolson", "country": "AR", "state": "Rio-Negro" }, "CRD": { "city": "Comodoro Rivadavia", "country": "AR", "state": "Chubut" }, "EMX": { "city": "El Maiten", "country": "AR", "state": "Chubut" }, "EQS": { "city": "Esquel", "country": "AR", "state": "Chubut" }, "LHS": { "city": "Las Heras", "country": "AR", "state": "Santa-Cruz" }, "IGB": { "city": "Ingeniero Jacobacci", "country": "AR", "state": "Rio-Negro" }, "OES": { "city": "San Antonio Oeste", "country": "AR", "state": "Rio-Negro" }, "MQD": { "city": "Maquinchao", "country": "AR", "state": "Rio-Negro" }, "ARR": { "city": "Alto Rio Senguerr", "country": "AR", "state": "Chubut" }, "SGV": { "city": "Sierra Grande", "country": "AR", "state": "Rio-Negro" }, "REL": { "city": "Rawson", "country": "AR", "state": "Chubut" }, "VDM": { "city": "Viedma / Carmen de Patagones", "country": "AR", "state": "Rio-Negro" }, "PMY": { "city": "Puerto Madryn", "country": "AR", "state": "Chubut" }, "ING": { "city": "El Calafate", "country": "AR", "state": "Santa-Cruz" }, "FTE": { "city": "El Calafate", "country": "AR", "state": "Santa-Cruz" }, "PUD": { "city": "Puerto Deseado", "country": "AR", "state": "Santa-Cruz" }, "RGA": { "city": "Rio Grande", "country": "AR", "state": "Tierra-del-Fuego" }, "RGL": { "city": "Rio Gallegos", "country": "AR", "state": "Santa-Cruz" }, "USH": { "city": "Ushuahia", "country": "AR", "state": "Tierra-del-Fuego" }, "ULA": { "city": "San Julian", "country": "AR", "state": "Santa-Cruz" }, "ROY": { "city": "Rio Mayo", "country": "AR", "state": "Chubut" }, "PMQ": { "city": "Perito Moreno", "country": "AR", "state": "Santa-Cruz" }, "GGS": { "city": "Gobernador Gregores", "country": "AR", "state": "Santa-Cruz" }, "JSM": { "city": "Chubut", "country": "AR", "state": "Chubut" }, "RYO": { "city": "El Turbio", "country": "AR", "state": "Santa-Cruz" }, "RZA": { "city": "Santa Cruz", "country": "AR", "state": "Santa-Cruz" }, "BHI": { "city": "Bahia Blanca", "country": "AR", "state": "Buenos-Aires" }, "CSZ": { "city": "Coronel Suarez", "country": "AR", "state": "Buenos-Aires" }, "OVR": { "city": "Olavarria", "country": "AR", "state": "Buenos-Aires" }, "GPO": { "city": "General Pico", "country": "AR", "state": "La-Pampa" }, "OYO": { "city": "Tres Arroyos", "country": "AR", "state": "Buenos-Aires" }, "SST": { "city": "Santa Teresita", "country": "AR", "state": "Buenos-Aires" }, "MDQ": { "city": "Mar del Plata", "country": "AR", "state": "Buenos-Aires" }, "NQN": { "city": "Neuquen", "country": "AR", "state": "Neuquen" }, "NEC": { "city": "Necochea", "country": "AR", "state": "Buenos-Aires" }, "PEH": { "city": "Pehuajo", "country": "AR", "state": "Buenos-Aires" }, "RSA": { "city": "Santa Rosa", "country": "AR", "state": "La-Pampa" }, "BRC": { "city": "San Carlos de Bariloche", "country": "AR", "state": "Rio-Negro" }, "TDL": { "city": "Tandil", "country": "AR", "state": "Buenos-Aires" }, "VLG": { "city": "Villa Gesell", "country": "AR", "state": "Buenos-Aires" }, "CUT": { "city": "Cutral-Co", "country": "AR", "state": "Neuquen" }, "CPC": { "city": "Chapelco/San Martin de los Andes", "country": "AR", "state": "Neuquen" }, "CDJ": { "city": "Conceicao Do Araguaia", "country": "BR", "state": "Para" }, "AQA": { "city": "Araraquara", "country": "BR", "state": "Sao-Paulo" }, "AJU": { "city": "Aracaju", "country": "BR", "state": "Sergipe" }, "AIF": { "city": "Assis", "country": "BR", "state": "Sao-Paulo" }, "AFL": { "city": "Alta Floresta", "country": "BR", "state": "Mato-Grosso" }, "ARU": { "city": "Aracatuba", "country": "BR", "state": "Sao-Paulo" }, "AAX": { "city": "Araxa", "country": "BR", "state": "Minas-Gerais" }, "BEL": { "city": "Belem", "country": "BR", "state": "Para" }, "BGX": { "city": "Bage", "country": "BR", "state": "Rio-Grande-do-Sul" }, "PLU": { "city": "Belo Horizonte", "country": "BR", "state": "Minas-Gerais" }, "BFH": { "city": "Curitiba", "country": "BR", "state": "Parana" }, "BJP": { "city": "Braganca Paulista", "country": "BR", "state": "Sao-Paulo" }, "QAK": { "city": "Barbacena", "country": "BR", "state": "Minas-Gerais" }, "BSB": { "city": "Brasilia", "country": "BR", "state": "Federal-District" }, "BAT": { "city": "Barretos", "country": "BR", "state": "Sao-Paulo" }, "BAU": { "city": "Bauru", "country": "BR", "state": "Sao-Paulo" }, "BVB": { "city": "Boa Vista", "country": "BR", "state": "Roraima" }, "BPG": { "city": "Barra Do Garcas", "country": "BR", "state": "Mato-Grosso" }, "BZC": { "city": "Cabo Frio", "country": "BR", "state": "Rio-de-Janeiro" }, "CAC": { "city": "Cascavel", "country": "BR", "state": "Parana" }, "CFB": { "city": "Cabo Frio", "country": "BR", "state": "Rio-de-Janeiro" }, "CNF": { "city": "Belo Horizonte", "country": "BR", "state": "Minas-Gerais" }, "CGR": { "city": "Campo Grande", "country": "BR", "state": "Mato-Grosso-do-Sul" }, "XAP": { "city": "Chapeco", "country": "BR", "state": "Santa-Catarina" }, "CLN": { "city": "Carolina", "country": "BR", "state": "Maranhao" }, "CKS": { "city": "Carajas", "country": "BR", "state": "Para" }, "CCM": { "city": "Criciuma", "country": "BR", "state": "Santa-Catarina" }, "CLV": { "city": "Caldas Novas", "country": "BR", "state": "Goias" }, "QNS": { "city": "Porto Alegre", "country": "BR", "state": "Rio-Grande-do-Sul" }, "CAW": { "city": "Campos Dos Goytacazes", "country": "BR", "state": "Rio-de-Janeiro" }, "CMG": { "city": "Corumba", "country": "BR", "state": "Mato-Grosso-do-Sul" }, "CWB": { "city": "Curitiba", "country": "BR", "state": "Parana" }, "CRQ": { "city": "Caravelas", "country": "BR", "state": "Bahia" }, "CXJ": { "city": "Caxias Do Sul", "country": "BR", "state": "Rio-Grande-do-Sul" }, "CGB": { "city": "Cuiaba", "country": "BR", "state": "Mato-Grosso" }, "CZS": { "city": "Cruzeiro Do Sul", "country": "BR", "state": "Acre" }, "PPB": { "city": "Presidente Prudente", "country": "BR", "state": "Sao-Paulo" }, "MAO": { "city": "Manaus", "country": "BR", "state": "Amazonas" }, "JCR": { "city": "Jacareacanga", "country": "BR", "state": "Para" }, "ESI": { "city": "Espinosa", "country": "BR", "state": "Bahia" }, "IGU": { "city": "Foz Do Iguacu", "country": "BR", "state": "Parana" }, "FLN": { "city": "Florianopolis", "country": "BR", "state": "Santa-Catarina" }, "FEN": { "city": "Fernando De Noronha", "country": "BR", "state": "Pernambuco" }, "FOR": { "city": "Fortaleza", "country": "BR", "state": "Ceara" }, "GIG": { "city": "Rio De Janeiro", "country": "BR", "state": "Rio-de-Janeiro" }, "GJM": { "city": "Guajara-Mirim", "country": "BR", "state": "Rondonia" }, "GYN": { "city": "Goiania", "country": "BR", "state": "Goias" }, "GRU": { "city": "Sao Paulo", "country": "BR", "state": "Sao-Paulo" }, "GPB": { "city": "Guarapuava", "country": "BR", "state": "Parana" }, "GVR": { "city": "Governador Valadares", "country": "BR", "state": "Minas-Gerais" }, "GUJ": { "city": "Guaratingueta", "country": "BR", "state": "Sao-Paulo" }, "ATM": { "city": "Altamira", "country": "BR", "state": "Para" }, "ITA": { "city": "Itacoatiara", "country": "BR", "state": "Amazonas" }, "ITB": { "city": "Itaituba", "country": "BR", "state": "Para" }, "IOS": { "city": "Ilheus", "country": "BR", "state": "Bahia" }, "IPN": { "city": "Ipatinga", "country": "BR", "state": "Minas-Gerais" }, "IMP": { "city": "Imperatriz", "country": "BR", "state": "Maranhao" }, "JDF": { "city": "Juiz De Fora", "country": "BR", "state": "Minas-Gerais" }, "JPA": { "city": "Joao Pessoa", "country": "BR", "state": "Paraiba" }, "JDO": { "city": "Juazeiro Do Norte", "country": "BR", "state": "Ceara" }, "JOI": { "city": "Joinville", "country": "BR", "state": "Santa-Catarina" }, "CPV": { "city": "Campina Grande", "country": "BR", "state": "Paraiba" }, "VCP": { "city": "Campinas", "country": "BR", "state": "Sao-Paulo" }, "LEC": { "city": "Lencois", "country": "BR", "state": "Bahia" }, "LAJ": { "city": "Lages", "country": "BR", "state": "Santa-Catarina" }, "LIP": { "city": "Lins", "country": "BR", "state": "Sao-Paulo" }, "LDB": { "city": "Londrina", "country": "BR", "state": "Parana" }, "LAZ": { "city": "Bom Jesus Da Lapa", "country": "BR", "state": "Bahia" }, "MAB": { "city": "Maraba", "country": "BR", "state": "Para" }, "MQH": { "city": "Minacu", "country": "BR", "state": "Goias" }, "MEU": { "city": "Almeirim", "country": "BR", "state": "Para" }, "MEA": { "city": "Macae", "country": "BR", "state": "Rio-de-Janeiro" }, "MGF": { "city": "Maringa", "country": "BR", "state": "Parana" }, "MOC": { "city": "Montes Claros", "country": "BR", "state": "Minas-Gerais" }, "MII": { "city": "Marilia", "country": "BR", "state": "Sao-Paulo" }, "PLL": { "city": "Manaus", "country": "BR", "state": "Amazonas" }, "MCZ": { "city": "Maceio", "country": "BR", "state": "Alagoas" }, "MCP": { "city": "Macapa", "country": "BR", "state": "Amapa" }, "MVF": { "city": "Mossoro", "country": "BR", "state": "Rio-Grande-do-Norte" }, "SAO": { "city": "Sao Paulo", "country": "BR", "state": "Sao-Paulo" }, "MNX": { "city": "Manicore", "country": "BR", "state": "Amazonas" }, "NVT": { "city": "Navegantes", "country": "BR", "state": "Santa-Catarina" }, "GEL": { "city": "Santo Angelo", "country": "BR", "state": "Rio-Grande-do-Sul" }, "NAT": { "city": "Natal", "country": "BR", "state": "Rio-Grande-do-Norte" }, "OYK": { "city": "Oiapoque", "country": "BR", "state": "" }, "POA": { "city": "Porto Alegre", "country": "BR", "state": "Rio-Grande-do-Sul" }, "PHB": { "city": "Parnaiba", "country": "BR", "state": "Piaui" }, "POO": { "city": "Pocos De Caldas", "country": "BR", "state": "Minas-Gerais" }, "PFB": { "city": "Passo Fundo", "country": "BR", "state": "Rio-Grande-do-Sul" }, "PMW": { "city": "Palmas", "country": "BR", "state": "Tocantins" }, "PET": { "city": "Pelotas", "country": "BR", "state": "Rio-Grande-do-Sul" }, "PNZ": { "city": "Petrolina", "country": "BR", "state": "Pernambuco" }, "PNB": { "city": "Porto Nacional", "country": "BR", "state": "Tocantins" }, "PMG": { "city": "Ponta Pora", "country": "BR", "state": "Mato-Grosso-do-Sul" }, "BPS": { "city": "Porto Seguro", "country": "BR", "state": "Bahia" }, "PVH": { "city": "Porto Velho", "country": "BR", "state": "Rondonia" }, "VDC": { "city": "Vitoria Da Conquista", "country": "BR", "state": "Bahia" }, "RBR": { "city": "Rio Branco", "country": "BR", "state": "Acre" }, "REC": { "city": "Recife", "country": "BR", "state": "Pernambuco" }, "SDU": { "city": "Rio De Janeiro", "country": "BR", "state": "Rio-de-Janeiro" }, "RAO": { "city": "Ribeirao Preto", "country": "BR", "state": "Sao-Paulo" }, "BRB": { "city": "", "country": "BR", "state": "Maranhao" }, "SNZ": { "city": "Rio De Janeiro", "country": "BR", "state": "Rio-de-Janeiro" }, "SJK": { "city": "Sao Jose Dos Campos", "country": "BR", "state": "Sao-Paulo" }, "SLZ": { "city": "Sao Luis", "country": "BR", "state": "Maranhao" }, "RIA": { "city": "Santa Maria", "country": "BR", "state": "Rio-Grande-do-Sul" }, "STM": { "city": "Santarem", "country": "BR", "state": "Para" }, "CGH": { "city": "Sao Paulo", "country": "BR", "state": "Sao-Paulo" }, "SJP": { "city": "Sao Jose Do Rio Preto", "country": "BR", "state": "Sao-Paulo" }, "SSZ": { "city": "Guaruja", "country": "BR", "state": "Sao-Paulo" }, "SSA": { "city": "Salvador", "country": "BR", "state": "Bahia" }, "QHP": { "city": "Taubate", "country": "BR", "state": "Sao-Paulo" }, "TMT": { "city": "Oriximina", "country": "BR", "state": "Para" }, "UNA": { "city": "Una", "country": "BR", "state": "Bahia" }, "TOW": { "city": "Toledo", "country": "BR", "state": "Parana" }, "THE": { "city": "Teresina", "country": "BR", "state": "Piaui" }, "TFF": { "city": "Tefe", "country": "BR", "state": "Amazonas" }, "TJL": { "city": "Tres Lagoas", "country": "BR", "state": "Sao-Paulo" }, "TRQ": { "city": "Tarauaca", "country": "BR", "state": "Acre" }, "TEC": { "city": "Telemaco Borba", "country": "BR", "state": "Parana" }, "TBT": { "city": "Tabatinga", "country": "BR", "state": "Amazonas" }, "TUR": { "city": "Tucurui", "country": "BR", "state": "Para" }, "SJL": { "city": "Sao Gabriel Da Cachoeira", "country": "BR", "state": "Amazonas" }, "PAV": { "city": "Paulo Afonso", "country": "BR", "state": "Bahia" }, "URG": { "city": "Uruguaiana", "country": "BR", "state": "Rio-Grande-do-Sul" }, "UDI": { "city": "Uberlandia", "country": "BR", "state": "Minas-Gerais" }, "UBA": { "city": "Uberaba", "country": "BR", "state": "Minas-Gerais" }, "VAG": { "city": "Varginha", "country": "BR", "state": "Minas-Gerais" }, "BVH": { "city": "Vilhena", "country": "BR", "state": "Rondonia" }, "VIX": { "city": "Vitoria", "country": "BR", "state": "Espirito-Santo" }, "QPS": { "city": "Pirassununga", "country": "BR", "state": "Sao-Paulo" }, "IZA": { "city": "Juiz De Fora", "country": "BR", "state": "Minas-Gerais" }, "ZUD": { "city": "Ancud", "country": "CL", "state": "Los-Lagos" }, "LOB": { "city": "Los Andes", "country": "CL", "state": "Valparaiso" }, "WAP": { "city": "Alto Palena", "country": "CL", "state": "Los-Lagos" }, "ARI": { "city": "Arica", "country": "CL", "state": "Arica-y-Parinacota" }, "WPA": { "city": "Puerto Aysen", "country": "CL", "state": "Aisen" }, "CPO": { "city": "Copiapo", "country": "CL", "state": "Atacama" }, "BBA": { "city": "Balmaceda", "country": "CL", "state": "Aisen" }, "TOQ": { "city": "Tocopilla", "country": "CL", "state": "Antofagasta" }, "CCH": { "city": "Chile Chico", "country": "CL", "state": "Aisen" }, "CJC": { "city": "Calama", "country": "CL", "state": "Antofagasta" }, "YAI": { "city": "Chillan", "country": "CL", "state": "Biobio" }, "PUQ": { "city": "Punta Arenas", "country": "CL", "state": "Magallanes" }, "COW": { "city": "Coquimbo", "country": "CL", "state": "Coquimbo" }, "GXQ": { "city": "Coyhaique", "country": "CL", "state": "Aisen" }, "IQQ": { "city": "Iquique", "country": "CL", "state": "Tarapaca" }, "SCL": { "city": "Santiago", "country": "CL", "state": "Santiago-Metropolitan" }, "ESR": { "city": "El Salvador", "country": "CL", "state": "Atacama" }, "FRT": { "city": "Frutillar", "country": "CL", "state": "Los-Lagos" }, "ANF": { "city": "Antofagasta", "country": "CL", "state": "Antofagasta" }, "WPR": { "city": "Porvenir", "country": "CL", "state": "Magallanes" }, "FFU": { "city": "Futaleufu", "country": "CL", "state": "Los-Lagos" }, "LSQ": { "city": "Los Angeles", "country": "CL", "state": "Biobio" }, "WPU": { "city": "Puerto Williams", "country": "CL", "state": "Magallanes" }, "LGR": { "city": "Cochrane", "country": "CL", "state": "Aisen" }, "CCP": { "city": "Concepcion", "country": "CL", "state": "Biobio" }, "IPC": { "city": "Isla De Pascua", "country": "CL", "state": "Valparaiso" }, "ZOS": { "city": "Osorno", "country": "CL", "state": "Los-Lagos" }, "VLR": { "city": "Vallenar", "country": "CL", "state": "Atacama" }, "ZLR": { "city": "Linares", "country": "CL", "state": "Maule" }, "PNT": { "city": "Puerto Natales", "country": "CL", "state": "Magallanes" }, "OVL": { "city": "Ovalle", "country": "CL", "state": "Coquimbo" }, "ZPC": { "city": "Pucon", "country": "CL", "state": "Araucania" }, "MHC": { "city": "Dalcahue", "country": "CL", "state": "Los Lagos Region" }, "PUX": { "city": "Puerto Varas", "country": "CL", "state": "Los-Lagos" }, "CNR": { "city": "Chanaral", "country": "CL", "state": "Atacama" }, "VAP": { "city": "Vina Del Mar", "country": "CL", "state": "Valparaiso" }, "QRC": { "city": "Rancagua", "country": "CL", "state": "O'Higgins" }, "TNM": { "city": "Isla Rey Jorge", "country": "AQ", "state": "" }, "SMB": { "city": "Cerro Sombrero", "country": "CL", "state": "Magallanes" }, "LSC": { "city": "La Serena-Coquimbo", "country": "CL", "state": "Coquimbo" }, "SSD": { "city": "San Felipe", "country": "CL", "state": "Valparaiso" }, "WCA": { "city": "Castro", "country": "CL", "state": "Los-Lagos" }, "ZCO": { "city": "Temuco", "country": "CL", "state": "Araucania" }, "PMC": { "city": "Puerto Montt", "country": "CL", "state": "Los-Lagos" }, "TLX": { "city": "Talca", "country": "CL", "state": "Maule" }, "WCH": { "city": "Chaiten", "country": "CL", "state": "Los-Lagos" }, "ZIC": { "city": "Victoria", "country": "CL", "state": "Araucania" }, "TTC": { "city": "Taltal", "country": "CL", "state": "Antofagasta" }, "ZAL": { "city": "Valdivia", "country": "CL", "state": "Los-Rios" }, "KNA": { "city": "Vina Del Mar", "country": "CL", "state": "Valparaiso" }, "CPQ": { "city": "Campinas", "country": "BR", "state": "Sao-Paulo" }, "QCJ": { "city": "Botucatu", "country": "BR", "state": "Sao-Paulo" }, "OLC": { "city": "Sao Paulo De Olivenca", "country": "BR", "state": "Amazonas" }, "SOD": { "city": "Sorocaba", "country": "BR", "state": "Sao-Paulo" }, "QDC": { "city": "Dracena", "country": "BR", "state": "Sao-Paulo" }, "JLS": { "city": "Jales", "country": "BR", "state": "Sao-Paulo" }, "QOA": { "city": "Mococa", "country": "BR", "state": "Sao-Paulo" }, "QGC": { "city": "Lencois Paulista", "country": "BR", "state": "Sao-Paulo" }, "QNV": { "city": "Nova Iguacu", "country": "BR", "state": "Rio-de-Janeiro" }, "OUS": { "city": "Ourinhos", "country": "BR", "state": "" }, "QHB": { "city": "Piracicaba", "country": "BR", "state": "Sao-Paulo" }, "QIQ": { "city": "Rio Claro", "country": "BR", "state": "Sao-Paulo" }, "QVP": { "city": "Avare", "country": "BR", "state": "Sao-Paulo" }, "QRZ": { "city": "Resende", "country": "BR", "state": "Rio-de-Janeiro" }, "QSC": { "city": "Sao Carlos", "country": "BR", "state": "Sao-Paulo" }, "UBT": { "city": "Ubatuba", "country": "BR", "state": "Sao-Paulo" }, "QGS": { "city": "Alagoinhas", "country": "BR", "state": "Bahia" }, "VOT": { "city": "Votuporanga", "country": "BR", "state": "Sao-Paulo" }, "QGB": { "city": "Limeira", "country": "BR", "state": "Sao-Paulo" }, "ATF": { "city": "Ambato", "country": "EC", "state": "Tungurahua" }, "OCC": { "city": "Coca", "country": "EC", "state": "Napo" }, "CUE": { "city": "Cuenca", "country": "EC", "state": "Azuay" }, "GPS": { "city": "Baltra", "country": "EC", "state": "Galapagos" }, "GYE": { "city": "Guayaquil", "country": "EC", "state": "Guayas" }, "IBB": { "city": "Isabela", "country": "EC", "state": "Galapagos" }, "JIP": { "city": "Jipijapa", "country": "EC", "state": "Manabi" }, "LTX": { "city": "Latacunga", "country": "EC", "state": "Cotopaxi" }, "MRR": { "city": "Macara", "country": "EC", "state": "Loja" }, "XMS": { "city": "Macas", "country": "EC", "state": "" }, "MCH": { "city": "Machala", "country": "EC", "state": "El-Oro" }, "MEC": { "city": "Manta", "country": "EC", "state": "Manabi" }, "LGQ": { "city": "Lago Agrio", "country": "EC", "state": "Sucumbios" }, "PYO": { "city": "Puerto Putumayo", "country": "EC", "state": "Sucumbios" }, "PVO": { "city": "Portoviejo", "country": "EC", "state": "Manabi" }, "UIO": { "city": "Quito", "country": "EC", "state": "Pichincha" }, "ETR": { "city": "Santa Rosa", "country": "EC", "state": "El-Oro" }, "SNC": { "city": "Salinas", "country": "EC", "state": "Santa-Elena" }, "SUQ": { "city": "Sucua", "country": "EC", "state": "Morona-Santiago" }, "PTZ": { "city": "Shell Mera", "country": "EC", "state": "Pastaza" }, "SCY": { "city": "San Cristobal", "country": "EC", "state": "Galapagos" }, "BHA": { "city": "Bahia de Caraquez", "country": "EC", "state": "Manabi" }, "TSC": { "city": "Taisha", "country": "EC", "state": "Morona-Santiago" }, "TPN": { "city": "Tiputini", "country": "EC", "state": "Orellana" }, "LOH": { "city": "La Toma (Catamayo)", "country": "EC", "state": "Loja" }, "ESM": { "city": "Tachina", "country": "EC", "state": "Esmeraldas" }, "TPC": { "city": "Tarapoa", "country": "EC", "state": "Sucumbios" }, "TUA": { "city": "Tulcan", "country": "EC", "state": "Carchi" }, "PSY": { "city": "Stanley", "country": "FK", "state": "" }, "ASU": { "city": "Asuncion", "country": "PY", "state": "Central" }, "AYO": { "city": "Ayolas", "country": "PY", "state": "Misiones" }, "BFA": { "city": "Bahia Negra", "country": "PY", "state": "Alto-Paraguay" }, "CIO": { "city": "Concepcion", "country": "PY", "state": "Concepcion" }, "ENO": { "city": "Encarnacion", "country": "PY", "state": "Itapua" }, "AGT": { "city": "Ciudad del Este", "country": "PY", "state": "Alto-Parana" }, "FLM": { "city": "Filadelfia", "country": "PY", "state": "Boqueron" }, "ESG": { "city": "Mariscal Estigarribia", "country": "PY", "state": "Boqueron" }, "OLK": { "city": "Fuerte Olimpo", "country": "PY", "state": "Alto-Paraguay" }, "PIL": { "city": "Pilar", "country": "PY", "state": "Neembucu" }, "PJC": { "city": "Pedro Juan Caballero", "country": "PY", "state": "Amambay" }, "LVR": { "city": "Lucas do Rio Verde", "country": "BR", "state": "Mato-Grosso" }, "FRC": { "city": "Franca", "country": "BR", "state": "Sao-Paulo" }, "CFO": { "city": "Confresa", "country": "BR", "state": "Mato-Grosso" }, "RIG": { "city": "Rio Grande", "country": "BR", "state": "Rio-Grande-do-Sul" }, "ACR": { "city": "Araracuara", "country": "CO", "state": "Amazonas" }, "ACD": { "city": "Acandi", "country": "CO", "state": "Choco" }, "AFI": { "city": "Amalfi", "country": "CO", "state": "Antioquia" }, "ADN": { "city": "Andes", "country": "CO", "state": "Antioquia" }, "API": { "city": "Apiay", "country": "CO", "state": "Meta" }, "AXM": { "city": "Armenia", "country": "CO", "state": "Quindio" }, "PUU": { "city": "Puerto Asis", "country": "CO", "state": "Putumayo" }, "ELB": { "city": "El Banco", "country": "CO", "state": "Magdalena" }, "BGA": { "city": "Bucaramanga", "country": "CO", "state": "Santander" }, "BOG": { "city": "Bogota", "country": "CO", "state": "Bogota-D-C-" }, "BAQ": { "city": "Barranquilla", "country": "CO", "state": "Atlantico" }, "BSC": { "city": "Bahia Solano", "country": "CO", "state": "Choco" }, "BUN": { "city": "Buenaventura", "country": "CO", "state": "Valle-del-Cauca" }, "CPB": { "city": "Capurgana", "country": "CO", "state": "Choco" }, "CUC": { "city": "Cucuta", "country": "CO", "state": "Norte-de-Santander" }, "COG": { "city": "Condoto", "country": "CO", "state": "Choco" }, "CTG": { "city": "Cartagena", "country": "CO", "state": "Bolivar" }, "CCO": { "city": "Puerto Lopez", "country": "CO", "state": "Meta" }, "CLO": { "city": "Cali", "country": "CO", "state": "Valle-del-Cauca" }, "CIM": { "city": "Cimitarra", "country": "CO", "state": "Santander" }, "RAV": { "city": "Cravo Norte", "country": "CO", "state": "Arauca" }, "TCO": { "city": "Tumaco", "country": "CO", "state": "Narino" }, "CUO": { "city": "Caruru", "country": "CO", "state": "Vaupes" }, "CAQ": { "city": "Caucasia", "country": "CO", "state": "Antioquia" }, "CVE": { "city": "Covenas", "country": "CO", "state": "" }, "CZU": { "city": "Corozal", "country": "CO", "state": "Sucre" }, "EBG": { "city": "El Bagre", "country": "CO", "state": "Antioquia" }, "EJA": { "city": "Barrancabermeja", "country": "CO", "state": "Santander" }, "FLA": { "city": "Florencia", "country": "CO", "state": "Caqueta" }, "FDA": { "city": "Fundacion", "country": "CO", "state": "Magdalena" }, "GIR": { "city": "Girardot", "country": "CO", "state": "Tolima" }, "CRC": { "city": "Cartago", "country": "CO", "state": "Valle-del-Cauca" }, "GPI": { "city": "Guapi", "country": "CO", "state": "Cauca" }, "GLJ": { "city": "Garzon", "country": "CO", "state": "Huila" }, "CPL": { "city": "Chaparral", "country": "CO", "state": "Tolima" }, "HTZ": { "city": "Hato Corozal", "country": "CO", "state": "Casanare" }, "IBE": { "city": "Ibague", "country": "CO", "state": "Tolima" }, "IGO": { "city": "Chigorodo", "country": "CO", "state": "Antioquia" }, "MMP": { "city": "Limon", "country": "CO", "state": "Bolivar" }, "IPI": { "city": "Ipiales", "country": "CO", "state": "Narino" }, "LQM": { "city": "Puerto Leguizamo", "country": "CO", "state": "Putumayo" }, "MCJ": { "city": "La Mina-Maicao", "country": "CO", "state": "La-Guajira" }, "LPD": { "city": "La Pedrera", "country": "CO", "state": "Amazonas" }, "LET": { "city": "Leticia", "country": "CO", "state": "Amazonas" }, "EOH": { "city": "Medellin", "country": "CO", "state": "Antioquia" }, "MFS": { "city": "Miraflores", "country": "CO", "state": "Guaviare" }, "MGN": { "city": "Magangue", "country": "CO", "state": "Bolivar" }, "MTB": { "city": "Montelibano", "country": "CO", "state": "Cordoba" }, "MTR": { "city": "Monteria", "country": "CO", "state": "Cordoba" }, "MVP": { "city": "Mitu", "country": "CO", "state": "Vaupes" }, "MZL": { "city": "Manizales", "country": "CO", "state": "Caldas" }, "NCI": { "city": "Necocli", "country": "CO", "state": "Antioquia" }, "NQU": { "city": "Nuqui", "country": "CO", "state": "Choco" }, "NVA": { "city": "Neiva", "country": "CO", "state": "Huila" }, "OCV": { "city": "Ocana", "country": "CO", "state": "Cesar" }, "ORC": { "city": "Orocue", "country": "CO", "state": "Casanare" }, "PCR": { "city": "Puerto Carreno", "country": "CO", "state": "Vichada" }, "PDA": { "city": "Puerto Inirida", "country": "CO", "state": "Guainia" }, "PEI": { "city": "Pereira", "country": "CO", "state": "Risaralda" }, "PTX": { "city": "Pitalito", "country": "CO", "state": "Huila" }, "PLT": { "city": "Plato", "country": "CO", "state": "Magdalena" }, "NAR": { "city": "Armenia", "country": "CO", "state": "Antioquia" }, "PPN": { "city": "Popayan", "country": "CO", "state": "Cauca" }, "PQE": { "city": "La Dorada", "country": "CO", "state": "Cundinamarca" }, "PBE": { "city": "Puerto Berrio", "country": "CO", "state": "Antioquia" }, "PSO": { "city": "Pasto", "country": "CO", "state": "Narino" }, "PVA": { "city": "Providencia", "country": "CO", "state": "San-Andres-y-Providencia" }, "PZA": { "city": "Paz De Ariporo", "country": "CO", "state": "Casanare" }, "MQU": { "city": "Mariquita", "country": "CO", "state": "Tolima" }, "MDE": { "city": "Rionegro", "country": "CO", "state": "Antioquia" }, "RCH": { "city": "Riohacha", "country": "CO", "state": "La-Guajira" }, "SJE": { "city": "San Jose Del Guaviare", "country": "CO", "state": "Guaviare" }, "SMR": { "city": "Santa Marta", "country": "CO", "state": "Magdalena" }, "SOX": { "city": "Sogamoso", "country": "CO", "state": "Boyaca" }, "ADZ": { "city": "San Andres", "country": "CO", "state": "San-Andres-y-Providencia" }, "SVI": { "city": "San Vicente Del Caguan", "country": "CO", "state": "Caqueta" }, "TAU": { "city": "Tauramena", "country": "CO", "state": "Casanare" }, "TIB": { "city": "Tibu", "country": "CO", "state": "Norte-de-Santander" }, "TDA": { "city": "Trinidad", "country": "CO", "state": "Casanare" }, "TLU": { "city": "Tolu", "country": "CO", "state": "Sucre" }, "TME": { "city": "Tame", "country": "CO", "state": "Arauca" }, "TQS": { "city": "Tres Esquinas", "country": "CO", "state": "Caqueta" }, "TRB": { "city": "Turbo", "country": "CO", "state": "Antioquia" }, "AUC": { "city": "Arauca", "country": "CO", "state": "Arauca" }, "UIB": { "city": "Quibdo", "country": "CO", "state": "Choco" }, "ULQ": { "city": "Tulua", "country": "CO", "state": "Valle-del-Cauca" }, "URR": { "city": "Urrao", "country": "CO", "state": "Antioquia" }, "VUP": { "city": "Valledupar", "country": "CO", "state": "Cesar" }, "VVC": { "city": "Villavicencio", "country": "CO", "state": "Meta" }, "AYG": { "city": "San Vicente Del Caguan", "country": "CO", "state": "Caqueta" }, "EYP": { "city": "El Yopal", "country": "CO", "state": "Casanare" }, "MHW": { "city": "El Banado", "country": "BO", "state": "Chuquisaca" }, "APB": { "city": "Apolo", "country": "BO", "state": "La-Paz" }, "ASC": { "city": "Ascension de Guarayos", "country": "BO", "state": "Santa-Cruz" }, "BVL": { "city": "Baures", "country": "BO", "state": "El-Beni" }, "BJO": { "city": "Bermejo", "country": "BO", "state": "Tarija" }, "CAM": { "city": "Camiri", "country": "BO", "state": "Santa-Cruz" }, "CBB": { "city": "Cochabamba", "country": "BO", "state": "Cochabamba" }, "CIJ": { "city": "Cobija", "country": "BO", "state": "Pando" }, "CEP": { "city": "Concepcion", "country": "BO", "state": "Santa-Cruz" }, "SRZ": { "city": "Santa Cruz", "country": "BO", "state": "Santa-Cruz" }, "GYA": { "city": "Guayaramerin", "country": "BO", "state": "Rondonia" }, "BVK": { "city": "Itenes", "country": "BO", "state": "El-Beni" }, "SJS": { "city": "San Jose de Chiquitos", "country": "BO", "state": "Santa-Cruz" }, "SJB": { "city": "San Joaquin", "country": "BO", "state": "El-Beni" }, "SJV": { "city": "San Javier", "country": "BO", "state": "Santa-Cruz" }, "LPB": { "city": "La Paz / El Alto", "country": "BO", "state": "La-Paz" }, "MGD": { "city": "Magdalena", "country": "BO", "state": "El-Beni" }, "ORU": { "city": "Oruro", "country": "BO", "state": "Oruro" }, "POI": { "city": "Potosi", "country": "BO", "state": "Potosi" }, "PUR": { "city": "Puerto Rico/Manuripi", "country": "BO", "state": "Pando" }, "PSZ": { "city": "Puerto Suarez", "country": "BO", "state": "Santa-Cruz" }, "SRD": { "city": "San Ramon / Mamore", "country": "BO", "state": "El-Beni" }, "RBO": { "city": "Robore", "country": "BO", "state": "Santa-Cruz" }, "RIB": { "city": "Riberalta", "country": "BO", "state": "El-Beni" }, "RBQ": { "city": "Rurenabaque", "country": "BO", "state": "El-Beni" }, "REY": { "city": "Reyes", "country": "BO", "state": "El-Beni" }, "SBL": { "city": "Santa Ana del Yacuma", "country": "BO", "state": "El-Beni" }, "SRJ": { "city": "San Borja", "country": "BO", "state": "El-Beni" }, "SNG": { "city": "San Ignacio de Velasco", "country": "BO", "state": "Santa-Cruz" }, "SNM": { "city": "San Ignacio de Moxos", "country": "BO", "state": "El-Beni" }, "SRB": { "city": "Santa Rosa", "country": "BO", "state": "El-Beni" }, "SRE": { "city": "Sucre", "country": "BO", "state": "Chuquisaca" }, "MQK": { "city": "San Matias", "country": "BO", "state": "Santa-Cruz" }, "TJA": { "city": "Tarija", "country": "BO", "state": "Tarija" }, "TDD": { "city": "Trinidad", "country": "BO", "state": "El-Beni" }, "UYU": { "city": "Quijarro", "country": "BO", "state": "Potosi" }, "VAH": { "city": "Vallegrande", "country": "BO", "state": "Santa-Cruz" }, "VLM": { "city": "Villamontes", "country": "BO", "state": "Tarija" }, "VVI": { "city": "Santa Cruz", "country": "BO", "state": "Santa-Cruz" }, "BYC": { "city": "Yacuiba", "country": "BO", "state": "Tarija" }, "ABN": { "city": "Albina", "country": "SR", "state": "Marowijne" }, "BTO": { "city": "Botopasi", "country": "SR", "state": "Sipaliwini" }, "AAJ": { "city": "Awaradam", "country": "SR", "state": "Sipaliwini" }, "TOT": { "city": "Totness", "country": "SR", "state": "Coronie" }, "DRJ": { "city": "Drietabbetje", "country": "SR", "state": "Sipaliwini" }, "DOE": { "city": "Djumu-Djomoe", "country": "SR", "state": "Sipaliwini" }, "LDO": { "city": "Aurora", "country": "SR", "state": "Sipaliwini" }, "PBM": { "city": "Zandery", "country": "SR", "state": "Para" }, "MOJ": { "city": "Moengo", "country": "SR", "state": "Marowijne" }, "ICK": { "city": "Nieuw Nickerie", "country": "SR", "state": "Nickerie" }, "OEM": { "city": "Paloemeu", "country": "SR", "state": "Sipaliwini" }, "SMZ": { "city": "Stoelmanseiland", "country": "SR", "state": "Sipaliwini" }, "KCB": { "city": "Kasikasima", "country": "SR", "state": "Sipaliwini" }, "AGI": { "city": "Wageningen Airport", "country": "SR", "state": "Nickerie" }, "WSO": { "city": "Washabo", "country": "SR", "state": "Sipaliwini" }, "ORG": { "city": "Paramaribo", "country": "SR", "state": "Paramaribo" }, "APY": { "city": "Alto Parnaiba", "country": "BR", "state": "Maranhao" }, "APQ": { "city": "Arapiraca", "country": "BR", "state": "Alagoas" }, "AMJ": { "city": "Almenara", "country": "BR", "state": "Minas-Gerais" }, "BDC": { "city": "Barra Do Corda", "country": "BR", "state": "Maranhao" }, "BVM": { "city": "Belmonte", "country": "BR", "state": "Bahia" }, "BRA": { "city": "Barreiras", "country": "BR", "state": "Bahia" }, "BSS": { "city": "Balsas", "country": "BR", "state": "Maranhao" }, "BMS": { "city": "Brumado", "country": "BR", "state": "Bahia" }, "BQQ": { "city": "Barra", "country": "BR", "state": "Bahia" }, "CTP": { "city": "Carutapera", "country": "BR", "state": "Maranhao" }, "CPU": { "city": "Cururupu", "country": "BR", "state": "Maranhao" }, "QCH": { "city": "Colatina", "country": "BR", "state": "Espirito-Santo" }, "RDC": { "city": "Redencao", "country": "BR", "state": "Para" }, "LEP": { "city": "Leopoldina", "country": "BR", "state": "Minas-Gerais" }, "DTI": { "city": "Diamantina", "country": "BR", "state": "Minas-Gerais" }, "DIQ": { "city": "Divinopolis", "country": "BR", "state": "Minas-Gerais" }, "CNV": { "city": "Canavieiras", "country": "BR", "state": "Bahia" }, "SXX": { "city": "Sao Felix Do Xingu", "country": "BR", "state": "Para" }, "GUZ": { "city": "Guarapari", "country": "BR", "state": "Espirito-Santo" }, "GDP": { "city": "Guadalupe", "country": "BR", "state": "Piaui" }, "GNM": { "city": "Guanambi", "country": "BR", "state": "Bahia" }, "GMS": { "city": "Uberlandia", "country": "BR", "state": "Minas-Gerais" }, "QGP": { "city": "Garanhuns", "country": "BR", "state": "Pernambuco" }, "IRE": { "city": "Irece", "country": "BR", "state": "Bahia" }, "QIG": { "city": "Iguatu", "country": "BR", "state": "Ceara" }, "QIT": { "city": "Itapetinga", "country": "BR", "state": "Bahia" }, "IPU": { "city": "Ipiau", "country": "BR", "state": "Bahia" }, "JCM": { "city": "Jacobina", "country": "BR", "state": "Bahia" }, "FEC": { "city": "Feira De Santana", "country": "BR", "state": "Bahia" }, "JEQ": { "city": "Jequie", "country": "BR", "state": "Bahia" }, "JNA": { "city": "Januaria", "country": "BR", "state": "Minas-Gerais" }, "JDR": { "city": "Sao Joao Del Rei", "country": "BR", "state": "Minas-Gerais" }, "CMP": { "city": "Santana Do Araguaia", "country": "BR", "state": "Para" }, "QDF": { "city": "Conselheiro Lafaiete", "country": "BR", "state": "Minas-Gerais" }, "CDI": { "city": "Cachoeiro Do Itapemirim", "country": "BR", "state": "Espirito-Santo" }, "QCP": { "city": "Currais Novos", "country": "BR", "state": "Rio-Grande-do-Norte" }, "LVB": { "city": "Livramento Do Brumado", "country": "BR", "state": "Bahia" }, "SSO": { "city": "Sao Lourenco", "country": "BR", "state": "Minas-Gerais" }, "MTE": { "city": "Monte Alegre", "country": "BR", "state": "Para" }, "MVS": { "city": "Mucuri", "country": "BR", "state": "Bahia" }, "SBJ": { "city": "Sao Mateus", "country": "BR", "state": "Espirito-Santo" }, "PTQ": { "city": "Porto De Moz", "country": "BR", "state": "Para" }, "NNU": { "city": "Nanuque", "country": "BR", "state": "Minas-Gerais" }, "QBX": { "city": "Sobral", "country": "BR", "state": "Ceara" }, "PSW": { "city": "Passos", "country": "BR", "state": "Minas-Gerais" }, "ORX": { "city": "Oriximina", "country": "BR", "state": "Para" }, "PCS": { "city": "Picos", "country": "BR", "state": "Piaui" }, "POJ": { "city": "Patos De Minas", "country": "BR", "state": "Minas-Gerais" }, "PIV": { "city": "Pirapora", "country": "BR", "state": "Minas-Gerais" }, "FLB": { "city": "Floriano", "country": "BR", "state": "Piaui" }, "PDF": { "city": "Prado", "country": "BR", "state": "Bahia" }, "CAU": { "city": "Caruaru", "country": "BR", "state": "Pernambuco" }, "SFK": { "city": "Soure", "country": "BR", "state": "Para" }, "OBI": { "city": "Obidos", "country": "BR", "state": "Para" }, "TFL": { "city": "Teofilo Otoni", "country": "BR", "state": "Minas-Gerais" }, "VAL": { "city": "Valenca", "country": "BR", "state": "Bahia" }, "QID": { "city": "Tres Coracoes", "country": "BR", "state": "Minas-Gerais" }, "BVS": { "city": "Breves", "country": "BR", "state": "Para" }, "CMC": { "city": "Camocim", "country": "BR", "state": "Ceara" }, "QXC": { "city": "Barra De Santo Antonio", "country": "BR", "state": "Alagoas" }, "PHI": { "city": "Pinheiro", "country": "BR", "state": "Maranhao" }, "ITI": { "city": "Cumaru Do Norte", "country": "BR", "state": "Para" }, "PPY": { "city": "Pouso Alegre", "country": "BR", "state": "Minas-Gerais" }, "CAY": { "city": "Cayenne / Rochambeau", "country": "GF", "state": "Guyane" }, "MPY": { "city": "Maripasoula", "country": "GF", "state": "Guyane" }, "OXP": { "city": "Saint-Georges-de-l'Oyapock Airport", "country": "GF", "state": "Guyane" }, "LDX": { "city": "Saint-Laurent-du-Maroni", "country": "GF", "state": "Guyane" }, "REI": { "city": "Regina", "country": "GF", "state": "Guyane" }, "XAU": { "city": "Saul", "country": "GF", "state": "Guyane" }, "APE": { "city": "San Juan Aposento", "country": "PE", "state": "Ica" }, "ALD": { "city": "Fortaleza", "country": "PE", "state": "Madre-de-Dios" }, "AOP": { "city": "Andoas", "country": "PE", "state": "Loreto" }, "ATG": { "city": "Atalaya", "country": "PE", "state": "Junin" }, "MBP": { "city": "Moyobamba", "country": "PE", "state": "San-Martin" }, "BLP": { "city": "Bellavista", "country": "PE", "state": "San-Martin" }, "IBP": { "city": "Iberia", "country": "PE", "state": "Madre-de-Dios" }, "PCL": { "city": "Pucallpa", "country": "PE", "state": "Ucayali" }, "CHM": { "city": "Chimbote", "country": "PE", "state": "Apurimac" }, "TGI": { "city": "Tingo Maria", "country": "PE", "state": "Huanuco" }, "CIX": { "city": "Chiclayo", "country": "PE", "state": "Lambayeque" }, "AYP": { "city": "Ayacucho", "country": "PE", "state": "Ayacucho" }, "ANS": { "city": "Andahuaylas", "country": "PE", "state": "Apurimac" }, "ATA": { "city": "Anta", "country": "PE", "state": "Ancash" }, "UMI": { "city": "Quince Mil", "country": "PE", "state": "Cusco" }, "UCZ": { "city": "Uchiza", "country": "PE", "state": "Huanuco" }, "RIJ": { "city": "Rioja", "country": "PE", "state": "San-Martin" }, "LIM": { "city": "Lima", "country": "PE", "state": "Callao" }, "JJI": { "city": "Juanjui", "country": "PE", "state": "San-Martin" }, "JAU": { "city": "Jauja", "country": "PE", "state": "Junin" }, "JUL": { "city": "Juliaca", "country": "PE", "state": "Puno" }, "SJA": { "city": "San Juan de Marcona", "country": "PE", "state": "Ica" }, "CJA": { "city": "Cajamarca", "country": "PE", "state": "Cajamarca" }, "RIM": { "city": "Rodriguez de Mendoza", "country": "PE", "state": "Amazonas" }, "ILQ": { "city": "Ilo", "country": "PE", "state": "Moquegua" }, "TBP": { "city": "Tumbes", "country": "PE", "state": "Tumbes" }, "SMG": { "city": "Santa Maria", "country": "PE", "state": "Lima-region" }, "YMS": { "city": "Yurimaguas", "country": "PE", "state": "Loreto" }, "HUU": { "city": "Huanuco", "country": "PE", "state": "Huanuco" }, "SQU": { "city": "Plaza Saposoa", "country": "PE", "state": "" }, "CHH": { "city": "Chachapoyas", "country": "PE", "state": "Amazonas" }, "REQ": { "city": "Requena", "country": "PE", "state": "Loreto" }, "IQT": { "city": "Iquitos", "country": "PE", "state": "Loreto" }, "AQP": { "city": "Arequipa", "country": "PE", "state": "Arequipa" }, "TRU": { "city": "Trujillo", "country": "PE", "state": "La-Libertad" }, "SQD": { "city": "San Francisco de Yeso", "country": "PE", "state": "Amazonas" }, "PIO": { "city": "Pisco", "country": "PE", "state": "Ica" }, "TPP": { "city": "Tarapoto", "country": "PE", "state": "San-Martin" }, "SYC": { "city": "Shiringayoc", "country": "PE", "state": "Madre-de-Dios" }, "TCQ": { "city": "Tacna", "country": "PE", "state": "Tacna" }, "PEM": { "city": "Puerto Maldonado", "country": "PE", "state": "Madre-de-Dios" }, "PIU": { "city": "Piura", "country": "PE", "state": "Piura" }, "TYL": { "city": "", "country": "PE", "state": "Piura" }, "NZA": { "city": "", "country": "PE", "state": "Ica" }, "CUZ": { "city": "Cusco", "country": "PE", "state": "Cusco" }, "APU": { "city": "Apucarana", "country": "BR", "state": "Parana" }, "BGV": { "city": "Bento Goncalves", "country": "BR", "state": "Rio-Grande-do-Sul" }, "BNU": { "city": "Blumenau", "country": "BR", "state": "Santa-Catarina" }, "CCI": { "city": "Concordia", "country": "BR", "state": "Santa-Catarina" }, "QCN": { "city": "Canela", "country": "BR", "state": "Rio-Grande-do-Sul" }, "CKO": { "city": "Cornelio Procopio", "country": "BR", "state": "Parana" }, "DOU": { "city": "Dourados", "country": "BR", "state": "Mato-Grosso-do-Sul" }, "ERM": { "city": "Erechim", "country": "BR", "state": "Rio-Grande-do-Sul" }, "FBE": { "city": "Francisco Beltrao", "country": "BR", "state": "Parana" }, "QGA": { "city": "Guaira", "country": "BR", "state": "Canindeyu" }, "IJU": { "city": "Ijui", "country": "BR", "state": "Rio-Grande-do-Sul" }, "ITQ": { "city": "Itaqui", "country": "BR", "state": "Rio-Grande-do-Sul" }, "JCB": { "city": "Joacaba", "country": "BR", "state": "Mato-Grosso" }, "CBW": { "city": "Campo Mourao", "country": "BR", "state": "Parana" }, "QDB": { "city": "Cachoeira Do Sul", "country": "BR", "state": "Rio-Grande-do-Sul" }, "QCR": { "city": "Curitibanos", "country": "BR", "state": "Santa-Catarina" }, "ALQ": { "city": "Alegrete", "country": "BR", "state": "Rio-Grande-do-Sul" }, "QMF": { "city": "Mafra", "country": "BR", "state": "Santa-Catarina" }, "QGF": { "city": "Montenegro", "country": "BR", "state": "Rio-Grande-do-Sul" }, "QHV": { "city": "Novo Hamburgo", "country": "BR", "state": "Rio-Grande-do-Sul" }, "SQX": { "city": "Sao Miguel Do Oeste", "country": "BR", "state": "Santa-Catarina" }, "APX": { "city": "Arapongas", "country": "BR", "state": "Parana" }, "PTO": { "city": "Pato Branco", "country": "BR", "state": "Parana" }, "PNG": { "city": "Paranagua", "country": "BR", "state": "Parana" }, "PVI": { "city": "Paranavai", "country": "BR", "state": "Parana" }, "PBB": { "city": "Paranaiba", "country": "BR", "state": "Mato-Grosso-do-Sul" }, "QAC": { "city": "Castro", "country": "BR", "state": "Parana" }, "SQY": { "city": "Sao Lourenco Do Sul", "country": "BR", "state": "Rio-Grande-do-Sul" }, "QOJ": { "city": "Sao Borja", "country": "BR", "state": "Rio-Grande-do-Sul" }, "CSU": { "city": "Santa Cruz Do Sul", "country": "BR", "state": "Rio-Grande-do-Sul" }, "UMU": { "city": "Umuarama", "country": "BR", "state": "Parana" }, "QVB": { "city": "Uniao Da Vitoria", "country": "BR", "state": "Santa-Catarina" }, "VIA": { "city": "Videira", "country": "BR", "state": "Santa-Catarina" }, "CTQ": { "city": "Santa Vitoria Do Palmar", "country": "BR", "state": "Rio-Grande-do-Sul" }, "AXE": { "city": "Xanxere", "country": "BR", "state": "Santa-Catarina" }, "AAG": { "city": "Arapoti", "country": "BR", "state": "Parana" }, "SRA": { "city": "Santa Rosa", "country": "BR", "state": "Rio-Grande-do-Sul" }, "PGZ": { "city": "Ponta Grossa", "country": "BR", "state": "Parana" }, "ATI": { "city": "Artigas", "country": "UY", "state": "Artigas" }, "CYR": { "city": "Colonia", "country": "UY", "state": "Colonia" }, "CAR": { "city": "Carmelo", "country": "UY", "state": "Colonia" }, "DZO": { "city": "Durazno", "country": "UY", "state": "Durazno" }, "PDP": { "city": "Punta del Este", "country": "UY", "state": "Maldonado" }, "MER": { "city": "Mercedes", "country": "UY", "state": "Soriano" }, "MLZ": { "city": "Melo", "country": "UY", "state": "Cerro-Largo" }, "MVD": { "city": "Montevideo", "country": "UY", "state": "Canelones" }, "MDO": { "city": "Maldonado", "country": "UY", "state": "Maldonado" }, "PDU": { "city": "Paysandu", "country": "UY", "state": "Paysandu" }, "RVY": { "city": "Rivera", "country": "UY", "state": "Rivera" }, "STY": { "city": "Salto", "country": "UY", "state": "Salto" }, "TAW": { "city": "Tacuarembo", "country": "UY", "state": "Tacuarembo" }, "TYT": { "city": "Treinta y Tres", "country": "UY", "state": "Treinta-y-Tres" }, "VCH": { "city": "Vichadero", "country": "UY", "state": "Rivera" }, "AGV": { "city": "Acarigua", "country": "VE", "state": "Portuguesa" }, "AAO": { "city": "Anaco", "country": "VE", "state": "Anzoategui" }, "LPJ": { "city": "Guayabal", "country": "VE", "state": "Bolivar" }, "BLA": { "city": "Barcelona", "country": "VE", "state": "Anzoategui" }, "BNS": { "city": "Barinas", "country": "VE", "state": "Barinas" }, "BRM": { "city": "Barquisimeto", "country": "VE", "state": "Lara" }, "MYC": { "city": "Maracay", "country": "VE", "state": "Aragua" }, "CBL": { "city": "", "country": "VE", "state": "Bolivar" }, "CXA": { "city": "", "country": "VE", "state": "Bolivar" }, "CUV": { "city": "Casigua El Cubo", "country": "VE", "state": "Zulia" }, "CLZ": { "city": "Guarico", "country": "VE", "state": "Guarico" }, "CAJ": { "city": "Canaima", "country": "VE", "state": "Bolivar" }, "VCR": { "city": "Carora", "country": "VE", "state": "Lara" }, "CUP": { "city": "Carupano", "country": "VE", "state": "Sucre" }, "CZE": { "city": "Coro", "country": "VE", "state": "Falcon" }, "CUM": { "city": "", "country": "VE", "state": "Sucre" }, "isl": { "city": "Isla La Tortuga", "country": "VE", "state": "Dependencias-Federales" }, "EOR": { "city": "Bolivar", "country": "VE", "state": "Bolivar" }, "EOZ": { "city": "", "country": "VE", "state": "Apure" }, "GDO": { "city": "", "country": "VE", "state": "Apure" }, "GUI": { "city": "", "country": "VE", "state": "" }, "GUQ": { "city": "Guanare", "country": "VE", "state": "Portuguesa" }, "ICA": { "city": "", "country": "VE", "state": "Bolivar" }, "LSP": { "city": "Paraguana", "country": "VE", "state": "Falcon" }, "KAV": { "city": "", "country": "VE", "state": "Bolivar" }, "LFR": { "city": "", "country": "VE", "state": "Tachira" }, "MAR": { "city": "Maracaibo", "country": "VE", "state": "Zulia" }, "MRD": { "city": "Merida", "country": "VE", "state": "Merida" }, "PMV": { "city": "Isla Margarita", "country": "VE", "state": "Nueva-Esparta" }, "CCS": { "city": "Caracas", "country": "VE", "state": "Vargas" }, "MUN": { "city": "", "country": "VE", "state": "Anzoategui" }, "CBS": { "city": "Cabimas", "country": "VE", "state": "Zulia" }, "PYH": { "city": "", "country": "VE", "state": "Amazonas" }, "PBL": { "city": "", "country": "VE", "state": "Carabobo" }, "PDZ": { "city": "", "country": "VE", "state": "Delta-Amacuro" }, "PPH": { "city": "", "country": "VE", "state": "Bolivar" }, "SCI": { "city": "", "country": "VE", "state": "Tachira" }, "PZO": { "city": "Puerto Ordaz-Ciudad Guayana", "country": "VE", "state": "Bolivar" }, "PTM": { "city": "Palmarito", "country": "VE", "state": "Apure" }, "LRV": { "city": "Los Roques", "country": "VE", "state": "Dependencias-Federales" }, "SVZ": { "city": "", "country": "VE", "state": "Tachira" }, "SBB": { "city": "Santa Barbara", "country": "VE", "state": "Barinas" }, "SNV": { "city": "", "country": "VE", "state": "Bolivar" }, "STD": { "city": "Santo Domingo", "country": "VE", "state": "Tachira" }, "SNF": { "city": "San Felipe", "country": "VE", "state": "Yaracuy" }, "SFD": { "city": "Inglaterra", "country": "VE", "state": "Apure" }, "SOM": { "city": "", "country": "VE", "state": "Anzoategui" }, "STB": { "city": "", "country": "VE", "state": "Zulia" }, "TUV": { "city": "Tucupita", "country": "VE", "state": "Delta-Amacuro" }, "TMO": { "city": "", "country": "VE", "state": "Bolivar" }, "URM": { "city": "", "country": "VE", "state": "Bolivar" }, "VLN": { "city": "Valencia", "country": "VE", "state": "Carabobo" }, "VIG": { "city": "El Vigia", "country": "VE", "state": "Merida" }, "VLV": { "city": "Valera", "country": "VE", "state": "Trujillo" }, "VDP": { "city": "", "country": "VE", "state": "Guarico" }, "BAZ": { "city": "Barcelos", "country": "BR", "state": "Amazonas" }, "RBB": { "city": "Borba", "country": "BR", "state": "Amazonas" }, "CAF": { "city": "Carauari", "country": "BR", "state": "Amazonas" }, "CQS": { "city": "Costa Marques", "country": "BR", "state": "Rondonia" }, "DMT": { "city": "Diamantino", "country": "BR", "state": "Mato-Grosso" }, "DNO": { "city": "Dianopolis", "country": "BR", "state": "Tocantins" }, "ERN": { "city": "Eirunepe", "country": "BR", "state": "Amazonas" }, "CQA": { "city": "Canarana", "country": "BR", "state": "Mato-Grosso" }, "FEJ": { "city": "Feijo", "country": "BR", "state": "" }, "SXO": { "city": "Sao Felix Do Araguaia", "country": "BR", "state": "Mato-Grosso" }, "GRP": { "city": "Gurupi", "country": "BR", "state": "Tocantins" }, "AUX": { "city": "Araguaina", "country": "BR", "state": "Tocantins" }, "IPG": { "city": "Santo Antonio Do Ica", "country": "BR", "state": "Amazonas" }, "IDO": { "city": "Cristalandia", "country": "BR", "state": "Tocantins" }, "JPR": { "city": "Ji-Parana", "country": "BR", "state": "Rondonia" }, "JIA": { "city": "Juina", "country": "BR", "state": "Mato-Grosso" }, "JRN": { "city": "Juruena", "country": "BR", "state": "Mato-Grosso" }, "CCX": { "city": "Caceres", "country": "BR", "state": "Mato-Grosso" }, "CIZ": { "city": "Coari", "country": "BR", "state": "Amazonas" }, "TLZ": { "city": "Catalao", "country": "BR", "state": "Goias" }, "LBR": { "city": "Labrea", "country": "BR", "state": "Amazonas" }, "RVD": { "city": "Rio Verde", "country": "BR", "state": "Goias" }, "MBZ": { "city": "Maues", "country": "BR", "state": "Amazonas" }, "NVP": { "city": "Novo Aripuana", "country": "BR", "state": "Amazonas" }, "AQM": { "city": "Ariquemes", "country": "BR", "state": "Rondonia" }, "BCR": { "city": "Boca Do Acre", "country": "BR", "state": "Amazonas" }, "NQL": { "city": "Niquelandia", "country": "BR", "state": "Goias" }, "APS": { "city": "Anapolis", "country": "BR", "state": "Goias" }, "FBA": { "city": "Fonte Boa", "country": "BR", "state": "Amazonas" }, "PIN": { "city": "Parintins", "country": "BR", "state": "Amazonas" }, "PBQ": { "city": "Pimenta Bueno", "country": "BR", "state": "" }, "AAI": { "city": "Arraias", "country": "BR", "state": "Tocantins" }, "ROO": { "city": "Rondonopolis", "country": "BR", "state": "Mato-Grosso" }, "AIR": { "city": "Aripuana", "country": "BR", "state": "Mato-Grosso" }, "OPS": { "city": "Sinop", "country": "BR", "state": "Mato-Grosso" }, "STZ": { "city": "Santa Terezinha", "country": "BR", "state": "Tocantins" }, "IRZ": { "city": "Santa Isabel Do Rio Negro", "country": "BR", "state": "Amazonas" }, "TGQ": { "city": "Tangara Da Serra", "country": "BR", "state": "Mato-Grosso" }, "AZL": { "city": "Sapezal", "country": "BR", "state": "Mato-Grosso" }, "QHN": { "city": "Taguatinga", "country": "BR", "state": "Tocantins" }, "SQM": { "city": "Sao Miguel Do Araguaia", "country": "BR", "state": "Goias" }, "VLP": { "city": "Vila Rica", "country": "BR", "state": "Mato-Grosso" }, "MBK": { "city": "Matupa", "country": "BR", "state": "Mato-Grosso" }, "NOK": { "city": "Nova Xavantina", "country": "BR", "state": "Mato-Grosso" }, "AHL": { "city": "Aishalton", "country": "GY", "state": "Upper-Takutu-Upper-Essequibo" }, "NAI": { "city": "Annai", "country": "GY", "state": "Upper-Takutu-Upper-Essequibo" }, "BCG": { "city": "Bemichi", "country": "GY", "state": "Barima-Waini" }, "BMJ": { "city": "Baramita", "country": "GY", "state": "Barima-Waini" }, "GFO": { "city": "Bartica", "country": "GY", "state": "Cuyuni-Mazaruni" }, "GEO": { "city": "Georgetown", "country": "GY", "state": "Demerara-Mahaica" }, "OGL": { "city": "Ogle", "country": "GY", "state": "Demerara-Mahaica" }, "IMB": { "city": "Imbaimadai", "country": "GY", "state": "Cuyuni-Mazaruni" }, "KAR": { "city": "Kamarang", "country": "GY", "state": "Cuyuni-Mazaruni" }, "KRM": { "city": "Karanambo", "country": "GY", "state": "Upper-Takutu-Upper-Essequibo" }, "KRG": { "city": "Karasabai", "country": "GY", "state": "Upper-Takutu-Upper-Essequibo" }, "KTO": { "city": "Kato", "country": "GY", "state": "Potaro-Siparuni" }, "LUB": { "city": "Lumid Pau", "country": "GY", "state": "Upper-Takutu-Upper-Essequibo" }, "LTM": { "city": "Lethem", "country": "GY", "state": "Upper-Takutu-Upper-Essequibo" }, "USI": { "city": "Mabaruma", "country": "GY", "state": "Barima-Waini" }, "MHA": { "city": "Mahdia", "country": "GY", "state": "Potaro-Siparuni" }, "MYM": { "city": "Monkey Mountain", "country": "GY", "state": "Potaro-Siparuni" }, "MWJ": { "city": "Matthews Ridge", "country": "GY", "state": "Barima-Waini" }, "QSX": { "city": "New Amsterdam", "country": "GY", "state": "East-Berbice-Corentyne" }, "ORJ": { "city": "Orinduik", "country": "GY", "state": "" }, "PRR": { "city": "Paruma", "country": "GY", "state": "Cuyuni-Mazaruni" }, "ANU": { "city": "St. George", "country": "AG", "state": "Saint-George" }, "BBQ": { "city": "Codrington", "country": "AG", "state": "Barbuda" }, "BGI": { "city": "Bridgetown", "country": "BB", "state": "Christ-Church" }, "DCF": { "city": "Canefield", "country": "DM", "state": "Saint-Paul" }, "DOM": { "city": "Marigot", "country": "DM", "state": "Saint-Andrew" }, "DSD": { "city": "Grande Anse", "country": "GP", "state": "Guadeloupe" }, "BBR": { "city": "Basse Terre", "country": "GP", "state": "Guadeloupe" }, "SFC": { "city": "St-Francois", "country": "GP", "state": "Guadeloupe" }, "FDF": { "city": "Fort-de-France", "country": "MQ", "state": "Martinique" }, "SFG": { "city": "Grand Case", "country": "MF", "state": "" }, "SBH": { "city": "Gustavia", "country": "BL", "state": "" }, "GBJ": { "city": "Grand Bourg", "country": "GP", "state": "Guadeloupe" }, "PTP": { "city": "Pointe-a-Pitre Le Raizet", "country": "GP", "state": "Guadeloupe" }, "LSS": { "city": "Les Saintes", "country": "GP", "state": "Guadeloupe" }, "GND": { "city": "Saint George's", "country": "GD", "state": "Saint-George" }, "CRU": { "city": "Carriacou Island", "country": "GD", "state": "" }, "STT": { "city": "Charlotte Amalie", "country": "VI", "state": "Saint-Thomas-Island" }, "STX": { "city": "Christiansted", "country": "VI", "state": "Saint-Croix-Island" }, "ARE": { "city": "Arecibo", "country": "PR", "state": "Arecibo" }, "BQN": { "city": "Aguadilla", "country": "PR", "state": "Aguadilla" }, "CPX": { "city": "Culebra Island", "country": "PR", "state": "Culebra" }, "FAJ": { "city": "Fajardo", "country": "PR", "state": "Fajardo" }, "SIG": { "city": "San Juan", "country": "PR", "state": "San-Juan" }, "MAZ": { "city": "Mayaguez", "country": "PR", "state": "Mayaguez" }, "PSE": { "city": "Ponce", "country": "PR", "state": "Ponce" }, "SJU": { "city": "San Juan", "country": "PR", "state": "Carolina" }, "VQS": { "city": "Vieques Island", "country": "PR", "state": "Vieques" }, "SKB": { "city": "Basseterre", "country": "KN", "state": "Saint-George-Basseterre" }, "NEV": { "city": "Charlestown", "country": "KN", "state": "Saint-James-Windwa" }, "SLU": { "city": "Castries", "country": "LC", "state": "Castries" }, "UVF": { "city": "Vieux Fort", "country": "LC", "state": "Vieux-Fort" }, "AUA": { "city": "Oranjestad", "country": "AW", "state": "" }, "BON": { "city": "Kralendijk", "country": "BQ", "state": "Bonaire" }, "CUR": { "city": "Willemstad", "country": "CW", "state": "" }, "EUX": { "city": "Sint Eustatius", "country": "BQ", "state": "Sint-Eustatius" }, "SXM": { "city": "Saint Martin", "country": "SX", "state": "" }, "SAB": { "city": "Saba", "country": "BQ", "state": "Saba" }, "AXA": { "city": "The Valley", "country": "AI", "state": "" }, "MNI": { "city": "Gerald's Park", "country": "MS", "state": "Saint-Peter" }, "TAB": { "city": "Scarborough", "country": "TT", "state": "Tobago" }, "POS": { "city": "Port of Spain", "country": "TT", "state": "Tunapuna/Piarco" }, "NGD": { "city": "Anegada", "country": "VG", "state": "" }, "EIS": { "city": "Road Town", "country": "VG", "state": "" }, "VIJ": { "city": "Spanish Town", "country": "VG", "state": "" }, "BQU": { "city": "Bequia", "country": "VC", "state": "Grenadines" }, "CIW": { "city": "Canouan", "country": "VC", "state": "Grenadines" }, "MQS": { "city": "Mustique Island", "country": "VC", "state": "Grenadines" }, "UNI": { "city": "Union Island", "country": "VC", "state": "Grenadines" }, "SVD": { "city": "Kingstown", "country": "VC", "state": "Saint-George" }, "BDA": { "city": "Hamilton", "country": "BM", "state": "Saint-Georgeʼs" }, "ALA": { "city": "Almaty", "country": "KZ", "state": "Almaty-Oblysy" }, "BXH": { "city": "Balkhash", "country": "KZ", "state": "Qaraghandy" }, "BXJ": { "city": "Aima Ata", "country": "KZ", "state": "Almaty-Oblysy" }, "TDK": { "city": "Taldy Kurgan", "country": "KZ", "state": "Almaty-Oblysy" }, "TSE": { "city": "Astana", "country": "KZ", "state": "Aqmola" }, "KOV": { "city": "Kokshetau", "country": "KZ", "state": "Aqmola" }, "PPK": { "city": "Petropavlosk", "country": "KZ", "state": "Soltuestik-Qazaqstan" }, "DMB": { "city": "Taraz", "country": "KZ", "state": "Zhambyl" }, "FRU": { "city": "Bishkek", "country": "KG", "state": "Chuey" }, "OSS": { "city": "Osh", "country": "KG", "state": "Osh" }, "CIT": { "city": "Shymkent", "country": "KZ", "state": "Ongtuestik-Qazaqstan" }, "DZN": { "city": "Zhezkazgan", "country": "KZ", "state": "Qaraghandy" }, "KGF": { "city": "Karaganda", "country": "KZ", "state": "Qaraghandy" }, "KZO": { "city": "Kzyl-Orda", "country": "KZ", "state": "Qyzylorda" }, "URA": { "city": "Uralsk", "country": "KZ", "state": "" }, "EKB": { "city": "Ekibastuz", "country": "KZ", "state": "Pavlodar" }, "UKK": { "city": "Ust Kamenogorsk", "country": "KZ", "state": "East-Kazakhstan" }, "PWQ": { "city": "Pavlodar", "country": "KZ", "state": "Pavlodar" }, "DLX": { "city": "Semey", "country": "KZ", "state": "East-Kazakhstan" }, "SCO": { "city": "Aktau", "country": "KZ", "state": "Mangghystau" }, "GUW": { "city": "Atyrau", "country": "KZ", "state": "Atyrau" }, "AKX": { "city": "Aktyuinsk", "country": "KZ", "state": "Aqtobe" }, "AYK": { "city": "Arkalyk", "country": "KZ", "state": "" }, "KSN": { "city": "Kostanay", "country": "KZ", "state": "Qostanay" }, "GYD": { "city": "Baku", "country": "AZ", "state": "Baki" }, "KVD": { "city": "Ganja", "country": "AZ", "state": "Goygol-Rayon" }, "LLK": { "city": "Lankaran", "country": "AZ", "state": "Lənkəran" }, "NAJ": { "city": "Nakhchivan", "country": "AZ", "state": "Nakhichevan" }, "GBB": { "city": "Gabala", "country": "AZ", "state": "Qǝbǝlǝ" }, "ZTU": { "city": "Zaqatala", "country": "AZ", "state": "Zaqatala" }, "LWN": { "city": "Gyumri", "country": "AM", "state": "Shirak" }, "EVN": { "city": "Yerevan", "country": "AM", "state": "" }, "ADH": { "city": "Aldan", "country": "RU", "state": "Chukot" }, "YKS": { "city": "Yakutsk", "country": "RU", "state": "Chukot" }, "CNN": { "city": "Chulman", "country": "RU", "state": "Chukot" }, "ULK": { "city": "Lensk", "country": "RU", "state": "Chukot" }, "PYJ": { "city": "Yakutia", "country": "RU", "state": "Chukot" }, "MJZ": { "city": "Mirny", "country": "RU", "state": "Chukot" }, "CKH": { "city": "Chokurdah", "country": "RU", "state": "Chukot" }, "CYX": { "city": "Cherskiy", "country": "RU", "state": "Chukot" }, "IKS": { "city": "Tiksi", "country": "RU", "state": "Chukot" }, "KUT": { "city": "Kutaisi", "country": "GE", "state": "" }, "BUS": { "city": "Batumi", "country": "GE", "state": "Ajaria" }, "SUI": { "city": "Sukhumi", "country": "GE", "state": "Abkhazia" }, "TBS": { "city": "Tbilisi", "country": "GE", "state": "" }, "BQS": { "city": "Blagoveschensk", "country": "RU", "state": "Amur" }, "GDG": { "city": "Magdagachi", "country": "RU", "state": "Amur" }, "TYD": { "city": "Tynda", "country": "RU", "state": "Amur" }, "KHV": { "city": "Khabarovsk", "country": "RU", "state": "Khabarovsk" }, "KXK": { "city": "Komsomolsk-on-Amur", "country": "RU", "state": "Khabarovsk" }, "GVN": { "city": "Sovetskaya Gavan", "country": "RU", "state": "Khabarovsk" }, "DYR": { "city": "Anadyr", "country": "RU", "state": "Chukotka" }, "PVS": { "city": "Chukotka", "country": "RU", "state": "Chukotka" }, "GDX": { "city": "Magadan", "country": "RU", "state": "Magadan" }, "PWE": { "city": "Pevek", "country": "RU", "state": "Chukotka" }, "BQG": { "city": "Bogorodskoye", "country": "RU", "state": "Khabarovsk" }, "OHO": { "city": "Okhotsk", "country": "RU", "state": "Khabarovsk" }, "PKC": { "city": "Petropavlovsk-Kamchatsky", "country": "RU", "state": "Kamtsjatka" }, "OHH": { "city": "Okha", "country": "RU", "state": "Sakhalin" }, "EKS": { "city": "Shakhtersk", "country": "RU", "state": "Sakhalin" }, "DEE": { "city": "Kunashir Island", "country": "RU", "state": "Sakhalin" }, "ZZO": { "city": "Tymovskoye", "country": "RU", "state": "Sakhalin" }, "UUS": { "city": "Yuzhno-Sakhalinsk", "country": "RU", "state": "Sakhalin" }, "VVO": { "city": "Vladivostok", "country": "RU", "state": "Primorskiy" }, "HTA": { "city": "Chita", "country": "RU", "state": "Transbaikal-Territory" }, "BTK": { "city": "Bratsk", "country": "RU", "state": "Irkutsk" }, "UIK": { "city": "Ust-Ilimsk", "country": "RU", "state": "Irkutsk" }, "IKT": { "city": "Irkutsk", "country": "RU", "state": "Irkutsk" }, "ODO": { "city": "Bodaybo", "country": "RU", "state": "Irkutsk" }, "ERG": { "city": "Erbogachen", "country": "RU", "state": "Irkutsk" }, "UKX": { "city": "Ust-Kut", "country": "RU", "state": "Irkutsk" }, "UUD": { "city": "Ulan Ude", "country": "RU", "state": "Respublika-Buryatiya" }, "UJE": { "city": "Ujae Atoll", "country": "MH", "state": "Ujae-Atoll" }, "KBP": { "city": "Kiev", "country": "UA", "state": "Kyiv" }, "DOK": { "city": "Donetsk", "country": "UA", "state": "Donetsk" }, "KRQ": { "city": "Kramatorsk", "country": "UA", "state": "Donetsk" }, "MPW": { "city": "Mariupol", "country": "UA", "state": "Donetsk" }, "SEV": { "city": "Sievierodonetsk", "country": "UA", "state": "Luhansk" }, "VSG": { "city": "Luhansk", "country": "UA", "state": "Luhansk" }, "ERD": { "city": "Berdyansk", "country": "UA", "state": "Zaporizhia" }, "DNK": { "city": "Dnipropetrovsk", "country": "UA", "state": "Dnipro" }, "OZH": { "city": "Zaporizhia", "country": "UA", "state": "Zaporizhia" }, "KWG": { "city": "Kryvyi Rih", "country": "UA", "state": "Kropyvnytskyi" }, "KHC": { "city": "Kerch", "country": "UA", "state": "Republic-of-Crimea" }, "HRK": { "city": "Kharkiv", "country": "UA", "state": "Kharkiv" }, "PLV": { "city": "Poltava", "country": "UA", "state": "Poltava" }, "UMY": { "city": "Sumy", "country": "UA", "state": "Sumy" }, "CKC": { "city": "Cherkasy", "country": "UA", "state": "Cherkasy" }, "KGO": { "city": "Kirovograd", "country": "UA", "state": "Kropyvnytskyi" }, "IEV": { "city": "Kiev", "country": "UA", "state": "Kyiv-City" }, "GML": { "city": "Kiev", "country": "UA", "state": "Kyiv" }, "ZTR": { "city": "", "country": "UA", "state": "Zhytomyr" }, "UCK": { "city": "Lutsk", "country": "UA", "state": "Volyn" }, "HMJ": { "city": "Khmelnytskyi", "country": "UA", "state": "Khmelnytskyi" }, "IFO": { "city": "Ivano-Frankivsk", "country": "UA", "state": "Ivano-Frankivsk" }, "LWO": { "city": "Lviv", "country": "UA", "state": "Lviv" }, "CWC": { "city": "Chernivtsi", "country": "UA", "state": "Chernivtsi" }, "RWN": { "city": "Rivne", "country": "UA", "state": "Rivne" }, "TNL": { "city": "Ternopil", "country": "UA", "state": "Ternopil" }, "UDJ": { "city": "Uzhhorod", "country": "UA", "state": "Transcarpathia" }, "KHE": { "city": "Kherson", "country": "UA", "state": "Kherson" }, "NLV": { "city": "Nikolayev", "country": "UA", "state": "Mykolaiv" }, "ODS": { "city": "Odessa", "country": "UA", "state": "Odessa" }, "VIN": { "city": "Vinnitsa", "country": "UA", "state": "Vinnyts'ka" }, "ARH": { "city": "Archangelsk", "country": "RU", "state": "Arkhangelskaya" }, "NNM": { "city": "Naryan Mar", "country": "RU", "state": "Nenets" }, "CSH": { "city": "Solovetsky Islands", "country": "RU", "state": "Arkhangelskaya" }, "AMV": { "city": "Amderma", "country": "RU", "state": "Nenets" }, "KSZ": { "city": "Kotlas", "country": "RU", "state": "Arkhangelskaya" }, "LED": { "city": "St. Petersburg", "country": "RU", "state": "Leningradskaya-Oblast'" }, "KVK": { "city": "Apatity", "country": "RU", "state": "Murmansk" }, "MMK": { "city": "Murmansk", "country": "RU", "state": "Murmansk" }, "VLU": { "city": "Velikiye Luki", "country": "RU", "state": "Pskov" }, "PKV": { "city": "Pskov", "country": "RU", "state": "Pskov" }, "PES": { "city": "Petrozavodsk", "country": "RU", "state": "Karelia" }, "CEE": { "city": "Cherepovets", "country": "RU", "state": "Vologda" }, "VUS": { "city": "Velikiy Ustyug", "country": "RU", "state": "Vologda" }, "VGD": { "city": "Vologda", "country": "RU", "state": "Vologda" }, "BQT": { "city": "Brest", "country": "BY", "state": "Brest" }, "GME": { "city": "Gomel", "country": "BY", "state": "Gomel" }, "VTB": { "city": "Vitebsk", "country": "BY", "state": "Vitebsk" }, "KGD": { "city": "Kaliningrad", "country": "RU", "state": "Kaliningrad" }, "GNA": { "city": "Hrodna", "country": "BY", "state": "Grodnenskaya" }, "MHP": { "city": "Minsk", "country": "BY", "state": "" }, "MSQ": { "city": "Minsk", "country": "BY", "state": "Minsk" }, "MVQ": { "city": "Mogilev", "country": "BY", "state": "Mogilev" }, "ABA": { "city": "Abakan", "country": "RU", "state": "Khakasiya" }, "BAX": { "city": "Barnaul", "country": "RU", "state": "Altai-Krai" }, "RGK": { "city": "Gorno-Altaysk", "country": "RU", "state": "Altai" }, "KEJ": { "city": "Kemerovo", "country": "RU", "state": "Kemerovo" }, "EIE": { "city": "Yeniseysk", "country": "RU", "state": "Krasnoyarskiy" }, "KJA": { "city": "Krasnoyarsk", "country": "RU", "state": "Krasnoyarskiy" }, "ACS": { "city": "Achinsk", "country": "RU", "state": "Krasnoyarskiy" }, "KYZ": { "city": "Kyzyl", "country": "RU", "state": "Republic-of-Tyva" }, "OVB": { "city": "Novosibirsk", "country": "RU", "state": "Novosibirsk" }, "OMS": { "city": "Omsk", "country": "RU", "state": "Omsk" }, "TOF": { "city": "Tomsk", "country": "RU", "state": "Tomsk" }, "NOZ": { "city": "Novokuznetsk", "country": "RU", "state": "Kemerovo" }, "DKS": { "city": "Dikson", "country": "RU", "state": "Krasnoyarskiy" }, "HTG": { "city": "Khatanga", "country": "RU", "state": "Krasnoyarskiy" }, "IAA": { "city": "Igarka", "country": "RU", "state": "Krasnoyarskiy" }, "NSK": { "city": "Norilsk", "country": "RU", "state": "Krasnoyarskiy" }, "UKS": { "city": "Sevastopol", "country": "UA", "state": "Republic-of-Crimea" }, "SIP": { "city": "Simferopol", "country": "RU", "state": "Republic-of-Crimea" }, "AAQ": { "city": "Anapa", "country": "RU", "state": "Krasnodarskiy" }, "EIK": { "city": "Yeysk", "country": "RU", "state": "Krasnodarskiy" }, "GDZ": { "city": "Gelendzhik", "country": "RU", "state": "Krasnodarskiy" }, "KRR": { "city": "Krasnodar", "country": "RU", "state": "Krasnodarskiy" }, "GRV": { "city": "Grozny", "country": "RU", "state": "Chechnya" }, "MCX": { "city": "Makhachkala", "country": "RU", "state": "Dagestan" }, "MRV": { "city": "Mineralnyye Vody", "country": "RU", "state": "Stavropol'skiy" }, "NAL": { "city": "Nalchik", "country": "RU", "state": "Kabardino-Balkariya" }, "OGZ": { "city": "Beslan", "country": "RU", "state": "North-Ossetia" }, "IGT": { "city": "Magas", "country": "RU", "state": "Ingushetiya" }, "STW": { "city": "Stavropol", "country": "RU", "state": "Stavropol'skiy" }, "ROV": { "city": "Rostov-on-Don", "country": "RU", "state": "Rostov" }, "RVI": { "city": "Rostov-on-Don", "country": "RU", "state": "Rostov" }, "AER": { "city": "Sochi", "country": "RU", "state": "Krasnodarskiy" }, "ASF": { "city": "Astrakhan", "country": "RU", "state": "Astrakhan" }, "ESL": { "city": "Elista", "country": "RU", "state": "Kalmykiya" }, "VOG": { "city": "Volgograd", "country": "RU", "state": "Volgograd" }, "CEK": { "city": "Chelyabinsk", "country": "RU", "state": "Chelyabinsk" }, "MQF": { "city": "Magnitogorsk", "country": "RU", "state": "Bashkortostan" }, "SLY": { "city": "Salekhard", "country": "RU", "state": "Yamalo-Nenets" }, "YMK": { "city": "Mys Kamennyi", "country": "RU", "state": "Yamalo-Nenets" }, "TQL": { "city": "Tarko-Sale", "country": "RU", "state": "Yamalo-Nenets" }, "UEN": { "city": "Urengoy", "country": "RU", "state": "Yamalo-Nenets" }, "EZV": { "city": "", "country": "RU", "state": "Khanty-Mansia" }, "HMA": { "city": "Khanty-Mansiysk", "country": "RU", "state": "Khanty-Mansia" }, "IRM": { "city": "", "country": "RU", "state": "Khanty-Mansia" }, "NYA": { "city": "Nyagan", "country": "RU", "state": "Khanty-Mansia" }, "OVS": { "city": "Sovetskiy", "country": "RU", "state": "Khanty-Mansia" }, "URJ": { "city": "Uray", "country": "RU", "state": "Khanty-Mansia" }, "IJK": { "city": "Izhevsk", "country": "RU", "state": "Udmurtiya" }, "KVX": { "city": "Kirov", "country": "RU", "state": "Kirov" }, "NYM": { "city": "Nadym", "country": "RU", "state": "Yamalo-Nenets" }, "NUX": { "city": "Novy Urengoy", "country": "RU", "state": "Yamalo-Nenets" }, "NJC": { "city": "Nizhnevartovsk", "country": "RU", "state": "Khanty-Mansia" }, "PEE": { "city": "Perm", "country": "RU", "state": "Perm" }, "KGP": { "city": "Kogalym", "country": "RU", "state": "Khanty-Mansia" }, "NFG": { "city": "Nefteyugansk", "country": "RU", "state": "Khanty-Mansia" }, "NOJ": { "city": "Noyabrsk", "country": "RU", "state": "Yamalo-Nenets" }, "SGC": { "city": "Surgut", "country": "RU", "state": "Khanty-Mansia" }, "SVX": { "city": "Yekaterinburg", "country": "RU", "state": "Sverdlovsk" }, "TOX": { "city": "Tobolsk", "country": "RU", "state": "Tyumenskaya" }, "TJM": { "city": "Tyumen", "country": "RU", "state": "Tyumenskaya" }, "KRO": { "city": "Kurgan", "country": "RU", "state": "Kurgan" }, "ASB": { "city": "Ashgabat", "country": "TM", "state": "Ashgabat" }, "KRW": { "city": "Krasnovodsk", "country": "TM", "state": "" }, "MYP": { "city": "Mary", "country": "TM", "state": "" }, "TAZ": { "city": "Dashoguz", "country": "TM", "state": "Daşoguz" }, "CRZ": { "city": "Turkmenabat", "country": "TM", "state": "" }, "DYU": { "city": "Dushanbe", "country": "TJ", "state": "Dushanbe" }, "TJU": { "city": "Kulyab", "country": "TJ", "state": "Khatlon" }, "LBD": { "city": "Khudzhand", "country": "TJ", "state": "Viloyati-Sughd" }, "KQT": { "city": "Kurgan-Tyube", "country": "TJ", "state": "Khatlon" }, "AZN": { "city": "Andizhan", "country": "UZ", "state": "Andijon" }, "FEG": { "city": "Fergana", "country": "UZ", "state": "Fergana" }, "NMA": { "city": "Namangan", "country": "UZ", "state": "Namangan" }, "NCU": { "city": "Nukus", "country": "UZ", "state": "Karakalpakstan" }, "UGC": { "city": "Urgench", "country": "UZ", "state": "Xorazm" }, "NVI": { "city": "Navoi", "country": "UZ", "state": "Navoiy" }, "BHK": { "city": "Bukhara", "country": "UZ", "state": "" }, "KSQ": { "city": "Karshi", "country": "UZ", "state": "Qashqadaryo" }, "AFS": { "city": "Zarafshan", "country": "UZ", "state": "Navoiy" }, "SKD": { "city": "Samarkand", "country": "UZ", "state": "" }, "TMJ": { "city": "Termez", "country": "UZ", "state": "Surxondaryo" }, "TAS": { "city": "Tashkent", "country": "UZ", "state": "Toshkent-Shahri" }, "KMW": { "city": "Kostroma", "country": "RU", "state": "Kostroma" }, "BKA": { "city": "Moscow", "country": "RU", "state": "Moscow-Oblast" }, "IWA": { "city": "Ivanovo", "country": "RU", "state": "" }, "RYB": { "city": "Rybinsk", "country": "RU", "state": "Jaroslavl" }, "BZK": { "city": "Bryansk", "country": "RU", "state": "Brjansk" }, "LNX": { "city": "Smolensk", "country": "RU", "state": "Smolensk" }, "DME": { "city": "Moscow", "country": "RU", "state": "Moscow-Oblast" }, "IAR": { "city": "", "country": "RU", "state": "Jaroslavl" }, "SVO": { "city": "Moscow", "country": "RU", "state": "Moscow-Oblast" }, "KLD": { "city": "Tver", "country": "RU", "state": "Tverskaya" }, "EGO": { "city": "Belgorod", "country": "RU", "state": "Belgorod" }, "URS": { "city": "Kursk", "country": "RU", "state": "Kursk" }, "LPK": { "city": "Lipetsk", "country": "RU", "state": "Lipetsk" }, "VOZ": { "city": "Voronezh", "country": "RU", "state": "Voronezj" }, "OEL": { "city": "Orel", "country": "RU", "state": "Orjol" }, "TBW": { "city": "Tambov", "country": "RU", "state": "Tambov" }, "RZN": { "city": "Ryazan", "country": "RU", "state": "Rjazan" }, "VKO": { "city": "Moscow", "country": "RU", "state": "Moscow" }, "UCT": { "city": "Ukhta", "country": "RU", "state": "Komi" }, "INA": { "city": "Inta", "country": "RU", "state": "Komi" }, "PEX": { "city": "Pechora", "country": "RU", "state": "Komi" }, "USK": { "city": "Usinsk", "country": "RU", "state": "Komi" }, "VKT": { "city": "Vorkuta", "country": "RU", "state": "Komi" }, "UTS": { "city": "Ust-Tsylma", "country": "RU", "state": "Komi" }, "SCW": { "city": "Syktyvkar", "country": "RU", "state": "Komi" }, "GOJ": { "city": "Nizhny Novgorod", "country": "RU", "state": "Novgorod" }, "UUA": { "city": "Bugulma", "country": "RU", "state": "Tatarstan" }, "KZN": { "city": "Kazan", "country": "RU", "state": "Tatarstan" }, "NBC": { "city": "Nizhnekamsk", "country": "RU", "state": "Tatarstan" }, "JOK": { "city": "Yoshkar-Ola", "country": "RU", "state": "Mariy-El" }, "CSY": { "city": "Cheboksary", "country": "RU", "state": "Chuvashia" }, "ULV": { "city": "Ulyanovsk", "country": "RU", "state": "Ulyanovsk" }, "ULY": { "city": "Ulyanovsk", "country": "RU", "state": "Ulyanovsk" }, "REN": { "city": "Orenburg", "country": "RU", "state": "Orenburg" }, "OSW": { "city": "Orsk", "country": "RU", "state": "Orenburg" }, "PEZ": { "city": "Penza", "country": "RU", "state": "Penza" }, "SKX": { "city": "Saransk", "country": "RU", "state": "Mordoviya" }, "BWO": { "city": "Balakovo", "country": "RU", "state": "Saratov" }, "RTW": { "city": "Saratov", "country": "RU", "state": "Saratov" }, "BCX": { "city": "Beloretsk", "country": "RU", "state": "Bashkortostan" }, "NEF": { "city": "Neftekamsk", "country": "RU", "state": "Bashkortostan" }, "OKT": { "city": "Kzyl-Yar", "country": "RU", "state": "Bashkortostan" }, "UFA": { "city": "Ufa", "country": "RU", "state": "Bashkortostan" }, "KUF": { "city": "Samara", "country": "RU", "state": "Samara" }, "DIU": { "city": "Diu", "country": "IN", "state": "Gujarat" }, "AMD": { "city": "Ahmedabad", "country": "IN", "state": "Gujarat" }, "AKD": { "city": "", "country": "IN", "state": "Maharashtra" }, "IXU": { "city": "Aurangabad", "country": "IN", "state": "Maharashtra" }, "BOM": { "city": "Mumbai", "country": "IN", "state": "Maharashtra" }, "PAB": { "city": "", "country": "IN", "state": "Chhattisgarh" }, "BHJ": { "city": "Bhuj", "country": "IN", "state": "Gujarat" }, "IXG": { "city": "", "country": "IN", "state": "Karnataka" }, "BDQ": { "city": "Vadodara", "country": "IN", "state": "Gujarat" }, "BHO": { "city": "Bhopal", "country": "IN", "state": "Madhya-Pradesh" }, "BHU": { "city": "Bhavnagar", "country": "IN", "state": "Gujarat" }, "NMB": { "city": "", "country": "IN", "state": "Daman-and-Diu" }, "GUX": { "city": "", "country": "IN", "state": "Madhya-Pradesh" }, "GOI": { "city": "Dabolim", "country": "IN", "state": "Dabolim" }, "HBX": { "city": "Hubli", "country": "IN", "state": "Karnataka" }, "IDR": { "city": "Indore", "country": "IN", "state": "Madhya-Pradesh" }, "JLR": { "city": "", "country": "IN", "state": "Madhya-Pradesh" }, "JGA": { "city": "Jamnagar", "country": "IN", "state": "Gujarat" }, "IXY": { "city": "Kandla", "country": "IN", "state": "Gujarat" }, "HJR": { "city": "Khajuraho", "country": "IN", "state": "Madhya-Pradesh" }, "KLH": { "city": "", "country": "IN", "state": "Maharashtra" }, "IXK": { "city": "", "country": "IN", "state": "Gujarat" }, "LTU": { "city": "Latur", "country": "IN", "state": "Maharashtra" }, "NDC": { "city": "Nanded", "country": "IN", "state": "Maharashtra" }, "NAG": { "city": "Naqpur", "country": "IN", "state": "Maharashtra" }, "ISK": { "city": "Nashik", "country": "IN", "state": "Maharashtra" }, "PNQ": { "city": "Pune", "country": "IN", "state": "Maharashtra" }, "PBD": { "city": "Porbandar", "country": "IN", "state": "Gujarat" }, "RTC": { "city": "", "country": "IN", "state": "Maharashtra" }, "RAJ": { "city": "Rajkot", "country": "IN", "state": "Gujarat" }, "RPR": { "city": "Raipur", "country": "IN", "state": "Madhya-Pradesh" }, "SSE": { "city": "Solapur", "country": "IN", "state": "Maharashtra" }, "STV": { "city": "", "country": "IN", "state": "Gujarat" }, "UDR": { "city": "Udaipur", "country": "IN", "state": "Rajasthan" }, "CMB": { "city": "Colombo", "country": "LK", "state": "Western" }, "ACJ": { "city": "Anuradhapura", "country": "LK", "state": "North-Central" }, "BTC": { "city": "Batticaloa", "country": "LK", "state": "Eastern-Province" }, "RML": { "city": "Colombo", "country": "LK", "state": "Western" }, "GOY": { "city": "Amparai", "country": "LK", "state": "Eastern-Province" }, "MNH": { "city": "Polonnaruwa Town", "country": "LK", "state": "North-Central" }, "JAF": { "city": "Jaffna", "country": "LK", "state": "Northern-Province" }, "KCT": { "city": "Galle", "country": "LK", "state": "Southern" }, "GIU": { "city": "Sigiriya", "country": "LK", "state": "Central" }, "TRR": { "city": "Trincomalee", "country": "LK", "state": "Eastern-Province" }, "WRZ": { "city": "Weerawila", "country": "LK", "state": "Southern" }, "BBM": { "city": "Battambang", "country": "KH", "state": "" }, "KZC": { "city": "", "country": "KH", "state": "Kampong-Chhnang" }, "KKZ": { "city": "Kaoh Kong", "country": "KH", "state": "Koh-Kong" }, "KTI": { "city": "Kratie", "country": "KH", "state": "Kratie" }, "PNH": { "city": "Phnom Penh", "country": "KH", "state": "" }, "RBE": { "city": "Ratanakiri", "country": "KH", "state": "Ratanakiri" }, "REP": { "city": "Siem Reap", "country": "KH", "state": "Siem-Reap" }, "TNX": { "city": "Stung Treng", "country": "KH", "state": "Stung-Treng" }, "KOS": { "city": "Sihanukville", "country": "KH", "state": "Kampot" }, "IXV": { "city": "", "country": "IN", "state": "Arunachal-Pradesh" }, "IXA": { "city": "Agartala", "country": "IN", "state": "Tripura" }, "IXB": { "city": "Siliguri", "country": "IN", "state": "West-Bengal" }, "RGH": { "city": "Balurghat", "country": "IN", "state": "West-Bengal" }, "SHL": { "city": "Shillong", "country": "IN", "state": "Meghalaya" }, "VNS": { "city": "Varanasi", "country": "IN", "state": "Uttar-Pradesh" }, "BBI": { "city": "Bhubaneswar", "country": "IN", "state": "Odisha" }, "CCU": { "city": "Kolkata", "country": "IN", "state": "West-Bengal" }, "COH": { "city": "", "country": "IN", "state": "West-Bengal" }, "DBD": { "city": "", "country": "IN", "state": "Bihar" }, "DAE": { "city": "", "country": "IN", "state": "Arunachal-Pradesh" }, "GOP": { "city": "Gorakhpur", "country": "IN", "state": "Uttar-Pradesh" }, "GAU": { "city": "Guwahati", "country": "IN", "state": "Assam" }, "GAY": { "city": "", "country": "IN", "state": "Bihar" }, "IMF": { "city": "Imphal", "country": "IN", "state": "Manipur" }, "PYB": { "city": "Jeypore", "country": "IN", "state": "Odisha" }, "IXW": { "city": "", "country": "IN", "state": "Jharkhand" }, "JRH": { "city": "Jorhat", "country": "IN", "state": "Assam" }, "IXQ": { "city": "", "country": "IN", "state": "Tripura" }, "IXH": { "city": "", "country": "IN", "state": "Tripura" }, "IXS": { "city": "Silchar", "country": "IN", "state": "Assam" }, "IXN": { "city": "Khowai", "country": "IN", "state": "Tripura" }, "AJL": { "city": "Aizawl", "country": "IN", "state": "Mizoram" }, "IXI": { "city": "Lilabari", "country": "IN", "state": "Assam" }, "LDA": { "city": "Malda", "country": "IN", "state": "" }, "DIB": { "city": "Dibrugarh", "country": "IN", "state": "Assam" }, "DMU": { "city": "Dimapur", "country": "IN", "state": "Nagaland" }, "MZU": { "city": "", "country": "IN", "state": "Bihar" }, "IXT": { "city": "Pasighat", "country": "IN", "state": "Arunachal-Pradesh" }, "PAT": { "city": "Patna", "country": "IN", "state": "Bihar" }, "IXR": { "city": "Ranchi", "country": "IN", "state": "Jharkhand" }, "RRK": { "city": "", "country": "IN", "state": "Odisha" }, "RUP": { "city": "", "country": "IN", "state": "Assam" }, "TEI": { "city": "Tezu", "country": "IN", "state": "Arunachal-Pradesh" }, "TEZ": { "city": "", "country": "IN", "state": "Assam" }, "VTZ": { "city": "Visakhapatnam", "country": "IN", "state": "Andhra-Pradesh" }, "ZER": { "city": "", "country": "IN", "state": "Arunachal-Pradesh" }, "BZL": { "city": "Barisal", "country": "BD", "state": "Barisal" }, "CXB": { "city": "Cox's Bazar", "country": "BD", "state": "Chittagong" }, "CLA": { "city": "Comilla", "country": "BD", "state": "Chittagong" }, "CGP": { "city": "Chittagong", "country": "BD", "state": "Chittagong" }, "DAC": { "city": "Dhaka", "country": "BD", "state": "Dhaka" }, "IRD": { "city": "Ishurdi", "country": "BD", "state": "Rajshahi-Division" }, "JSR": { "city": "Jashahor", "country": "BD", "state": "Khulna" }, "LLJ": { "city": "Lalmonirhat", "country": "BD", "state": "Rangpur-Division" }, "RJH": { "city": "Rajshahi", "country": "BD", "state": "Rajshahi-Division" }, "SPD": { "city": "Saidpur", "country": "BD", "state": "Rangpur-Division" }, "TKR": { "city": "Thakurgaon", "country": "BD", "state": "Rangpur-Division" }, "ZHM": { "city": "Shamshernagar", "country": "BD", "state": "Sylhet" }, "ZYL": { "city": "Sylhet", "country": "BD", "state": "Sylhet" }, "HKG": { "city": "Hong Kong", "country": "HK", "state": "" }, "AGR": { "city": "", "country": "IN", "state": "Uttar-Pradesh" }, "IXD": { "city": "Allahabad", "country": "IN", "state": "Uttar-Pradesh" }, "ATQ": { "city": "Amritsar", "country": "IN", "state": "Punjab" }, "BKB": { "city": "Bikaner", "country": "IN", "state": "Rajasthan" }, "KUU": { "city": "", "country": "IN", "state": "Himachal-Pradesh" }, "BUP": { "city": "", "country": "IN", "state": "Punjab" }, "IXC": { "city": "Chandigarh", "country": "IN", "state": "Chandigarh" }, "DED": { "city": "Dehradun", "country": "IN", "state": "Uttar-Pradesh" }, "DEL": { "city": "New Delhi", "country": "IN", "state": "NCT" }, "DHM": { "city": "", "country": "IN", "state": "Himachal-Pradesh" }, "GWL": { "city": "Gwalior", "country": "IN", "state": "Madhya-Pradesh" }, "HSS": { "city": "", "country": "IN", "state": "Haryana" }, "JDH": { "city": "Jodhpur", "country": "IN", "state": "Rajasthan" }, "JAI": { "city": "Jaipur", "country": "IN", "state": "Rajasthan" }, "JSA": { "city": "", "country": "IN", "state": "Rajasthan" }, "IXJ": { "city": "Jammu", "country": "IN", "state": "Jammu-and-Kashmir" }, "KNU": { "city": "", "country": "IN", "state": "Uttar-Pradesh" }, "KQH": { "city": "Kishangarh", "country": "IN", "state": "Rajasthan" }, "KTU": { "city": "", "country": "IN", "state": "Rajasthan" }, "LUH": { "city": "", "country": "IN", "state": "Punjab" }, "IXL": { "city": "Leh", "country": "IN", "state": "Jammu-and-Kashmir" }, "LKO": { "city": "Lucknow", "country": "IN", "state": "Uttar-Pradesh" }, "IXP": { "city": "", "country": "IN", "state": "Punjab" }, "PGH": { "city": "Pantnagar", "country": "IN", "state": "Uttar-Pradesh" }, "SLV": { "city": "", "country": "IN", "state": "Himachal-Pradesh" }, "SXR": { "city": "Srinagar", "country": "IN", "state": "Jammu-and-Kashmir" }, "TNI": { "city": "", "country": "IN", "state": "Madhya-Pradesh" }, "AOU": { "city": "Attopeu", "country": "LA", "state": "Attapu" }, "OUI": { "city": "", "country": "LA", "state": "Bokeo" }, "LPQ": { "city": "Luang Phabang", "country": "LA", "state": "Louangphabang" }, "LXG": { "city": "Luang Namtha", "country": "LA", "state": "Loungnamtha" }, "ODY": { "city": "Oudomsay", "country": "LA", "state": "Oudomxai" }, "PKZ": { "city": "Pakse", "country": "LA", "state": "Champasak" }, "ZBY": { "city": "Sayaboury", "country": "LA", "state": "Xiagnabouli" }, "ZVK": { "city": "", "country": "LA", "state": "Savannahkhet" }, "NEU": { "city": "", "country": "LA", "state": "Houaphan" }, "VNA": { "city": "Saravane", "country": "LA", "state": "Salavan" }, "THK": { "city": "Thakhek", "country": "LA", "state": "Nakhon-Phanom" }, "VTE": { "city": "Vientiane", "country": "LA", "state": "Vientiane-Prefecture" }, "XKH": { "city": "Xieng Khouang", "country": "LA", "state": "Xiangkhoang" }, "MFM": { "city": "Taipa", "country": "MO", "state": "" }, "BJH": { "city": "Bajhang", "country": "NP", "state": "Far-Western" }, "BHP": { "city": "Bhojpur", "country": "NP", "state": "Eastern-Region" }, "BGL": { "city": "Baglung", "country": "NP", "state": "Western-Region" }, "BHR": { "city": "Bharatpur", "country": "NP", "state": "Central-Region" }, "BJU": { "city": "Bajura", "country": "NP", "state": "Far-Western" }, "BIT": { "city": "Baitadi", "country": "NP", "state": "Far-Western" }, "BWA": { "city": "Bhairawa", "country": "NP", "state": "Western-Region" }, "BDP": { "city": "Bhadrapur", "country": "NP", "state": "Eastern-Region" }, "DNP": { "city": "Dang", "country": "NP", "state": "Mid-Western" }, "DHI": { "city": "Dhangarhi", "country": "NP", "state": "Far-Western" }, "DAP": { "city": "Darchula", "country": "NP", "state": "Far-Western" }, "DOP": { "city": "Dolpa", "country": "NP", "state": "Mid-Western" }, "SIH": { "city": "Silgadi Doti", "country": "NP", "state": "Far-Western" }, "GKH": { "city": "Gorkha", "country": "NP", "state": "Western-Region" }, "JIR": { "city": "Jiri", "country": "NP", "state": "" }, "JUM": { "city": "Jumla", "country": "NP", "state": "Mid-Western" }, "JKR": { "city": "Janakpur", "country": "NP", "state": "Central-Region" }, "JMO": { "city": "Jomsom", "country": "NP", "state": "Western-Region" }, "KTM": { "city": "Kathmandu", "country": "NP", "state": "Central-Region" }, "LDN": { "city": "Lamidanda", "country": "NP", "state": "Eastern-Region" }, "LUA": { "city": "Lukla", "country": "NP", "state": "Eastern-Region" }, "LTG": { "city": "Langtang", "country": "NP", "state": "Central-Region" }, "NGX": { "city": "Ngawal", "country": "NP", "state": "Western-Region" }, "MEY": { "city": "Meghauli", "country": "NP", "state": "Central-Region" }, "XMG": { "city": "Mahendranagar", "country": "NP", "state": "Far-Western" }, "KEP": { "city": "Nepalgunj", "country": "NP", "state": "Mid-Western" }, "PKR": { "city": "Pokhara", "country": "NP", "state": "Western-Region" }, "PPL": { "city": "Phaplu", "country": "NP", "state": "Eastern-Region" }, "RJB": { "city": "Rajbiraj", "country": "NP", "state": "Eastern-Region" }, "RHP": { "city": "Ramechhap", "country": "NP", "state": "Central-Region" }, "RUK": { "city": "Rukumkot", "country": "NP", "state": "Mid-Western" }, "RPA": { "city": "Rolpa", "country": "NP", "state": "Mid-Western" }, "RUM": { "city": "Rumjatar", "country": "NP", "state": "Eastern-Region" }, "SIF": { "city": "Simara", "country": "NP", "state": "Central-Region" }, "SKH": { "city": "Surkhet", "country": "NP", "state": "Mid-Western" }, "FEB": { "city": "Sanfebagar", "country": "NP", "state": "Far-Western" }, "IMK": { "city": "Simikot", "country": "NP", "state": "Mid-Western" }, "TPJ": { "city": "Taplejung", "country": "NP", "state": "Eastern-Region" }, "TMI": { "city": "Tumling Tar", "country": "NP", "state": "Eastern-Region" }, "BIR": { "city": "Biratnagar", "country": "NP", "state": "Eastern-Region" }, "AGX": { "city": "", "country": "IN", "state": "Laccadives" }, "BEP": { "city": "Bellary", "country": "IN", "state": "Karnataka" }, "BLR": { "city": "Bangalore", "country": "IN", "state": "Karnataka" }, "VGA": { "city": "", "country": "IN", "state": "Andhra-Pradesh" }, "CJB": { "city": "Coimbatore", "country": "IN", "state": "Tamil-Nadu" }, "COK": { "city": "Cochin", "country": "IN", "state": "Kerala" }, "CCJ": { "city": "Calicut", "country": "IN", "state": "Kerala" }, "CDP": { "city": "", "country": "IN", "state": "Andhra-Pradesh" }, "CBD": { "city": "", "country": "IN", "state": "Andaman-and-Nicobar" }, "HYD": { "city": "Hyderabad", "country": "IN", "state": "Telangana" }, "BPM": { "city": "Hyderabad", "country": "IN", "state": "Telangana" }, "VDY": { "city": "", "country": "IN", "state": "Karnataka" }, "IXM": { "city": "Madurai", "country": "IN", "state": "Tamil-Nadu" }, "IXE": { "city": "Mangalore", "country": "IN", "state": "Karnataka" }, "MAA": { "city": "Chennai", "country": "IN", "state": "Tamil-Nadu" }, "MYQ": { "city": "Mysore", "country": "IN", "state": "Karnataka" }, "IXZ": { "city": "Port Blair", "country": "IN", "state": "Andaman-and-Nicobar" }, "PNY": { "city": "", "country": "IN", "state": "Tamil-Nadu" }, "RJA": { "city": "Rajahmundry", "country": "IN", "state": "Andhra-Pradesh" }, "SXV": { "city": "", "country": "IN", "state": "Tamil-Nadu" }, "TJV": { "city": "Thanjavur", "country": "IN", "state": "Tamil-Nadu" }, "TIR": { "city": "Tirupati", "country": "IN", "state": "Andhra-Pradesh" }, "TRZ": { "city": "Tiruchirappally", "country": "IN", "state": "Tamil-Nadu" }, "TRV": { "city": "Trivandrum", "country": "IN", "state": "Kerala" }, "WGC": { "city": "Warrangal", "country": "IN", "state": "Telangana" }, "PBH": { "city": "Paro", "country": "BT", "state": "Paro" }, "IFU": { "city": "Ifuru", "country": "MV", "state": "Ifuru" }, "FVM": { "city": "Fuvahmulah Island", "country": "MV", "state": "Gnyaviyani-Atoll" }, "GAN": { "city": "Gan", "country": "MV", "state": "Seenu" }, "HAQ": { "city": "Haa Dhaalu Atoll", "country": "MV", "state": "Haa-Dhaalu-Atholhu" }, "KDO": { "city": "Kadhdhoo", "country": "MV", "state": "Laamu" }, "MLE": { "city": "Male", "country": "MV", "state": "Kaafu-Atoll" }, "KDM": { "city": "Huvadhu Atoll", "country": "MV", "state": "Gaafu-Dhaalu-Atholhu" }, "VAM": { "city": "Maamigili", "country": "MV", "state": "" }, "DMK": { "city": "Bangkok", "country": "TH", "state": "Bangkok" }, "KKM": { "city": "", "country": "TH", "state": "Lop-Buri" }, "KDT": { "city": "Nakhon Pathom", "country": "TH", "state": "Nakhon-Pathom" }, "TDX": { "city": "", "country": "TH", "state": "Trat" }, "BKK": { "city": "Bangkok", "country": "TH", "state": "Samut-Prakan" }, "UTP": { "city": "Rayong", "country": "TH", "state": "Rayong" }, "CNX": { "city": "Chiang Mai", "country": "TH", "state": "Chiang-Mai" }, "HGN": { "city": "", "country": "TH", "state": "Mae-Hong-Son" }, "PYY": { "city": "Mae Hong Son", "country": "TH", "state": "Mae-Hong-Son" }, "LPT": { "city": "", "country": "TH", "state": "Lampang" }, "NNT": { "city": "", "country": "TH", "state": "Nan" }, "PRH": { "city": "", "country": "TH", "state": "Phrae" }, "CEI": { "city": "Chiang Rai", "country": "TH", "state": "Chiang-Rai" }, "BAO": { "city": "Ban Mak Khaen", "country": "TH", "state": "Changwat-Udon-Thani" }, "PHY": { "city": "", "country": "TH", "state": "Phetchabun" }, "HHQ": { "city": "Hua Hin", "country": "TH", "state": "Phetchaburi" }, "TKH": { "city": "", "country": "TH", "state": "Nakhon-Sawan" }, "MAQ": { "city": "", "country": "TH", "state": "Tak" }, "THS": { "city": "", "country": "TH", "state": "Sukhothai" }, "PHS": { "city": "", "country": "TH", "state": "Phitsanulok" }, "TKT": { "city": "", "country": "TH", "state": "Tak" }, "UTR": { "city": "Uttaradit", "country": "TH", "state": "Uttaradit" }, "URT": { "city": "Surat Thani", "country": "TH", "state": "Surat-Thani" }, "NAW": { "city": "", "country": "TH", "state": "Narathiwat" }, "CJM": { "city": "", "country": "TH", "state": "Chumphon" }, "NST": { "city": "Nakhon Si Thammarat", "country": "TH", "state": "Nakhon-Si-Thammarat" }, "KBV": { "city": "Krabi", "country": "TH", "state": "Krabi" }, "SGZ": { "city": "", "country": "TH", "state": "Songkhla" }, "PAN": { "city": "", "country": "TH", "state": "Pattani" }, "USM": { "city": "Na Thon (Ko Samui Island)", "country": "TH", "state": "Nakhon-Si-Thammarat" }, "HKT": { "city": "Phuket", "country": "TH", "state": "Phuket" }, "UNN": { "city": "", "country": "TH", "state": "Ranong" }, "HDY": { "city": "Hat Yai", "country": "TH", "state": "Songkhla" }, "TST": { "city": "", "country": "TH", "state": "Trang" }, "UTH": { "city": "Udon Thani", "country": "TH", "state": "Changwat-Udon-Thani" }, "SNO": { "city": "", "country": "TH", "state": "Sakon-Nakhon" }, "KKC": { "city": "Khon Kaen", "country": "TH", "state": "Khon-Kaen" }, "LOE": { "city": "", "country": "TH", "state": "Loei" }, "BFV": { "city": "", "country": "TH", "state": "Buriram" }, "NAK": { "city": "", "country": "TH", "state": "Nakhon-Ratchasima" }, "UBP": { "city": "Ubon Ratchathani", "country": "TH", "state": "Changwat-Ubon-Ratchathani" }, "ROI": { "city": "", "country": "TH", "state": "Roi-Et" }, "KOP": { "city": "", "country": "TH", "state": "Nakhon-Phanom" }, "BMV": { "city": "Buon Ma Thuot", "country": "VN", "state": "Ha-Nội" }, "VCL": { "city": "Dung Quat Bay", "country": "VN", "state": "" }, "HPH": { "city": "Haiphong", "country": "VN", "state": "Hải-Phong" }, "CAH": { "city": "Ca Mau City", "country": "VN", "state": "Cần-Thơ" }, "CXR": { "city": "Nha Trang", "country": "VN", "state": "Khanh-Hoa" }, "VCS": { "city": "Con Ong", "country": "VN", "state": "Ba-Rịa-Vung-Tau" }, "VCA": { "city": "Can Tho", "country": "VN", "state": "Lao-Cai" }, "DIN": { "city": "Dien Bien Phu", "country": "VN", "state": "Lai-Chau" }, "VDH": { "city": "Dong Hoi", "country": "VN", "state": "Yen-Bai" }, "DLI": { "city": "Dalat", "country": "VN", "state": "Lam-Dồng" }, "DAD": { "city": "Da Nang", "country": "VN", "state": "Da-Nẵng" }, "HAN": { "city": "Hanoi", "country": "VN", "state": "Ha-Nội" }, "SQH": { "city": "Son-La", "country": "VN", "state": "Sơn-La" }, "NHA": { "city": "Nha Trang", "country": "VN", "state": "Khanh-Hoa" }, "HUI": { "city": "Hue", "country": "VN", "state": "Bắc-Ninh" }, "UIH": { "city": "Quy Nohn", "country": "VN", "state": "Khanh-Hoa" }, "PXU": { "city": "Pleiku", "country": "VN", "state": "" }, "PQC": { "city": "Duong Dong", "country": "VN", "state": "Binh-Thuận" }, "PHA": { "city": "Phan Rang", "country": "VN", "state": "Tuyen-Quang" }, "PHH": { "city": "Phan Thiet", "country": "VN", "state": "Binh-Thuận" }, "VKG": { "city": "Rach Gia", "country": "VN", "state": "Binh-Thuận" }, "TBB": { "city": "Tuy Hoa", "country": "VN", "state": "Vinh-Long" }, "SGN": { "city": "Ho Chi Minh City", "country": "VN", "state": "Ho-Chi-Minh-City" }, "THD": { "city": "Thanh Hóa", "country": "VN", "state": "" }, "VII": { "city": "Vinh", "country": "VN", "state": "Nghệ-An" }, "VTG": { "city": "Vung Tau", "country": "VN", "state": "Ba-Rịa-Vung-Tau" }, "NYU": { "city": "Nyaung U", "country": "MM", "state": "Mandalay" }, "BMO": { "city": "Banmaw", "country": "MM", "state": "Kachin" }, "TVY": { "city": "Dawei", "country": "MM", "state": "Tanintharyi" }, "NYT": { "city": "Pyinmana", "country": "MM", "state": "Mandalay" }, "GAW": { "city": "Gangaw", "country": "MM", "state": "Magway" }, "GWA": { "city": "Gwa", "country": "MM", "state": "Rakhine" }, "HEH": { "city": "Heho", "country": "MM", "state": "Shan" }, "HOX": { "city": "Hommalinn", "country": "MM", "state": "Sagain" }, "TIO": { "city": "Tilin", "country": "MM", "state": "Magway" }, "KET": { "city": "Kengtung", "country": "MM", "state": "Shan" }, "KHM": { "city": "Kanti", "country": "MM", "state": "Sagain" }, "KMV": { "city": "Kalemyo", "country": "MM", "state": "Sagain" }, "KYP": { "city": "Kyaukpyu", "country": "MM", "state": "Rakhine" }, "KAW": { "city": "Kawthoung", "country": "MM", "state": "Tanintharyi" }, "KYT": { "city": "Kyauktu", "country": "MM", "state": "Magway" }, "LIW": { "city": "Loikaw", "country": "MM", "state": "Kayah" }, "LSH": { "city": "Lashio", "country": "MM", "state": "Shan" }, "MDL": { "city": "Mandalay", "country": "MM", "state": "Mandalay" }, "MGZ": { "city": "Mkeik", "country": "MM", "state": "Tanintharyi" }, "MYT": { "city": "Myitkyina", "country": "MM", "state": "Kachin" }, "MNU": { "city": "Mawlamyine", "country": "MM", "state": "Mon" }, "MGU": { "city": "Manaung", "country": "MM", "state": "Rakhine" }, "MOE": { "city": "", "country": "MM", "state": "Shan" }, "MOG": { "city": "Mong Hsat", "country": "MM", "state": "Shan" }, "MGK": { "city": "Mong Tong", "country": "MM", "state": "Shan" }, "MWQ": { "city": "Magway", "country": "MM", "state": "Magway" }, "NMS": { "city": "Namsang", "country": "MM", "state": "Shan" }, "NMT": { "city": "Namtu", "country": "MM", "state": "Shan" }, "PAA": { "city": "Hpa-N", "country": "MM", "state": "Kayin" }, "PAU": { "city": "Pauk", "country": "MM", "state": "Magway" }, "BSX": { "city": "Pathein", "country": "MM", "state": "Ayeyarwady" }, "PPU": { "city": "Pa Pun", "country": "MM", "state": "Kayin" }, "PBU": { "city": "Putao", "country": "MM", "state": "Kachin" }, "PKK": { "city": "Pakhokku", "country": "MM", "state": "Magway" }, "PRU": { "city": "Pye", "country": "MM", "state": "Bago" }, "AKY": { "city": "Sittwe", "country": "MM", "state": "Rakhine" }, "SNW": { "city": "Thandwe", "country": "MM", "state": "Rakhine" }, "THL": { "city": "Tachileik", "country": "MM", "state": "Shan" }, "XYE": { "city": "Ye", "country": "MM", "state": "Mon" }, "RGN": { "city": "Yangon", "country": "MM", "state": "Yangon" }, "UPG": { "city": "Ujung Pandang-Celebes Island", "country": "ID", "state": "South-Sulawesi" }, "BIK": { "city": "Biak-Supiori Island", "country": "ID", "state": "Papua" }, "ONI": { "city": "Moanamani-Papua Island", "country": "ID", "state": "Papua" }, "FOO": { "city": "Kornasoren-Numfoor Island", "country": "ID", "state": "Papua" }, "WET": { "city": "Wagethe-Papua Island", "country": "ID", "state": "Papua" }, "NBX": { "city": "Nabire-Papua Island", "country": "ID", "state": "Papua" }, "ILA": { "city": "Illaga-Papua Island", "country": "ID", "state": "Papua" }, "KOX": { "city": "Kokonau-Papua Island", "country": "ID", "state": "" }, "ZRI": { "city": "Serui-Japen Island", "country": "ID", "state": "Papua" }, "TIM": { "city": "Timika-Papua Island", "country": "ID", "state": "Papua" }, "EWI": { "city": "Enarotali-Papua Island", "country": "ID", "state": "Papua" }, "AMI": { "city": "Mataram-Lombok Island", "country": "ID", "state": "West-Nusa-Tenggara" }, "BMU": { "city": "Bima-Sumbawa Island", "country": "ID", "state": "West-Nusa-Tenggara" }, "DPS": { "city": "Denpasar-Bali Island", "country": "ID", "state": "Bali" }, "LOP": { "city": "Mataram", "country": "ID", "state": "West-Nusa-Tenggara" }, "SWQ": { "city": "Sumbawa Island", "country": "ID", "state": "West-Nusa-Tenggara" }, "TMC": { "city": "Waikabubak-Sumba Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "WGP": { "city": "Waingapu-Sumba Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "ARJ": { "city": "Arso-Papua Island", "country": "ID", "state": "Papua" }, "BUI": { "city": "Bokondini-Papua Island", "country": "ID", "state": "" }, "ZRM": { "city": "Sarmi-Papua Island", "country": "ID", "state": "Papua" }, "DJJ": { "city": "Jayapura-Papua Island", "country": "ID", "state": "Papua" }, "LHI": { "city": "Lereh-Papua Island", "country": "ID", "state": "Papua" }, "LII": { "city": "Mulia-Papua Island", "country": "ID", "state": "Papua" }, "OKL": { "city": "Oksibil-Papua Island", "country": "ID", "state": "Papua" }, "WAR": { "city": "Waris-Papua Island", "country": "ID", "state": "Papua" }, "SEH": { "city": "Senggeh-Papua Island", "country": "ID", "state": "Papua" }, "UBR": { "city": "Ubrub-Papua Island", "country": "ID", "state": "Papua" }, "WMX": { "city": "Wamena-Papua Island", "country": "ID", "state": "Papua" }, "MDP": { "city": "Mindiptana-Papua Island", "country": "ID", "state": "Papua" }, "BXD": { "city": "Bade-Papua Island", "country": "ID", "state": "Papua" }, "MKQ": { "city": "Merauke-Papua Island", "country": "ID", "state": "Papua" }, "OKQ": { "city": "Okaba-Papua Island", "country": "ID", "state": "Papua" }, "KEI": { "city": "Kepi-Papua Island", "country": "ID", "state": "Papua" }, "TMH": { "city": "Tanah Merah-Papua Island", "country": "ID", "state": "Papua" }, "TJS": { "city": "Tanjung Selor-Borneo Island", "country": "ID", "state": "East-Kalimantan" }, "DTD": { "city": "Datadawai-Borneo Island", "country": "ID", "state": "East-Kalimantan" }, "BEJ": { "city": "Tanjung Redep-Borneo Island", "country": "ID", "state": "East-Kalimantan" }, "BPN": { "city": "Balikpapan-Borneo Island", "country": "ID", "state": "East-Kalimantan" }, "TRK": { "city": "Tarakan Island", "country": "ID", "state": "East-Kalimantan" }, "SRI": { "city": "Samarinda-Borneo Island", "country": "ID", "state": "East-Kalimantan" }, "TSX": { "city": "Santan-Borneo Island", "country": "ID", "state": "East-Kalimantan" }, "BYQ": { "city": "Bunju Island", "country": "ID", "state": "North-Kalimantan" }, "GLX": { "city": "Galela-Celebes Island", "country": "ID", "state": "North-Maluku" }, "GTO": { "city": "Gorontalo-Celebes Island", "country": "ID", "state": "Gorontalo" }, "NAH": { "city": "Tahuna-Sangihe Island", "country": "ID", "state": "North-Sulawesi" }, "TLI": { "city": "Toli Toli-Celebes Island", "country": "ID", "state": "" }, "GEB": { "city": "Gebe Island", "country": "ID", "state": "Maluku" }, "KAZ": { "city": "Kao-Celebes Island", "country": "ID", "state": "North-Maluku" }, "PLW": { "city": "Palu-Celebes Island", "country": "ID", "state": "Central-Sulawesi" }, "MDC": { "city": "Manado-Celebes Island", "country": "ID", "state": "North-Sulawesi" }, "MNA": { "city": "Karakelong Island", "country": "ID", "state": "North-Sulawesi" }, "PSJ": { "city": "Poso-Celebes Island", "country": "ID", "state": "Central-Sulawesi" }, "OTI": { "city": "Gotalalamo-Morotai Island", "country": "ID", "state": "Maluku" }, "TTE": { "city": "Sango-Ternate Island", "country": "ID", "state": "North-Maluku" }, "LUW": { "city": "Luwok-Celebes Island", "country": "ID", "state": "Central-Sulawesi" }, "UOL": { "city": "Buol-Celebes Island", "country": "ID", "state": "Central-Sulawesi" }, "BTW": { "city": "Batu Licin-Borneo Island", "country": "ID", "state": "South-Kalimantan" }, "PKN": { "city": "Pangkalanbun-Borneo Island", "country": "ID", "state": "Central-Kalimantan" }, "KBU": { "city": "Laut Island", "country": "ID", "state": "South-Kalimantan" }, "MTW": { "city": "Murateweh-Borneo Island", "country": "ID", "state": "Central-Kalimantan" }, "TJG": { "city": "Tanta-Tabalong-Borneo Island", "country": "ID", "state": "South-Kalimantan" }, "BDJ": { "city": "Banjarmasin-Borneo Island", "country": "ID", "state": "South-Kalimantan" }, "PKY": { "city": "Palangkaraya-Kalimantan Tengah", "country": "ID", "state": "Central-Kalimantan" }, "SMQ": { "city": "Sampit-Borneo Island", "country": "ID", "state": "Central-Kalimantan" }, "AHI": { "city": "Amahai-Seram Island", "country": "ID", "state": "Maluku" }, "DOB": { "city": "Dobo-Kobror Island", "country": "ID", "state": "Maluku" }, "MAL": { "city": "Mangole Island", "country": "ID", "state": "North-Maluku" }, "NRE": { "city": "Namrole-Buru Island", "country": "ID", "state": "Maluku" }, "LAH": { "city": "Labuha-Halmahera Island", "country": "ID", "state": "North-Maluku" }, "SXK": { "city": "Saumlaki-Yamdena Island", "country": "ID", "state": "Maluku" }, "BJK": { "city": "Maikoor Island", "country": "ID", "state": "Maluku" }, "LUV": { "city": "Langgur-Seram Island", "country": "ID", "state": "Maluku" }, "SQN": { "city": "Sanana-Seram Island", "country": "ID", "state": "North-Maluku" }, "AMQ": { "city": "Ambon", "country": "ID", "state": "Maluku" }, "NAM": { "city": "Namlea-Buru Island", "country": "ID", "state": "Maluku" }, "TAX": { "city": "Tikong-Taliabu Island", "country": "ID", "state": "North-Maluku" }, "MLG": { "city": "Malang-Java Island", "country": "ID", "state": "East-Java" }, "CPF": { "city": "Tjepu-Java Island", "country": "ID", "state": "Central-Java" }, "JOG": { "city": "Yogyakarta-Java Island", "country": "ID", "state": "Yogyakarta" }, "SOC": { "city": "Sukarata(Solo)-Java Island", "country": "ID", "state": "Central-Java" }, "SUB": { "city": "Surabaya", "country": "ID", "state": "East-Java" }, "SRG": { "city": "Semarang-Java Island", "country": "ID", "state": "Central-Java" }, "SUP": { "city": "Sumenep-Madura Island", "country": "ID", "state": "East-Java" }, "NTI": { "city": "Bintuni-Papua Island", "country": "ID", "state": "Papua" }, "RSK": { "city": "Ransiki-Papua Island", "country": "ID", "state": "Papua" }, "KEQ": { "city": "Kebar-Papua Island", "country": "ID", "state": "Papua" }, "FKQ": { "city": "Fakfak-Papua Island", "country": "ID", "state": "" }, "INX": { "city": "Inanwatan Airport-Papua Island", "country": "ID", "state": "Papua" }, "KNG": { "city": "Kaimana-Papua Island", "country": "ID", "state": "" }, "RDE": { "city": "Merdei-Papua Island", "country": "ID", "state": "Papua" }, "BXB": { "city": "Babo-Papua Island", "country": "ID", "state": "West-Papua" }, "MKW": { "city": "Manokwari-Papua Island", "country": "ID", "state": "West-Papua" }, "SOQ": { "city": "Sorong-Papua Island", "country": "ID", "state": "West-Papua" }, "TXM": { "city": "Atinjoe-Papua Island", "country": "ID", "state": "Papua" }, "WSR": { "city": "Wasior-Papua Island", "country": "ID", "state": "" }, "BJW": { "city": "Bajawa", "country": "ID", "state": "East-Nusa-Tenggara" }, "MOF": { "city": "Maumere-Flores Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "ENE": { "city": "Ende-Flores Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "RTG": { "city": "Satar Tacik-Flores Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "ARD": { "city": "Alor Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "LBJ": { "city": "Labuan Bajo-Flores Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "KOE": { "city": "Kupang-Timor Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "BUW": { "city": "Bau Bau-Butung Island", "country": "ID", "state": "Southeast-Sulawesi" }, "MJU": { "city": "Mamuju-Celebes Island", "country": "ID", "state": "West-Sulawesi" }, "MXB": { "city": "Masamba-Celebes Island", "country": "ID", "state": "South-Sulawesi" }, "SQR": { "city": "Soroako-Celebes Island", "country": "ID", "state": "South-Sulawesi" }, "TTR": { "city": "Tanah Toraja-Celebes Island", "country": "ID", "state": "South-Sulawesi" }, "KDI": { "city": "Kendari-Celebes Island", "country": "ID", "state": "Southeast-Sulawesi" }, "BTU": { "city": "Bintulu", "country": "MY", "state": "Sarawak" }, "BLG": { "city": "Belaga", "country": "MY", "state": "Sarawak" }, "LSM": { "city": "Long Semado", "country": "MY", "state": "Sarawak" }, "LGL": { "city": "Long Datih", "country": "MY", "state": "Sarawak" }, "KCH": { "city": "Kuching", "country": "MY", "state": "Sarawak" }, "ODN": { "city": "Long Seridan", "country": "MY", "state": "Sarawak" }, "LMN": { "city": "Limbang", "country": "MY", "state": "Sarawak" }, "MKM": { "city": "Mukah", "country": "MY", "state": "Sarawak" }, "LKH": { "city": "Long Akah", "country": "MY", "state": "Sarawak" }, "MUR": { "city": "Marudi", "country": "MY", "state": "Sarawak" }, "BSE": { "city": "Sematan", "country": "MY", "state": "Sarawak" }, "KPI": { "city": "Kapit", "country": "MY", "state": "Sarawak" }, "BKM": { "city": "Bakalalan", "country": "MY", "state": "Sarawak" }, "MYY": { "city": "Miri", "country": "MY", "state": "Sarawak" }, "SBW": { "city": "Sibu", "country": "MY", "state": "Sarawak" }, "TGC": { "city": "Tanjung Manis", "country": "MY", "state": "Sarawak" }, "LSU": { "city": "Long Sukang", "country": "MY", "state": "Sarawak" }, "LWY": { "city": "Lawas", "country": "MY", "state": "Sarawak" }, "SGG": { "city": "Simanggang", "country": "MY", "state": "Sarawak" }, "BBN": { "city": "Bario", "country": "MY", "state": "Sarawak" }, "SMM": { "city": "Semporna", "country": "MY", "state": "Sabah" }, "LDU": { "city": "Lahad Datu", "country": "MY", "state": "Sabah" }, "TEL": { "city": "Telupid", "country": "MY", "state": "Sabah" }, "KGU": { "city": "Keningau", "country": "MY", "state": "Sabah" }, "SXS": { "city": "Sahabat", "country": "MY", "state": "Sabah" }, "BKI": { "city": "Kota Kinabalu", "country": "MY", "state": "Sabah" }, "LBU": { "city": "Labuan", "country": "MY", "state": "Labuan" }, "TMG": { "city": "Tomanggong", "country": "MY", "state": "Sabah" }, "GSA": { "city": "Long Miau", "country": "MY", "state": "Sabah" }, "SPE": { "city": "Sepulot", "country": "MY", "state": "Sabah" }, "PAY": { "city": "Pamol", "country": "MY", "state": "Sabah" }, "RNU": { "city": "Ranau", "country": "MY", "state": "Sabah" }, "SDK": { "city": "Sandakan", "country": "MY", "state": "Sabah" }, "KUD": { "city": "Kudat", "country": "MY", "state": "Sabah" }, "TWU": { "city": "Tawau", "country": "MY", "state": "Sabah" }, "MZV": { "city": "Mulu", "country": "MY", "state": "Sarawak" }, "BWN": { "city": "Bandar Seri Begawan", "country": "BN", "state": "" }, "PKU": { "city": "Pekanbaru-Sumatra Island", "country": "ID", "state": "Riau" }, "DUM": { "city": "Dumai-Sumatra Island", "country": "ID", "state": "Riau" }, "RKO": { "city": "Sipora Island", "country": "ID", "state": "West-Sumatra" }, "SEQ": { "city": "Bengkalis-Sumatra Island", "country": "ID", "state": "Riau" }, "TJB": { "city": "Karinmunbesar Island", "country": "ID", "state": "Riau-Islands" }, "BDO": { "city": "Bandung-Java Island", "country": "ID", "state": "West-Java" }, "CBN": { "city": "Cirebon-Java Island", "country": "ID", "state": "West-Java" }, "TSY": { "city": "Tasikmalaya-Java Island", "country": "ID", "state": "West-Java" }, "TKG": { "city": "Bandar Lampung-Sumatra Island", "country": "ID", "state": "" }, "BTH": { "city": "Batam Island", "country": "ID", "state": "" }, "PPR": { "city": "Pasir Pengarayan-Sumatra Island", "country": "ID", "state": "Riau" }, "TNJ": { "city": "Tanjung Pinang-Bintan Island", "country": "ID", "state": "Riau-Islands" }, "SIQ": { "city": "Pasirkuning-Singkep Island", "country": "ID", "state": "Riau-Islands" }, "PDG": { "city": "Ketaping/Padang-Sumatra Island", "country": "ID", "state": "West-Sumatra" }, "HLP": { "city": "Jakarta", "country": "ID", "state": "Jakarta" }, "CXP": { "city": "Cilacap-Java Island", "country": "ID", "state": "" }, "PCB": { "city": "Jakarta", "country": "ID", "state": "" }, "PPJ": { "city": "Tjipara-Java Island", "country": "ID", "state": "Jakarta" }, "CGK": { "city": "Jakarta", "country": "ID", "state": "" }, "GNS": { "city": "Gunung Sitoli-Nias Island", "country": "ID", "state": "North-Sumatra" }, "AEG": { "city": "Padang Sidempuan-Sumatra Island", "country": "ID", "state": "" }, "MES": { "city": "Medan", "country": "ID", "state": "" }, "KNO": { "city": "Medan-Sumatra Island", "country": "ID", "state": "" }, "FLZ": { "city": "Sibolga-Sumatra Island", "country": "ID", "state": "North-Sumatra" }, "TJQ": { "city": "Tanjung Pandan-Belitung Island", "country": "ID", "state": "Bangka–Belitung-Islands" }, "NPO": { "city": "Nanga Pinoh-Borneo Island", "country": "ID", "state": "West-Kalimantan" }, "KTG": { "city": "Ketapang-Borneo Island", "country": "ID", "state": "" }, "MWK": { "city": "Matak Island", "country": "ID", "state": "Riau" }, "NTX": { "city": "Ranai-Natuna Besar Island", "country": "ID", "state": "Riau-Islands" }, "PNK": { "city": "Pontianak-Borneo Island", "country": "ID", "state": "West-Kalimantan" }, "PSU": { "city": "Putussibau-Borneo Island", "country": "ID", "state": "West-Kalimantan" }, "SQG": { "city": "Sintang-Borneo Island", "country": "ID", "state": "" }, "DJB": { "city": "Jambi-Sumatra Island", "country": "ID", "state": "" }, "PGK": { "city": "Pangkal Pinang-Palaubangka Island", "country": "ID", "state": "South-Sumatra" }, "BKS": { "city": "Bengkulu-Sumatra Island", "country": "ID", "state": "" }, "PLM": { "city": "Palembang-Sumatra Island", "country": "ID", "state": "South-Sumatra" }, "PDO": { "city": "Talang Gudang-Sumatra Island", "country": "ID", "state": "South-Sumatra" }, "RGT": { "city": "Rengat-Sumatra Island", "country": "ID", "state": "Riau-Islands" }, "MPC": { "city": "Muko Muko-Sumatra Island", "country": "ID", "state": "" }, "KLQ": { "city": "Keluang-Sumatra Island", "country": "ID", "state": "" }, "TPK": { "city": "Tapak Tuan-Sumatra Island", "country": "ID", "state": "Aceh" }, "MEQ": { "city": "Peureumeue-Sumatra Island", "country": "ID", "state": "Aceh" }, "LSX": { "city": "Lhok Sukon-Sumatra Island", "country": "ID", "state": "Aceh" }, "LSW": { "city": "Lhok Seumawe-Sumatra Island", "country": "ID", "state": "Aceh" }, "SBG": { "city": "Sabang-We Island", "country": "ID", "state": "Aceh" }, "BTJ": { "city": "Banda Aceh-Sumatra Island", "country": "ID", "state": "Aceh" }, "SXT": { "city": "Taman Negara", "country": "MY", "state": "Pahang" }, "MEP": { "city": "Mersing", "country": "MY", "state": "Johor" }, "SWY": { "city": "Sitiawan", "country": "MY", "state": "Perak" }, "TPG": { "city": "Taiping", "country": "MY", "state": "Perak" }, "TOD": { "city": "Pulau Tioman", "country": "MY", "state": "Johor" }, "AOR": { "city": "Alor Satar", "country": "MY", "state": "" }, "BWH": { "city": "Butterworth", "country": "MY", "state": "" }, "KBR": { "city": "Kota Baharu", "country": "MY", "state": "Kelantan" }, "KUA": { "city": "Kuantan", "country": "MY", "state": "Pahang" }, "KTE": { "city": "Kerteh", "country": "MY", "state": "Terengganu" }, "IPH": { "city": "Ipoh", "country": "MY", "state": "" }, "JHB": { "city": "Senai", "country": "MY", "state": "Johor" }, "KUL": { "city": "Kuala Lumpur", "country": "MY", "state": "" }, "LGK": { "city": "Langkawi", "country": "MY", "state": "Kedah" }, "MKZ": { "city": "Malacca", "country": "MY", "state": "" }, "TGG": { "city": "Kuala Terengganu", "country": "MY", "state": "Terengganu" }, "PEN": { "city": "Penang", "country": "MY", "state": "" }, "PKG": { "city": "Pangkor Island", "country": "MY", "state": "" }, "RDN": { "city": "Redang", "country": "MY", "state": "" }, "SZB": { "city": "Subang", "country": "MY", "state": "" }, "DTR": { "city": "Decatur", "country": "US", "state": "Washington" }, "AUT": { "city": "Atauro", "country": "TL", "state": "Dili" }, "UAI": { "city": "Suai", "country": "TL", "state": "Cova-Lima" }, "DIL": { "city": "Dili", "country": "TL", "state": "Dili" }, "BCH": { "city": "Baucau", "country": "TL", "state": "Baucau" }, "MPT": { "city": "Maliana", "country": "TL", "state": "Bobonaro" }, "OEC": { "city": "Oecussi-Ambeno", "country": "TL", "state": "Oecusse" }, "VIQ": { "city": "Viqueque", "country": "TL", "state": "Viqueque" }, "ABU": { "city": "Atambua-Timor Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "LKA": { "city": "Larantuka-Flores Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "SAU": { "city": "Sawu-Sawu Island", "country": "ID", "state": "East-Nusa-Tenggara" }, "SGQ": { "city": "Sanggata-Timor Island", "country": "ID", "state": "East-Kalimantan" }, "LBW": { "city": "Long Bawan-Borneo Island", "country": "ID", "state": "North-Kalimantan" }, "BXT": { "city": "Bontang-Borneo Island", "country": "ID", "state": "East-Kalimantan" }, "NNX": { "city": "Nunukan-Nunukan Island", "country": "ID", "state": "East-Kalimantan" }, "TNB": { "city": "Tanah Grogot-Borneo Island", "country": "ID", "state": "East-Kalimantan" }, "LPU": { "city": "Long Apung-Borneo Island", "country": "ID", "state": "East-Kalimantan" }, "QPG": { "city": "", "country": "SG", "state": "" }, "TGA": { "city": "", "country": "SG", "state": "" }, "XSP": { "city": "Seletar", "country": "SG", "state": "" }, "SIN": { "city": "Singapore", "country": "SG", "state": "North-East" }, "SKL": { "city": "Broadford", "country": "GB", "state": "Scotland" }, "ALH": { "city": "Albany", "country": "AU", "state": "Western-Australia" }, "ABG": { "city": "", "country": "AU", "state": "Queensland" }, "AWN": { "city": "", "country": "AU", "state": "South-Australia" }, "AUD": { "city": "", "country": "AU", "state": "Queensland" }, "MRP": { "city": "", "country": "AU", "state": "South-Australia" }, "AXL": { "city": "", "country": "AU", "state": "Northern-Territory" }, "AXC": { "city": "", "country": "AU", "state": "Queensland" }, "ADO": { "city": "", "country": "AU", "state": "South-Australia" }, "AMX": { "city": "", "country": "AU", "state": "Northern-Territory" }, "AMT": { "city": "", "country": "AU", "state": "South-Australia" }, "AYL": { "city": "", "country": "AU", "state": "Northern-Territory" }, "ABH": { "city": "", "country": "AU", "state": "Queensland" }, "ARY": { "city": "", "country": "AU", "state": "Victoria" }, "GYL": { "city": "", "country": "AU", "state": "Western-Australia" }, "ARM": { "city": "Armidale", "country": "AU", "state": "New-South-Wales" }, "AAB": { "city": "", "country": "AU", "state": "Queensland" }, "AUU": { "city": "", "country": "AU", "state": "Queensland" }, "AWP": { "city": "", "country": "AU", "state": "Northern-Territory" }, "AVG": { "city": "", "country": "AU", "state": "Northern-Territory" }, "AYQ": { "city": "Ayers Rock", "country": "AU", "state": "Northern-Territory" }, "AYR": { "city": "", "country": "AU", "state": "Queensland" }, "ACF": { "city": "Brisbane", "country": "AU", "state": "Queensland" }, "ABM": { "city": "", "country": "AU", "state": "Queensland" }, "BCI": { "city": "Barcaldine", "country": "AU", "state": "Queensland" }, "ASP": { "city": "Alice Springs", "country": "AU", "state": "Northern-Territory" }, "BDD": { "city": "", "country": "AU", "state": "Queensland" }, "BKP": { "city": "", "country": "AU", "state": "Queensland" }, "BBE": { "city": "Big Bell", "country": "AU", "state": "Western-Australia" }, "BNE": { "city": "Brisbane", "country": "AU", "state": "Queensland" }, "OOL": { "city": "Gold Coast", "country": "AU", "state": "Queensland" }, "BKQ": { "city": "Blackall", "country": "AU", "state": "Queensland" }, "CNS": { "city": "Cairns", "country": "AU", "state": "Queensland" }, "CTL": { "city": "Charleville", "country": "AU", "state": "Queensland" }, "BDW": { "city": "", "country": "AU", "state": "Western-Australia" }, "BXG": { "city": "", "country": "AU", "state": "Victoria" }, "BVI": { "city": "", "country": "AU", "state": "Queensland" }, "BTX": { "city": "", "country": "AU", "state": "Queensland" }, "BQW": { "city": "", "country": "AU", "state": "Western-Australia" }, "BHQ": { "city": "Broken Hill", "country": "AU", "state": "New-South-Wales" }, "HTI": { "city": "Hamilton Island", "country": "AU", "state": "Queensland" }, "BEU": { "city": "", "country": "AU", "state": "Queensland" }, "BIW": { "city": "", "country": "AU", "state": "Western-Australia" }, "BZP": { "city": "Lakefield National Park", "country": "AU", "state": "Queensland" }, "BRK": { "city": "", "country": "AU", "state": "New-South-Wales" }, "BUC": { "city": "", "country": "AU", "state": "Queensland" }, "BLN": { "city": "", "country": "AU", "state": "Victoria" }, "LCN": { "city": "", "country": "AU", "state": "South-Australia" }, "BLS": { "city": "", "country": "AU", "state": "Queensland" }, "BQB": { "city": "", "country": "AU", "state": "Western-Australia" }, "ISA": { "city": "Mount Isa", "country": "AU", "state": "Queensland" }, "MCY": { "city": "Maroochydore", "country": "AU", "state": "Queensland" }, "MKY": { "city": "Mackay", "country": "AU", "state": "Queensland" }, "BNK": { "city": "Ballina", "country": "AU", "state": "New-South-Wales" }, "BSJ": { "city": "", "country": "AU", "state": "Victoria" }, "GIC": { "city": "", "country": "AU", "state": "Queensland" }, "OKY": { "city": "", "country": "AU", "state": "Queensland" }, "BQL": { "city": "", "country": "AU", "state": "Queensland" }, "BMP": { "city": "", "country": "AU", "state": "Queensland" }, "PPP": { "city": "Proserpine", "country": "AU", "state": "Queensland" }, "ROK": { "city": "Rockhampton", "country": "AU", "state": "Queensland" }, "BOX": { "city": "", "country": "AU", "state": "Northern-Territory" }, "BME": { "city": "Broome", "country": "AU", "state": "Western-Australia" }, "BZD": { "city": "", "country": "AU", "state": "New-South-Wales" }, "BTD": { "city": "", "country": "AU", "state": "Northern-Territory" }, "BWQ": { "city": "", "country": "AU", "state": "New-South-Wales" }, "BHS": { "city": "Bathurst", "country": "AU", "state": "New-South-Wales" }, "BRT": { "city": "", "country": "AU", "state": "Northern-Territory" }, "TSV": { "city": "Townsville", "country": "AU", "state": "Queensland" }, "BLT": { "city": "", "country": "AU", "state": "Queensland" }, "BDB": { "city": "Bundaberg", "country": "AU", "state": "Queensland" }, "BUY": { "city": "", "country": "AU", "state": "Western-Australia" }, "BIP": { "city": "", "country": "AU", "state": "Queensland" }, "ZBO": { "city": "", "country": "AU", "state": "Queensland" }, "WEI": { "city": "Weipa", "country": "AU", "state": "Queensland" }, "WTB": { "city": "Wellcamp", "country": "AU", "state": "Queensland" }, "BWB": { "city": "", "country": "AU", "state": "Western-Australia" }, "BVZ": { "city": "", "country": "AU", "state": "Western-Australia" }, "CGV": { "city": "", "country": "AU", "state": "Western-Australia" }, "CLH": { "city": "", "country": "AU", "state": "New-South-Wales" }, "CVQ": { "city": "", "country": "AU", "state": "Western-Australia" }, "CSI": { "city": "", "country": "AU", "state": "New-South-Wales" }, "CAZ": { "city": "", "country": "AU", "state": "New-South-Wales" }, "COJ": { "city": "", "country": "AU", "state": "New-South-Wales" }, "CBY": { "city": "Canobie", "country": "AU", "state": "Queensland" }, "CBI": { "city": "", "country": "AU", "state": "Tasmania" }, "CPD": { "city": "", "country": "AU", "state": "South-Australia" }, "CRB": { "city": "", "country": "AU", "state": "New-South-Wales" }, "CCL": { "city": "", "country": "AU", "state": "Queensland" }, "CNC": { "city": "", "country": "AU", "state": "Queensland" }, "CNJ": { "city": "Cloncurry", "country": "AU", "state": "Queensland" }, "CBX": { "city": "", "country": "AU", "state": "New-South-Wales" }, "CUD": { "city": "", "country": "AU", "state": "Queensland" }, "CED": { "city": "", "country": "AU", "state": "South-Australia" }, "CVC": { "city": "", "country": "AU", "state": "South-Australia" }, "CFI": { "city": "", "country": "AU", "state": "Northern-Territory" }, "LLG": { "city": "", "country": "AU", "state": "Queensland" }, "CKW": { "city": "Christmas Creek mine", "country": "AU", "state": "Western Australia" }, "CXT": { "city": "", "country": "AU", "state": "Queensland" }, "DCN": { "city": "", "country": "AU", "state": "Western-Australia" }, "CKI": { "city": "", "country": "AU", "state": "Northern-Territory" }, "CTN": { "city": "", "country": "AU", "state": "Queensland" }, "CMQ": { "city": "", "country": "AU", "state": "Queensland" }, "CMA": { "city": "", "country": "AU", "state": "Queensland" }, "CML": { "city": "", "country": "AU", "state": "Queensland" }, "NIF": { "city": "", "country": "AU", "state": "Western-Australia" }, "CES": { "city": "", "country": "AU", "state": "New-South-Wales" }, "CNB": { "city": "", "country": "AU", "state": "New-South-Wales" }, "ODL": { "city": "Cordillo Downs", "country": "AU", "state": "South-Australia" }, "CUQ": { "city": "", "country": "AU", "state": "Queensland" }, "OOM": { "city": "Cooma", "country": "AU", "state": "New-South-Wales" }, "CDA": { "city": "", "country": "AU", "state": "Northern-Territory" }, "CWW": { "city": "", "country": "AU", "state": "New-South-Wales" }, "CYG": { "city": "", "country": "AU", "state": "Victoria" }, "CDQ": { "city": "", "country": "AU", "state": "Queensland" }, "KCE": { "city": "", "country": "AU", "state": "Queensland" }, "CMD": { "city": "", "country": "AU", "state": "New-South-Wales" }, "CUG": { "city": "", "country": "AU", "state": "New-South-Wales" }, "CUY": { "city": "", "country": "AU", "state": "Western-Australia" }, "CWR": { "city": "", "country": "AU", "state": "South-Australia" }, "CCW": { "city": "", "country": "AU", "state": "South-Australia" }, "CWT": { "city": "", "country": "AU", "state": "New-South-Wales" }, "DJR": { "city": "", "country": "AU", "state": "Queensland" }, "DBY": { "city": "", "country": "AU", "state": "Queensland" }, "DRN": { "city": "", "country": "AU", "state": "Queensland" }, "DNB": { "city": "", "country": "AU", "state": "Queensland" }, "DRB": { "city": "", "country": "AU", "state": "Western-Australia" }, "DFP": { "city": "Drumduff", "country": "AU", "state": "Queensland" }, "DGD": { "city": "", "country": "AU", "state": "Western-Australia" }, "DXD": { "city": "New Dixie", "country": "AU", "state": "Queensland" }, "DLK": { "city": "Dulkaninna", "country": "AU", "state": "South-Australia" }, "DDN": { "city": "", "country": "AU", "state": "Queensland" }, "DLV": { "city": "", "country": "AU", "state": "Northern-Territory" }, "DYW": { "city": "Daly Waters", "country": "AU", "state": "Northern-Territory" }, "DMD": { "city": "", "country": "AU", "state": "Queensland" }, "DVR": { "city": "", "country": "AU", "state": "Northern-Territory" }, "NLF": { "city": "Darnley Island", "country": "AU", "state": "Queensland" }, "DRD": { "city": "", "country": "AU", "state": "Queensland" }, "DVP": { "city": "", "country": "AU", "state": "Queensland" }, "DPO": { "city": "Devonport", "country": "AU", "state": "Tasmania" }, "DOX": { "city": "", "country": "AU", "state": "Western-Australia" }, "DRY": { "city": "", "country": "AU", "state": "Western-Australia" }, "DHD": { "city": "", "country": "AU", "state": "Queensland" }, "DRR": { "city": "", "country": "AU", "state": "Queensland" }, "DKV": { "city": "", "country": "AU", "state": "Northern-Territory" }, "DYA": { "city": "", "country": "AU", "state": "Queensland" }, "ECH": { "city": "", "country": "AU", "state": "Victoria" }, "EUC": { "city": "", "country": "AU", "state": "Western-Australia" }, "ETD": { "city": "Etadunna", "country": "AU", "state": "South-Australia" }, "ENB": { "city": "Eneabba", "country": "AU", "state": "Western-Australia" }, "EIH": { "city": "Einasleigh", "country": "AU", "state": "Queensland" }, "ELC": { "city": "Elcho Island", "country": "AU", "state": "Northern-Territory" }, "EMD": { "city": "Emerald", "country": "AU", "state": "Queensland" }, "ERB": { "city": "", "country": "AU", "state": "South-Australia" }, "EPR": { "city": "", "country": "AU", "state": "Western-Australia" }, "EVD": { "city": "Eva Downs", "country": "AU", "state": "Northern-Territory" }, "EVH": { "city": "", "country": "AU", "state": "New-South-Wales" }, "EXM": { "city": "", "country": "AU", "state": "Western-Australia" }, "KFE": { "city": "Cloudbreak Village", "country": "AU", "state": "Central-Sulawesi" }, "FLY": { "city": "", "country": "AU", "state": "New-South-Wales" }, "FLS": { "city": "", "country": "AU", "state": "Tasmania" }, "FVL": { "city": "", "country": "AU", "state": "Western-Australia" }, "FIK": { "city": "Finke", "country": "AU", "state": "Northern-Territory" }, "FOS": { "city": "", "country": "AU", "state": "Western-Australia" }, "FOT": { "city": "", "country": "AU", "state": "New-South-Wales" }, "FIZ": { "city": "", "country": "AU", "state": "Western-Australia" }, "GAH": { "city": "", "country": "AU", "state": "Queensland" }, "GBL": { "city": "", "country": "AU", "state": "Northern-Territory" }, "GUH": { "city": "", "country": "AU", "state": "New-South-Wales" }, "GOO": { "city": "", "country": "AU", "state": "Queensland" }, "GDD": { "city": "Gordon Downs", "country": "AU", "state": "Western-Australia" }, "GGD": { "city": "", "country": "AU", "state": "Queensland" }, "GTS": { "city": "", "country": "AU", "state": "South-Australia" }, "GET": { "city": "", "country": "AU", "state": "Western-Australia" }, "GFN": { "city": "", "country": "AU", "state": "New-South-Wales" }, "GBW": { "city": "Ginbata", "country": "AU", "state": "Western-Australia" }, "GBV": { "city": "", "country": "AU", "state": "Western-Australia" }, "GLT": { "city": "Gladstone", "country": "AU", "state": "Queensland" }, "GUL": { "city": "", "country": "AU", "state": "New-South-Wales" }, "GLG": { "city": "", "country": "AU", "state": "Queensland" }, "GEX": { "city": "", "country": "AU", "state": "Victoria" }, "GLI": { "city": "", "country": "AU", "state": "New-South-Wales" }, "GLM": { "city": "", "country": "AU", "state": "Queensland" }, "GVP": { "city": "", "country": "AU", "state": "Queensland" }, "GPN": { "city": "", "country": "AU", "state": "Northern-Territory" }, "GTE": { "city": "Groote Eylandt", "country": "AU", "state": "Northern-Territory" }, "GFF": { "city": "Griffith", "country": "AU", "state": "New-South-Wales" }, "GTT": { "city": "", "country": "AU", "state": "Queensland" }, "GEE": { "city": "", "country": "AU", "state": "Tasmania" }, "GYP": { "city": "", "country": "AU", "state": "Queensland" }, "HWK": { "city": "Hawker", "country": "AU", "state": "South-Australia" }, "HXX": { "city": "", "country": "AU", "state": "New-South-Wales" }, "HVB": { "city": "Hervey Bay", "country": "AU", "state": "Queensland" }, "HUB": { "city": "", "country": "AU", "state": "Northern-Territory" }, "HIP": { "city": "", "country": "AU", "state": "Queensland" }, "HID": { "city": "Horn Island", "country": "AU", "state": "Queensland" }, "HCQ": { "city": "", "country": "AU", "state": "Western-Australia" }, "HMG": { "city": "", "country": "AU", "state": "Northern-Territory" }, "HLT": { "city": "", "country": "AU", "state": "Victoria" }, "HOK": { "city": "", "country": "AU", "state": "Northern-Territory" }, "MHU": { "city": "Mount Hotham", "country": "AU", "state": "Victoria" }, "HTU": { "city": "", "country": "AU", "state": "Victoria" }, "HSM": { "city": "", "country": "AU", "state": "Victoria" }, "HGD": { "city": "", "country": "AU", "state": "Queensland" }, "IDK": { "city": "", "country": "AU", "state": "South-Australia" }, "IFL": { "city": "", "country": "AU", "state": "Queensland" }, "IFF": { "city": "", "country": "AU", "state": "Queensland" }, "IGH": { "city": "", "country": "AU", "state": "Queensland" }, "IKP": { "city": "", "country": "AU", "state": "Queensland" }, "INJ": { "city": "", "country": "AU", "state": "Queensland" }, "INM": { "city": "", "country": "AU", "state": "South-Australia" }, "IVW": { "city": "Inverway", "country": "AU", "state": "Northern-Territory" }, "ISI": { "city": "", "country": "AU", "state": "Queensland" }, "IVR": { "city": "", "country": "AU", "state": "New-South-Wales" }, "JAB": { "city": "", "country": "AU", "state": "Northern-Territory" }, "JUN": { "city": "", "country": "AU", "state": "Queensland" }, "QJD": { "city": "", "country": "AU", "state": "New-South-Wales" }, "JCK": { "city": "", "country": "AU", "state": "Queensland" }, "JUR": { "city": "", "country": "AU", "state": "Western-Australia" }, "UBU": { "city": "", "country": "AU", "state": "Western-Australia" }, "KAX": { "city": "", "country": "AU", "state": "Western-Australia" }, "KBY": { "city": "", "country": "AU", "state": "South-Australia" }, "KCS": { "city": "", "country": "AU", "state": "Northern-Territory" }, "KRA": { "city": "", "country": "AU", "state": "Victoria" }, "KNS": { "city": "", "country": "AU", "state": "Tasmania" }, "KBB": { "city": "Kirkimbie", "country": "AU", "state": "Northern-Territory" }, "KFG": { "city": "", "country": "AU", "state": "Northern-Territory" }, "KKP": { "city": "Koolburra", "country": "AU", "state": "Queensland" }, "KRB": { "city": "", "country": "AU", "state": "Queensland" }, "KML": { "city": "", "country": "AU", "state": "Queensland" }, "KPS": { "city": "", "country": "AU", "state": "New-South-Wales" }, "KNI": { "city": "", "country": "AU", "state": "Western-Australia" }, "KWM": { "city": "Kowanyama", "country": "AU", "state": "Queensland" }, "KGY": { "city": "", "country": "AU", "state": "Queensland" }, "KGC": { "city": "", "country": "AU", "state": "South-Australia" }, "KUG": { "city": "", "country": "AU", "state": "Queensland" }, "LWH": { "city": "", "country": "AU", "state": "Queensland" }, "LGH": { "city": "", "country": "AU", "state": "South-Australia" }, "LNO": { "city": "Leonora", "country": "AU", "state": "Western-Australia" }, "LEL": { "city": "", "country": "AU", "state": "Northern-Territory" }, "LDH": { "city": "Lord Howe Island", "country": "AU", "state": "New-South-Wales" }, "IRG": { "city": "", "country": "AU", "state": "Queensland" }, "LTP": { "city": "Lyndhurst", "country": "AU", "state": "Queensland" }, "LDC": { "city": "Lindeman Island", "country": "AU", "state": "Queensland" }, "LSY": { "city": "Lismore", "country": "AU", "state": "New-South-Wales" }, "LOC": { "city": "Lock", "country": "AU", "state": "South-Australia" }, "LOA": { "city": "", "country": "AU", "state": "Queensland" }, "LTV": { "city": "Lotus Vale", "country": "AU", "state": "Queensland" }, "LUU": { "city": "", "country": "AU", "state": "Queensland" }, "LHG": { "city": "", "country": "AU", "state": "New-South-Wales" }, "LRE": { "city": "Longreach", "country": "AU", "state": "Queensland" }, "LUT": { "city": "", "country": "AU", "state": "Queensland" }, "LER": { "city": "", "country": "AU", "state": "Western-Australia" }, "LVO": { "city": "", "country": "AU", "state": "Western-Australia" }, "TGN": { "city": "", "country": "AU", "state": "Victoria" }, "LZR": { "city": "", "country": "AU", "state": "Queensland" }, "UBB": { "city": "Mabuiag Island", "country": "AU", "state": "Queensland" }, "AVV": { "city": "Melbourne", "country": "AU", "state": "Victoria" }, "ABX": { "city": "Albury", "country": "AU", "state": "New-South-Wales" }, "MRG": { "city": "", "country": "AU", "state": "Queensland" }, "MBB": { "city": "", "country": "AU", "state": "Western-Australia" }, "XMC": { "city": "", "country": "AU", "state": "Victoria" }, "MFP": { "city": "", "country": "AU", "state": "Northern-Territory" }, "MLR": { "city": "", "country": "AU", "state": "South-Australia" }, "DGE": { "city": "Mudgee", "country": "AU", "state": "New-South-Wales" }, "MQA": { "city": "Mandora", "country": "AU", "state": "Western-Australia" }, "MKR": { "city": "", "country": "AU", "state": "Western-Australia" }, "MEB": { "city": "", "country": "AU", "state": "Victoria" }, "MIM": { "city": "Merimbula", "country": "AU", "state": "New-South-Wales" }, "SXE": { "city": "", "country": "AU", "state": "Victoria" }, "MGT": { "city": "Milingimbi Island", "country": "AU", "state": "Northern-Territory" }, "MNG": { "city": "Maningrida", "country": "AU", "state": "Northern-Territory" }, "GSN": { "city": "Mount Gunson", "country": "AU", "state": "South-Australia" }, "MGV": { "city": "", "country": "AU", "state": "Western-Australia" }, "MQZ": { "city": "", "country": "AU", "state": "Western-Australia" }, "HBA": { "city": "Hobart", "country": "AU", "state": "Tasmania" }, "MHO": { "city": "", "country": "AU", "state": "Western-Australia" }, "MCV": { "city": "McArthur River Mine", "country": "AU", "state": "Northern-Territory" }, "MQL": { "city": "Mildura", "country": "AU", "state": "Victoria" }, "XML": { "city": "", "country": "AU", "state": "South-Australia" }, "MIH": { "city": "Mitchell Plateau", "country": "AU", "state": "Western-Australia" }, "MTQ": { "city": "", "country": "AU", "state": "Queensland" }, "MJP": { "city": "", "country": "AU", "state": "Western-Australia" }, "LST": { "city": "Launceston", "country": "AU", "state": "Tasmania" }, "MBW": { "city": "Melbourne", "country": "AU", "state": "Victoria" }, "MEL": { "city": "Melbourne", "country": "AU", "state": "Victoria" }, "MMM": { "city": "", "country": "AU", "state": "Queensland" }, "MTL": { "city": "", "country": "AU", "state": "New-South-Wales" }, "WME": { "city": "", "country": "AU", "state": "Western-Australia" }, "ONR": { "city": "", "country": "AU", "state": "Queensland" }, "OXY": { "city": "", "country": "AU", "state": "Queensland" }, "MMG": { "city": "", "country": "AU", "state": "Western-Australia" }, "OOR": { "city": "", "country": "AU", "state": "Queensland" }, "MRZ": { "city": "Moree", "country": "AU", "state": "New-South-Wales" }, "MET": { "city": "Moreton", "country": "AU", "state": "Queensland" }, "MIN": { "city": "", "country": "AU", "state": "South-Australia" }, "MQE": { "city": "Marqua", "country": "AU", "state": "Northern-Territory" }, "MOV": { "city": "Moranbah", "country": "AU", "state": "Queensland" }, "RRE": { "city": "", "country": "AU", "state": "South-Australia" }, "MWB": { "city": "", "country": "AU", "state": "Western-Australia" }, "MYA": { "city": "Moruya", "country": "AU", "state": "New-South-Wales" }, "MTD": { "city": "", "country": "AU", "state": "Northern-Territory" }, "UTB": { "city": "", "country": "AU", "state": "Queensland" }, "MGB": { "city": "", "country": "AU", "state": "South-Australia" }, "ONG": { "city": "", "country": "AU", "state": "Queensland" }, "MNQ": { "city": "", "country": "AU", "state": "Queensland" }, "MUQ": { "city": "Muccan Station", "country": "AU", "state": "Western-Australia" }, "MNE": { "city": "Mungeranie", "country": "AU", "state": "South-Australia" }, "MYI": { "city": "Murray Island", "country": "AU", "state": "Queensland" }, "MVK": { "city": "Mulka", "country": "AU", "state": "South-Australia" }, "MXU": { "city": "", "country": "AU", "state": "Western-Australia" }, "MXD": { "city": "", "country": "AU", "state": "Queensland" }, "MBH": { "city": "", "country": "AU", "state": "Queensland" }, "RTY": { "city": "", "country": "AU", "state": "South-Australia" }, "NMR": { "city": "", "country": "AU", "state": "Queensland" }, "NRA": { "city": "Narrandera", "country": "AU", "state": "New-South-Wales" }, "NAA": { "city": "Narrabri", "country": "AU", "state": "New-South-Wales" }, "RPM": { "city": "", "country": "AU", "state": "Northern-Territory" }, "NBH": { "city": "Nambucca Heads", "country": "AU", "state": "New-South-Wales" }, "NLS": { "city": "", "country": "AU", "state": "Western-Australia" }, "NAC": { "city": "", "country": "AU", "state": "South-Australia" }, "QRM": { "city": "", "country": "AU", "state": "New-South-Wales" }, "RVT": { "city": "", "country": "AU", "state": "Western-Australia" }, "NSV": { "city": "", "country": "AU", "state": "Queensland" }, "NSM": { "city": "", "country": "AU", "state": "Western-Australia" }, "NTN": { "city": "", "country": "AU", "state": "Queensland" }, "NUR": { "city": "", "country": "AU", "state": "South-Australia" }, "NLL": { "city": "", "country": "AU", "state": "Western-Australia" }, "NUB": { "city": "", "country": "AU", "state": "Northern-Territory" }, "ZNE": { "city": "Newman", "country": "AU", "state": "Western-Australia" }, "NYN": { "city": "", "country": "AU", "state": "New-South-Wales" }, "OPI": { "city": "", "country": "AU", "state": "Northern-Territory" }, "XCO": { "city": "", "country": "AU", "state": "Victoria" }, "OLP": { "city": "Olympic Dam", "country": "AU", "state": "South-Australia" }, "ONS": { "city": "", "country": "AU", "state": "Western-Australia" }, "ODD": { "city": "", "country": "AU", "state": "South-Australia" }, "MOO": { "city": "", "country": "AU", "state": "South-Australia" }, "RBS": { "city": "", "country": "AU", "state": "Victoria" }, "OAG": { "city": "Orange", "country": "AU", "state": "New-South-Wales" }, "ODR": { "city": "Ord River", "country": "AU", "state": "Western-Australia" }, "OSO": { "city": "", "country": "AU", "state": "Queensland" }, "OYN": { "city": "", "country": "AU", "state": "Victoria" }, "ADL": { "city": "Adelaide", "country": "AU", "state": "South-Australia" }, "PUG": { "city": "", "country": "AU", "state": "South-Australia" }, "PMK": { "city": "", "country": "AU", "state": "Queensland" }, "PBO": { "city": "Paraburdoo", "country": "AU", "state": "Western-Australia" }, "CCK": { "city": "Cocos (Keeling) Islands", "country": "CC", "state": "" }, "PDE": { "city": "", "country": "AU", "state": "South-Australia" }, "DRW": { "city": "Darwin", "country": "AU", "state": "Northern-Territory" }, "PRD": { "city": "Pardoo", "country": "AU", "state": "Western-Australia" }, "BEO": { "city": "", "country": "AU", "state": "New-South-Wales" }, "GOV": { "city": "Nhulunbuy", "country": "AU", "state": "Northern-Territory" }, "PPI": { "city": "", "country": "AU", "state": "South-Australia" }, "JAD": { "city": "Perth", "country": "AU", "state": "Western-Australia" }, "KTA": { "city": "Karratha", "country": "AU", "state": "Western-Australia" }, "KGI": { "city": "Kalgoorlie", "country": "AU", "state": "Western-Australia" }, "PKE": { "city": "Parkes", "country": "AU", "state": "New-South-Wales" }, "PKT": { "city": "", "country": "AU", "state": "Northern-Territory" }, "KNX": { "city": "Kununurra", "country": "AU", "state": "Western-Australia" }, "PLO": { "city": "Port Lincoln", "country": "AU", "state": "South-Australia" }, "LEA": { "city": "Exmouth", "country": "AU", "state": "Western-Australia" }, "EDR": { "city": "", "country": "AU", "state": "Queensland" }, "PQQ": { "city": "Port Macquarie", "country": "AU", "state": "New-South-Wales" }, "PTJ": { "city": "", "country": "AU", "state": "Victoria" }, "PHE": { "city": "Port Hedland", "country": "AU", "state": "Western-Australia" }, "PER": { "city": "Perth", "country": "AU", "state": "Western-Australia" }, "PEA": { "city": "Ironstone", "country": "AU", "state": "South-Australia" }, "KTR": { "city": "", "country": "AU", "state": "Northern-Territory" }, "UMR": { "city": "Woomera", "country": "AU", "state": "South-Australia" }, "XCH": { "city": "Christmas Island", "country": "CX", "state": "" }, "UIR": { "city": "", "country": "AU", "state": "New-South-Wales" }, "ULP": { "city": "", "country": "AU", "state": "Queensland" }, "UEE": { "city": "", "country": "AU", "state": "Tasmania" }, "RMK": { "city": "", "country": "AU", "state": "South-Australia" }, "RCM": { "city": "", "country": "AU", "state": "Queensland" }, "RAM": { "city": "", "country": "AU", "state": "Northern-Territory" }, "ROH": { "city": "", "country": "AU", "state": "Queensland" }, "RBU": { "city": "Roebourne", "country": "AU", "state": "Western-Australia" }, "RBC": { "city": "", "country": "AU", "state": "Victoria" }, "RMA": { "city": "Roma", "country": "AU", "state": "Queensland" }, "RSB": { "city": "", "country": "AU", "state": "Queensland" }, "RTS": { "city": "", "country": "AU", "state": "Western-Australia" }, "RTP": { "city": "", "country": "AU", "state": "Queensland" }, "RHL": { "city": "", "country": "AU", "state": "Western-Australia" }, "NDS": { "city": "Sandstone", "country": "AU", "state": "Western-Australia" }, "BWU": { "city": "Sydney", "country": "AU", "state": "New-South-Wales" }, "CBR": { "city": "Canberra", "country": "AU", "state": "ACT" }, "CFS": { "city": "Coffs Harbour", "country": "AU", "state": "New-South-Wales" }, "CDU": { "city": "", "country": "AU", "state": "New-South-Wales" }, "NSO": { "city": "", "country": "AU", "state": "New-South-Wales" }, "SQC": { "city": "", "country": "AU", "state": "Western-Australia" }, "DBO": { "city": "Dubbo", "country": "AU", "state": "New-South-Wales" }, "SGO": { "city": "", "country": "AU", "state": "Queensland" }, "SIX": { "city": "Singleton", "country": "AU", "state": "New-South-Wales" }, "ZGL": { "city": "", "country": "AU", "state": "Queensland" }, "SGP": { "city": "Shay Gap", "country": "AU", "state": "Western-Australia" }, "MJK": { "city": "Monkey Mia", "country": "AU", "state": "Western-Australia" }, "JHQ": { "city": "", "country": "AU", "state": "Queensland" }, "SHT": { "city": "", "country": "AU", "state": "Victoria" }, "SBR": { "city": "Saibai Island", "country": "AU", "state": "Queensland" }, "SIO": { "city": "", "country": "AU", "state": "Tasmania" }, "SHU": { "city": "", "country": "AU", "state": "Northern-Territory" }, "STH": { "city": "", "country": "AU", "state": "Queensland" }, "SNB": { "city": "", "country": "AU", "state": "Northern-Territory" }, "NLK": { "city": "Burnt Pine", "country": "NF", "state": "" }, "NOA": { "city": "", "country": "AU", "state": "New-South-Wales" }, "SLJ": { "city": "Karijini National Park", "country": "AU", "state": "Westrn-Australia" }, "SNH": { "city": "", "country": "AU", "state": "Queensland" }, "SCG": { "city": "", "country": "AU", "state": "Queensland" }, "SHQ": { "city": "", "country": "AU", "state": "Queensland" }, "KSV": { "city": "", "country": "AU", "state": "Queensland" }, "SRN": { "city": "", "country": "AU", "state": "Tasmania" }, "SYD": { "city": "Sydney", "country": "AU", "state": "New-South-Wales" }, "HLS": { "city": "", "country": "AU", "state": "Tasmania" }, "TMW": { "city": "Tamworth", "country": "AU", "state": "New-South-Wales" }, "WGA": { "city": "Wagga Wagga", "country": "AU", "state": "New-South-Wales" }, "SWH": { "city": "", "country": "AU", "state": "Victoria" }, "SWC": { "city": "", "country": "AU", "state": "Victoria" }, "XTR": { "city": "", "country": "AU", "state": "Queensland" }, "TBL": { "city": "", "country": "AU", "state": "Western-Australia" }, "XTO": { "city": "", "country": "AU", "state": "Queensland" }, "TAQ": { "city": "Tarcoola", "country": "AU", "state": "South-Australia" }, "TBK": { "city": "", "country": "AU", "state": "Northern-Territory" }, "TDR": { "city": "", "country": "AU", "state": "Queensland" }, "TEF": { "city": "", "country": "AU", "state": "Western-Australia" }, "TEM": { "city": "", "country": "AU", "state": "New-South-Wales" }, "TAN": { "city": "", "country": "AU", "state": "Queensland" }, "XTG": { "city": "", "country": "AU", "state": "Queensland" }, "TYG": { "city": "", "country": "AU", "state": "Queensland" }, "TYB": { "city": "", "country": "AU", "state": "New-South-Wales" }, "TKY": { "city": "Turkey Creek", "country": "AU", "state": "Western-Australia" }, "TPR": { "city": "Tom Price", "country": "AU", "state": "Western-Australia" }, "TUM": { "city": "", "country": "AU", "state": "New-South-Wales" }, "TYP": { "city": "Tobermorey", "country": "AU", "state": "Northern-Territory" }, "THG": { "city": "Biloela", "country": "AU", "state": "Queensland" }, "TCA": { "city": "Tennant Creek", "country": "AU", "state": "Northern-Territory" }, "TCW": { "city": "", "country": "AU", "state": "New-South-Wales" }, "TRO": { "city": "Taree", "country": "AU", "state": "New-South-Wales" }, "TWB": { "city": "", "country": "AU", "state": "Queensland" }, "UDA": { "city": "", "country": "AU", "state": "Queensland" }, "CZY": { "city": "", "country": "AU", "state": "Queensland" }, "USL": { "city": "", "country": "AU", "state": "Western-Australia" }, "VCD": { "city": "", "country": "AU", "state": "Northern-Territory" }, "VNR": { "city": "", "country": "AU", "state": "Queensland" }, "WLA": { "city": "Wallal", "country": "AU", "state": "Western-Australia" }, "WAV": { "city": "", "country": "AU", "state": "Northern-Territory" }, "WMB": { "city": "", "country": "AU", "state": "Victoria" }, "SYU": { "city": "Sue Islet", "country": "AU", "state": "Queensland" }, "WIO": { "city": "", "country": "AU", "state": "New-South-Wales" }, "WLC": { "city": "", "country": "AU", "state": "New-South-Wales" }, "WAZ": { "city": "", "country": "AU", "state": "Queensland" }, "WND": { "city": "", "country": "AU", "state": "Western-Australia" }, "WNR": { "city": "", "country": "AU", "state": "Queensland" }, "WGT": { "city": "", "country": "AU", "state": "Victoria" }, "WYA": { "city": "Whyalla", "country": "AU", "state": "South-Australia" }, "WIT": { "city": "", "country": "AU", "state": "Western-Australia" }, "WKB": { "city": "", "country": "AU", "state": "Victoria" }, "WGE": { "city": "", "country": "AU", "state": "New-South-Wales" }, "NTL": { "city": "Williamtown", "country": "AU", "state": "New-South-Wales" }, "WUN": { "city": "", "country": "AU", "state": "Western-Australia" }, "WPK": { "city": "", "country": "AU", "state": "Queensland" }, "WDI": { "city": "", "country": "AU", "state": "Queensland" }, "WOL": { "city": "", "country": "AU", "state": "New-South-Wales" }, "QRR": { "city": "", "country": "AU", "state": "New-South-Wales" }, "WLO": { "city": "", "country": "AU", "state": "Northern-Territory" }, "WIN": { "city": "", "country": "AU", "state": "Queensland" }, "WUD": { "city": "", "country": "AU", "state": "South-Australia" }, "WEW": { "city": "", "country": "AU", "state": "New-South-Wales" }, "WRW": { "city": "", "country": "AU", "state": "Western-Australia" }, "WWI": { "city": "Woodie Woodie", "country": "AU", "state": "Western-Australia" }, "WYN": { "city": "", "country": "AU", "state": "Western-Australia" }, "BWT": { "city": "Burnie", "country": "AU", "state": "Tasmania" }, "YLG": { "city": "Yalgoo", "country": "AU", "state": "Western-Australia" }, "OKR": { "city": "Yorke Island", "country": "AU", "state": "Queensland" }, "KYF": { "city": "", "country": "AU", "state": "Western-Australia" }, "XMY": { "city": "Yam Island", "country": "AU", "state": "Queensland" }, "YUE": { "city": "", "country": "AU", "state": "Northern-Territory" }, "NGA": { "city": "", "country": "AU", "state": "New-South-Wales" }, "ORR": { "city": "", "country": "AU", "state": "South-Australia" }, "KYI": { "city": "Yalata Mission", "country": "AU", "state": "South-Australia" }, "PEK": { "city": "Beijing", "country": "CN", "state": "Beijing" }, "CIF": { "city": "Chifeng", "country": "CN", "state": "Inner-Mongolia" }, "CIH": { "city": "Changzhi", "country": "CN", "state": "Shanxi" }, "DSN": { "city": "Ordos", "country": "CN", "state": "Inner-Mongolia" }, "DAT": { "city": "Datong", "country": "CN", "state": "Shanxi" }, "AEB": { "city": "Baise", "country": "CN", "state": "Guangxi" }, "HDG": { "city": "Handan", "country": "CN", "state": "Hebei" }, "HET": { "city": "Hohhot", "country": "CN", "state": "Inner-Mongolia" }, "HLD": { "city": "Hailar", "country": "CN", "state": "Inner-Mongolia" }, "NAY": { "city": "Beijing", "country": "CN", "state": "Beijing" }, "BAV": { "city": "Baotou", "country": "CN", "state": "Inner-Mongolia" }, "SHP": { "city": "Qinhuangdao", "country": "CN", "state": "Hebei" }, "SJW": { "city": "Shijiazhuang", "country": "CN", "state": "Hebei" }, "TSN": { "city": "Tianjin", "country": "CN", "state": "Tianjin" }, "TGO": { "city": "Tongliao", "country": "CN", "state": "Inner-Mongolia" }, "HLH": { "city": "Ulanhot", "country": "CN", "state": "Inner-Mongolia" }, "XIL": { "city": "Xilinhot", "country": "CN", "state": "Inner-Mongolia" }, "YCU": { "city": "Yuncheng", "country": "CN", "state": "Shanxi" }, "TYN": { "city": "Taiyuan", "country": "CN", "state": "Shanxi" }, "BHY": { "city": "Beihai", "country": "CN", "state": "Guangxi" }, "CGD": { "city": "Changde", "country": "CN", "state": "Hunan" }, "HJJ": { "city": "Huaihua", "country": "CN", "state": "Hunan" }, "DYG": { "city": "Dayong", "country": "CN", "state": "Hunan" }, "FUO": { "city": "Foshan", "country": "CN", "state": "Guangdong" }, "CAN": { "city": "Guangzhou", "country": "CN", "state": "Guangdong" }, "CSX": { "city": "Changsha", "country": "CN", "state": "Hunan" }, "HNY": { "city": "Hengyang", "country": "CN", "state": "Hunan" }, "HUZ": { "city": "Huizhou", "country": "CN", "state": "Guangdong" }, "KWL": { "city": "Guilin City", "country": "CN", "state": "Guangxi" }, "LLF": { "city": "Yongzhou", "country": "CN", "state": "Hunan" }, "MXZ": { "city": "Meixian", "country": "CN", "state": "Guangdong" }, "NNG": { "city": "Nanning", "country": "CN", "state": "Guangxi" }, "SWA": { "city": "Shantou", "country": "CN", "state": "Guangdong" }, "ZUH": { "city": "Zhuhai", "country": "CN", "state": "Guangdong" }, "SZX": { "city": "Shenzhen", "country": "CN", "state": "Guangdong" }, "WUZ": { "city": "Wuzhou", "country": "CN", "state": "Guangxi" }, "XIN": { "city": "Xingning", "country": "CN", "state": "Guangdong" }, "LZH": { "city": "Liuzhou", "country": "CN", "state": "Guangxi" }, "ZHA": { "city": "Zhanjiang", "country": "CN", "state": "Guangdong" }, "AYN": { "city": "Anyang", "country": "CN", "state": "Henan" }, "CGO": { "city": "Zhengzhou", "country": "CN", "state": "Henan" }, "ENH": { "city": "Enshi", "country": "CN", "state": "Hubei" }, "LHK": { "city": "Guanghua", "country": "CN", "state": "Hubei" }, "WUH": { "city": "Wuhan", "country": "CN", "state": "Hubei" }, "LYA": { "city": "Luoyang", "country": "CN", "state": "Henan" }, "NNY": { "city": "Nanyang", "country": "CN", "state": "Henan" }, "SHS": { "city": "Shashi", "country": "CN", "state": "Hubei" }, "XFN": { "city": "Xiangfan", "country": "CN", "state": "Hubei" }, "YIH": { "city": "Yichang", "country": "CN", "state": "Hubei" }, "HAK": { "city": "Haikou", "country": "CN", "state": "Hainan" }, "SYX": { "city": "Sanya", "country": "CN", "state": "Hainan" }, "RGO": { "city": "", "country": "KP", "state": "Hamgyong-bukto" }, "FNJ": { "city": "Pyongyang", "country": "KP", "state": "South-Pyongan" }, "DSO": { "city": "", "country": "KP", "state": "Hamgyong-namdo" }, "YJS": { "city": "Samjiyon", "country": "KP", "state": "Yanggang-do" }, "AKA": { "city": "Ankang", "country": "CN", "state": "Shaanxi" }, "DNH": { "city": "Dunhuang", "country": "CN", "state": "Gansu" }, "GOQ": { "city": "Golmud", "country": "CN", "state": "Qinghai" }, "GYU": { "city": "Guyuan", "country": "CN", "state": "Ningsia-Hui-Autonomous-Region" }, "HZG": { "city": "Hanzhong", "country": "CN", "state": "Shaanxi" }, "INC": { "city": "Yinchuan", "country": "CN", "state": "Ningsia-Hui-Autonomous-Region" }, "JIC": { "city": "Jinchang", "country": "CN", "state": "Gansu" }, "JNG": { "city": "Jining", "country": "CN", "state": "Shandong" }, "JGN": { "city": "Jiayuguan", "country": "CN", "state": "Gansu" }, "LHW": { "city": "Lanzhou", "country": "CN", "state": "Gansu" }, "IQN": { "city": "Qingyang", "country": "CN", "state": "Gansu" }, "SIA": { "city": "Xi'an", "country": "CN", "state": "Shaanxi" }, "THQ": { "city": "Tianshui", "country": "CN", "state": "Gansu" }, "XNN": { "city": "Xining", "country": "CN", "state": "Qinghai" }, "XIY": { "city": "Xianyang", "country": "CN", "state": "Shaanxi" }, "ENY": { "city": "Yan'an", "country": "CN", "state": "Shaanxi" }, "UYN": { "city": "Yulin", "country": "CN", "state": "Shaanxi" }, "ZHY": { "city": "Zhongwei", "country": "CN", "state": "Ningxia Hui Autonomous Region" }, "AVK": { "city": "Arvaikheer", "country": "MN", "state": "Oevorhangay" }, "LTI": { "city": "Altai", "country": "MN", "state": "Govi-Altay" }, "BYN": { "city": "Bayankhongor", "country": "MN", "state": "Bayanhongor" }, "UGA": { "city": "Bulgan", "country": "MN", "state": "Bulgan" }, "UGT": { "city": "Umnugobitour", "country": "MN", "state": "Oemnogovi" }, "HBU": { "city": "", "country": "MN", "state": "Hovd" }, "UUN": { "city": "", "country": "MN", "state": "Suehbaatar" }, "COQ": { "city": "", "country": "MN", "state": "East-Aimak" }, "DLZ": { "city": "Dalanzadgad", "country": "MN", "state": "Oemnogovi" }, "KHR": { "city": "", "country": "MN", "state": "Oevorhangay" }, "HVD": { "city": "Khovd", "country": "MN", "state": "Hovd" }, "MXV": { "city": "Moron", "country": "MN", "state": "Hovsgol" }, "ULN": { "city": "Ulan Bator", "country": "MN", "state": "Ulaanbaatar" }, "ULO": { "city": "", "country": "MN", "state": "Uvs" }, "ULG": { "city": "", "country": "MN", "state": "Bayan-Oelgiy" }, "BSD": { "city": "", "country": "CN", "state": "Yunnan" }, "DLU": { "city": "Xiaguan", "country": "CN", "state": "Yunnan" }, "DIG": { "city": "Shangri-La", "country": "CN", "state": "Yunnan" }, "LNJ": { "city": "Lincang", "country": "CN", "state": "Yunnan" }, "JHG": { "city": "Jinghong", "country": "CN", "state": "Yunnan" }, "LJG": { "city": "Lijiang", "country": "CN", "state": "Yunnan" }, "LUM": { "city": "Luxi", "country": "CN", "state": "Yunnan" }, "KMG": { "city": "Kunming", "country": "CN", "state": "Yunnan" }, "SYM": { "city": "Simao", "country": "CN", "state": "Yunnan" }, "ZAT": { "city": "Zhaotong", "country": "CN", "state": "Yunnan" }, "XMN": { "city": "Xiamen", "country": "CN", "state": "Fujian" }, "AQG": { "city": "Anqing", "country": "CN", "state": "Anhui" }, "BFU": { "city": "Bengbu", "country": "CN", "state": "Anhui" }, "CZX": { "city": "Changzhou", "country": "CN", "state": "Jiangsu" }, "KHN": { "city": "Nanchang", "country": "CN", "state": "Jiangxi" }, "DOY": { "city": "Dongying", "country": "CN", "state": "Shandong" }, "FUG": { "city": "Fuyang", "country": "CN", "state": "Anhui" }, "FOC": { "city": "Fuzhou", "country": "CN", "state": "Fujian" }, "JGS": { "city": "Ji'an", "country": "CN", "state": "Jiangxi" }, "KOW": { "city": "Ganzhou", "country": "CN", "state": "Jiangxi" }, "HGH": { "city": "Hangzhou", "country": "CN", "state": "Zhejiang" }, "JDZ": { "city": "Jingdezhen", "country": "CN", "state": "Jiangxi" }, "JIU": { "city": "Jiujiang", "country": "CN", "state": "Jiangxi" }, "TNA": { "city": "Jinan", "country": "CN", "state": "Shandong" }, "JUZ": { "city": "Quzhou", "country": "CN", "state": "Zhejiang" }, "LCX": { "city": "Longyan", "country": "CN", "state": "Fujian" }, "LYG": { "city": "Lianyungang", "country": "CN", "state": "Jiangsu" }, "HYN": { "city": "Huangyan", "country": "CN", "state": "Zhejiang" }, "LYI": { "city": "Linyi", "country": "CN", "state": "Shandong" }, "NGB": { "city": "Ningbo", "country": "CN", "state": "Zhejiang" }, "NKG": { "city": "Nanjing", "country": "CN", "state": "Jiangsu" }, "NTG": { "city": "Nantong", "country": "CN", "state": "Jiangsu" }, "HFE": { "city": "Hefei", "country": "CN", "state": "Anhui" }, "PVG": { "city": "Shanghai", "country": "CN", "state": "Shanghai" }, "TAO": { "city": "Qingdao", "country": "CN", "state": "Shandong" }, "JJN": { "city": "Quanzhou", "country": "CN", "state": "Fujian" }, "RUG": { "city": "Rugao", "country": "CN", "state": "Jiangsu" }, "HIA": { "city": "Huai'an", "country": "CN", "state": "Jiangsu" }, "SHA": { "city": "Shanghai", "country": "CN", "state": "Shanghai" }, "SZV": { "city": "Suzhou", "country": "CN", "state": "Jiangsu" }, "TXN": { "city": "Huangshan", "country": "CN", "state": "Anhui" }, "WEF": { "city": "Weifang", "country": "CN", "state": "Shandong" }, "WEH": { "city": "Weihai", "country": "CN", "state": "Shandong" }, "WHU": { "city": "Wuhu", "country": "CN", "state": "Anhui" }, "WUX": { "city": "Wuxi", "country": "CN", "state": "Jiangsu" }, "WUS": { "city": "Wuyishan", "country": "CN", "state": "Fujian" }, "WNZ": { "city": "Wenzhou", "country": "CN", "state": "Zhejiang" }, "XUZ": { "city": "Xuzhou", "country": "CN", "state": "Jiangsu" }, "YNZ": { "city": "Yancheng", "country": "CN", "state": "Jiangsu" }, "YNT": { "city": "Yantai", "country": "CN", "state": "Shandong" }, "YIW": { "city": "Yiwu", "country": "CN", "state": "Zhejiang" }, "HSN": { "city": "Zhoushan", "country": "CN", "state": "Zhejiang" }, "NGQ": { "city": "Shiquanhe", "country": "CN", "state": "Tibet" }, "AVA": { "city": "Anshun", "country": "CN", "state": "Beijing" }, "BPX": { "city": "Bangda", "country": "CN", "state": "Tibet" }, "CKG": { "city": "Chongqing", "country": "CN", "state": "Chongqing" }, "DAX": { "city": "Dazhou", "country": "CN", "state": "Sichuan" }, "GYS": { "city": "Guangyuan", "country": "CN", "state": "Sichuan" }, "KWE": { "city": "Guiyang", "country": "CN", "state": "Guizhou" }, "JZH": { "city": "Jiuzhaigou", "country": "CN", "state": "Sichuan" }, "LIA": { "city": "Liangping", "country": "CN", "state": "Sichuan" }, "LXA": { "city": "Lhasa", "country": "CN", "state": "Tibet" }, "LZO": { "city": "Luzhou", "country": "CN", "state": "Sichuan" }, "MIG": { "city": "Mianyang", "country": "CN", "state": "Sichuan" }, "NAO": { "city": "Nanchong", "country": "CN", "state": "Sichuan" }, "LZY": { "city": "Nyingchi", "country": "CN", "state": "Tibet" }, "JIQ": { "city": "Chongqing", "country": "CN", "state": "Chongqing" }, "TCZ": { "city": "Tengchong", "country": "CN", "state": "Yunnan" }, "TEN": { "city": "", "country": "CN", "state": "Hunan" }, "CTU": { "city": "Chengdu", "country": "CN", "state": "Sichuan" }, "WXN": { "city": "Wanxian", "country": "CN", "state": "Chongqing" }, "XIC": { "city": "Xichang", "country": "CN", "state": "Sichuan" }, "YBP": { "city": "Yibin", "country": "CN", "state": "Sichuan" }, "ACX": { "city": "Xingyi", "country": "CN", "state": "Guizhou" }, "ZYI": { "city": "Zunyi", "country": "CN", "state": "Guizhou" }, "AKU": { "city": "Aksu", "country": "CN", "state": "Xinjiang" }, "AAT": { "city": "Altay", "country": "CN", "state": "Xinjiang" }, "BPL": { "city": "Bole", "country": "CN", "state": "Xinjiang" }, "IQM": { "city": "Qiemo", "country": "CN", "state": "Xinjiang" }, "HMI": { "city": "Hami", "country": "CN", "state": "Xinjiang" }, "KCA": { "city": "Kuqa", "country": "CN", "state": "Xinjiang" }, "KRL": { "city": "Korla", "country": "CN", "state": "Xinjiang" }, "KRY": { "city": "Karamay", "country": "CN", "state": "Xinjiang" }, "KHG": { "city": "Kashgar", "country": "CN", "state": "Xinjiang" }, "SXJ": { "city": "Shanshan", "country": "CN", "state": "Xinjiang" }, "TCG": { "city": "Tacheng", "country": "CN", "state": "Xinjiang" }, "HTN": { "city": "Hotan", "country": "CN", "state": "Xinjiang" }, "URC": { "city": "Urumqi", "country": "CN", "state": "Xinjiang" }, "YIN": { "city": "Yining", "country": "CN", "state": "Xinjiang" }, "AOG": { "city": "Anshan", "country": "CN", "state": "Liaoning" }, "CGQ": { "city": "Changchun", "country": "CN", "state": "Jilin" }, "CNI": { "city": "Changhai", "country": "CN", "state": "Liaoning" }, "CHG": { "city": "Chaoyang", "country": "CN", "state": "Liaoning" }, "DDG": { "city": "Dandong", "country": "CN", "state": "Liaoning" }, "DQA": { "city": "Daqing Shi", "country": "CN", "state": "Heilongjiang" }, "HRB": { "city": "Harbin", "country": "CN", "state": "Heilongjiang" }, "HEK": { "city": "Heihe", "country": "CN", "state": "Heilongjiang" }, "JIL": { "city": "Jilin", "country": "CN", "state": "Jilin" }, "JMU": { "city": "Jiamusi", "country": "CN", "state": "Heilongjiang" }, "JNZ": { "city": "Jinzhou", "country": "CN", "state": "Liaoning" }, "LDS": { "city": "Yichun", "country": "CN", "state": "Heilongjiang" }, "YUS": { "city": "Yushu", "country": "CN", "state": "Qinghai" }, "MDG": { "city": "Mudanjiang", "country": "CN", "state": "Heilongjiang" }, "OHE": { "city": "Mohe", "country": "CN", "state": "Heilongjiang" }, "NDG": { "city": "Qiqihar", "country": "CN", "state": "Heilongjiang" }, "DLC": { "city": "Dalian", "country": "CN", "state": "Liaoning" }, "TNH": { "city": "Tonghua", "country": "CN", "state": "Jilin" }, "SHE": { "city": "Shenyang", "country": "CN", "state": "Liaoning" }, "XEN": { "city": "", "country": "CN", "state": "Liaoning" }, "YNJ": { "city": "Yanji", "country": "CN", "state": "Jilin" } }
|