From d04f34f253dd9b798f75ea730353fb5a0800681c Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 16 Jun 2024 04:55:31 -0400 Subject: [PATCH 01/31] Updating PHP versions --- .travis.yml | 20 +++++++++----------- composer.json | 9 +++++---- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 247d9a8..4271696 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,18 @@ language: php php: - - 5.6 - - 7.0 - - 7.1 - - 7.2 - - 7.3 - - 7.4snapshot + - 7.4 + - 8.1 + - 8.2 + - 8.3snapshot matrix: include: - - php: 5.3 + - php: 7.4 dist: precise - - php: 5.4 + - php: 8.1 dist: trusty - - php: 5.5 + - php: 8.2 dist: trusty allow_failures: - php: nightly @@ -26,5 +24,5 @@ script: - vendor/bin/phpunit after_script: - - if [ "$TRAVIS_PHP_VERSION" != "7.4snapshot" ] && [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - - if [ "$TRAVIS_PHP_VERSION" != "7.4snapshot" ] && [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi + - if [ "$TRAVIS_PHP_VERSION" != "8.3snapshot" ] && [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi + - if [ "$TRAVIS_PHP_VERSION" != "8.3snapshot" ] && [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi diff --git a/composer.json b/composer.json index 01cda57..bee3046 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,7 @@ { "name": "geekwright/regdom", "description": "OO adaptation of Florian Sager's regdom library for querying Mozilla Public Suffix List", + "version": "1.0.10", "keywords": [ "public", "suffix", @@ -17,15 +18,15 @@ } ], "require": { - "php": ">=5.3.9", - "symfony/polyfill-mbstring": "^1.3.0" + "php": ">=7.4.0", + "symfony/polyfill-mbstring": "^1.29.0" }, "require-dev": { - "phpunit/phpunit": "^4.8|^5.7" + "phpunit/phpunit": "^9.6|^11.2.1" }, "autoload": { "psr-4": { - "Geekwright\\RegDom\\": "src/" + "Geekwright\\Regdom\\": "src/" } }, "autoload-dev": { From c0250bcbbca95c0a8907f40ff50f8966e8c77ce9 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 01:01:25 -0400 Subject: [PATCH 02/31] travis update --- .travis.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4271696..8291e8d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,20 +2,16 @@ language: php php: - 7.4 + - 8.0 - 8.1 - 8.2 - - 8.3snapshot + - 8.3 -matrix: - include: - - php: 7.4 - dist: precise - - php: 8.1 - dist: trusty - - php: 8.2 - dist: trusty +jobs: allow_failures: - php: nightly + include: + - php: nightly install: - composer install @@ -24,5 +20,5 @@ script: - vendor/bin/phpunit after_script: - - if [ "$TRAVIS_PHP_VERSION" != "8.3snapshot" ] && [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - - if [ "$TRAVIS_PHP_VERSION" != "8.3snapshot" ] && [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi + - if [[ "$TRAVIS_PHP_VERSION" != "8.3" && "$TRAVIS_PHP_VERSION" != "nightly" ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi + - if [[ "$TRAVIS_PHP_VERSION" != "8.3" && "$TRAVIS_PHP_VERSION" != "nightly" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi From 5c3d518d205b858530c0a1645c33eb52c9b938ac Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 01:16:59 -0400 Subject: [PATCH 03/31] Yoda --- src/PublicSuffixList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PublicSuffixList.php b/src/PublicSuffixList.php index 70033f7..0f1ae27 100644 --- a/src/PublicSuffixList.php +++ b/src/PublicSuffixList.php @@ -76,7 +76,7 @@ protected function loadTree() $this->tree = array(); $list = $this->readPSL(); - if (false===$list) { + if (false === $list) { throw new \RuntimeException('Cannot read ' . $this->url); } From 2a0fc83a0862a7160de32b3060f063f29d386f38 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 01:19:28 -0400 Subject: [PATCH 04/31] add check for is_string($curlReturn) --- src/PublicSuffixList.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/PublicSuffixList.php b/src/PublicSuffixList.php index 0f1ae27..1ed492a 100644 --- a/src/PublicSuffixList.php +++ b/src/PublicSuffixList.php @@ -58,7 +58,7 @@ protected function setFallbackURL() } /** - * load the PSL tree, automatically handling caches + * Load the PSL tree, automatically handling caches * * @return void (results in $this->tree) * @@ -159,7 +159,7 @@ protected function buildSubDomain(&$node, $tldParts) */ public function getTree() { - if (null===$this->tree) { + if (null === $this->tree) { $this->loadTree(); } return $this->tree; @@ -185,14 +185,14 @@ protected function readPSL() } // try again with curl if file_get_contents failed - if (function_exists('curl_init') && false !== ($curlHandle = curl_init())) { + if (function_exists('curl_init') && false !== ($curlHandle = curl_init())) { curl_setopt($curlHandle, CURLOPT_URL, $this->url); curl_setopt($curlHandle, CURLOPT_FAILONERROR, true); curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curlHandle, CURLOPT_CONNECTTIMEOUT, 5); $curlReturn = curl_exec($curlHandle); curl_close($curlHandle); - if (false !== $curlReturn) { + if (false !== $curlReturn && is_string($curlReturn)) { if ($remote) { $this->saveLocalPSL($curlReturn); } @@ -226,7 +226,7 @@ protected function readCachedPSL($url) $cacheFile = $this->getCacheFileName($url); if (file_exists($cacheFile)) { $cachedTree = file_get_contents($cacheFile); - if((int) PHP_VERSION_ID < 70000) { + if ((int) PHP_VERSION_ID < 70000) { return unserialize($cachedTree); } return unserialize($cachedTree, array('allowed_classes' => false)); From b03ca4ad7937a35baed04f1ccb067ded0b19878c Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 01:26:49 -0400 Subject: [PATCH 05/31] improved decodePunycode() --- src/RegisteredDomain.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/RegisteredDomain.php b/src/RegisteredDomain.php index 73426bb..d6895dd 100644 --- a/src/RegisteredDomain.php +++ b/src/RegisteredDomain.php @@ -123,9 +123,13 @@ protected function decodePunycode($encoded) $delta = $idx - $old_idx; $delta = (int) ($is_first ? ($delta / $damp) : ($delta / 2)); $delta += (int) ($delta / ($deco_len + 1)); - for ($k = 0; $delta > (($base - $tmin) * $tmax) / 2; $k += $base) { + + $k = 0; + while ($delta > (($base - $tmin) * $tmax) / 2) { $delta = (int) ($delta / ($base - $tmin)); + $k += $base; } + $bias = (int) ($k + ($base - $tmin + 1) * $delta / ($delta + $skew)); $is_first = false; $char += (int)($idx / ($deco_len + 1)); From 1fb3cfb9fb3207ae9d512d01f27a91df15ac2b56 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 01:31:15 -0400 Subject: [PATCH 06/31] Redundant 'else' keyword Added a type check is_string($result) before using strlen() --- src/RegisteredDomain.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/RegisteredDomain.php b/src/RegisteredDomain.php index d6895dd..ac90ddc 100644 --- a/src/RegisteredDomain.php +++ b/src/RegisteredDomain.php @@ -209,7 +209,9 @@ protected function findRegisteredDomain($remainingSigningDomainParts, &$treeNode $result = null; if (isset($treeNode['!'])) { return ''; - } elseif (is_array($treeNode) && array_key_exists($sub, $treeNode)) { + } + + if (is_array($treeNode) && array_key_exists($sub, $treeNode)) { $result = $this->findRegisteredDomain($remainingSigningDomainParts, $treeNode[$sub]); } elseif (is_array($treeNode) && array_key_exists('*', $treeNode)) { $result = $this->findRegisteredDomain($remainingSigningDomainParts, $treeNode['*']); @@ -219,7 +221,9 @@ protected function findRegisteredDomain($remainingSigningDomainParts, &$treeNode if ($result === '') { return $sub; - } elseif (strlen($result)>0) { + } + + if (is_string($result) && strlen($result) > 0) { return $result . '.' . $sub; } return null; From 29e8ca3edb12bddecb3e5e17c6ae9b05125b4684 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 01:37:49 -0400 Subject: [PATCH 07/31] The type PHPUnit_Framework_TestCase was not found. --- tests/unit/PublicSuffixListTest.php | 4 +++- tests/unit/RegisteredDomainTest.php | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/unit/PublicSuffixListTest.php b/tests/unit/PublicSuffixListTest.php index 42c126b..623c745 100644 --- a/tests/unit/PublicSuffixListTest.php +++ b/tests/unit/PublicSuffixListTest.php @@ -1,7 +1,9 @@ Date: Sun, 30 Jun 2024 01:38:11 -0400 Subject: [PATCH 08/31] Type cast is redundant --- src/PublicSuffixList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PublicSuffixList.php b/src/PublicSuffixList.php index 1ed492a..010366f 100644 --- a/src/PublicSuffixList.php +++ b/src/PublicSuffixList.php @@ -226,7 +226,7 @@ protected function readCachedPSL($url) $cacheFile = $this->getCacheFileName($url); if (file_exists($cacheFile)) { $cachedTree = file_get_contents($cacheFile); - if ((int) PHP_VERSION_ID < 70000) { + if (PHP_VERSION_ID < 70000) { return unserialize($cachedTree); } return unserialize($cachedTree, array('allowed_classes' => false)); From 1e83a863e774332c6a07f598fe4b6d4767d27fba Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 01:57:04 -0400 Subject: [PATCH 09/31] replace Geekwright\RegDom with Xoops\RegDom --- README.md | 6 +++--- bin/reloadpsl | 6 +++--- src/PublicSuffixList.php | 4 ++-- src/RegisteredDomain.php | 4 ++-- tests/unit/PublicSuffixListTest.php | 4 ++-- tests/unit/RegisteredDomainTest.php | 4 ++-- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index a260782..d38c5f1 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ the list, please see [publicsuffix.org](https://publicsuffix.org/) # Usage -## Class Geekwright\RegDom\PublicSuffixList +## Class Xoops\RegDom\PublicSuffixList This class handles all direct interaction with the public suffix list (PSL.) This includes, fetching the list from a source URL, caching that list locally, converting that list to a tree form to facilitate rapid lookup, @@ -27,7 +27,7 @@ https://publicsuffix.org/list/public_suffix_list.dat Resets the current PSL, and uses the specified URL as the source. ### $psl->getTree() -Returns the tree of the current PSL. `Geekwright\RegDom\RegisteredDomain` +Returns the tree of the current PSL. `Xoops\RegDom\RegisteredDomain` uses this tree form for all lookups. ### $psl->clearDataDirectory(*$cacheOnly*) @@ -35,7 +35,7 @@ By default, this will clear all cached PSL data, including local copies of remotely accessed PSL data. Pass *true* for `$cacheOnly` to clear only the serialized tree data. -## Class Geekwright\RegDom\RegisteredDomain +## Class Xoops\RegDom\RegisteredDomain This class can be used to determine the registrable domain portion of a URL, respecting the public suffix list conventions. diff --git a/bin/reloadpsl b/bin/reloadpsl index 1b41545..ec3c4da 100755 --- a/bin/reloadpsl +++ b/bin/reloadpsl @@ -20,12 +20,12 @@ if ((!$loader = includeIfExists(__DIR__.'/../autoload.php')) die("You must set up the project dependencies, run composer install\n"); } -use Geekwright\RegDom\PublicSuffixList; +use Xoops\RegDom\PublicSuffixList; // force fetch of the PSL -$psl = new \Geekwright\RegDom\PublicSuffixList(); +$psl = new \Xoops\RegDom\PublicSuffixList(); $psl->clearDataDirectory(); $psl->getTree(); // once more to build local copy cache -$psl = new \Geekwright\RegDom\PublicSuffixList(); +$psl = new \Xoops\RegDom\PublicSuffixList(); $psl->getTree(); diff --git a/src/PublicSuffixList.php b/src/PublicSuffixList.php index 010366f..860800e 100644 --- a/src/PublicSuffixList.php +++ b/src/PublicSuffixList.php @@ -1,11 +1,11 @@ * @author Marcus Bointon (https://github.com/Synchro/regdom-php) * @author Richard Griffith diff --git a/src/RegisteredDomain.php b/src/RegisteredDomain.php index ac90ddc..8ea4787 100644 --- a/src/RegisteredDomain.php +++ b/src/RegisteredDomain.php @@ -1,12 +1,12 @@ * @author Marcus Bointon (https://github.com/Synchro/regdom-php) * @author Richard Griffith diff --git a/tests/unit/PublicSuffixListTest.php b/tests/unit/PublicSuffixListTest.php index 623c745..b14e604 100644 --- a/tests/unit/PublicSuffixListTest.php +++ b/tests/unit/PublicSuffixListTest.php @@ -1,5 +1,5 @@ assertInstanceOf('\Geekwright\RegDom\PublicSuffixList', $this->object); + $this->assertInstanceOf('\Xoops\RegDom\PublicSuffixList', $this->object); } public function testGetSet() diff --git a/tests/unit/RegisteredDomainTest.php b/tests/unit/RegisteredDomainTest.php index 920bd9a..329a6de 100644 --- a/tests/unit/RegisteredDomainTest.php +++ b/tests/unit/RegisteredDomainTest.php @@ -1,5 +1,5 @@ assertInstanceOf('\Geekwright\RegDom\RegisteredDomain', $object); + $this->assertInstanceOf('\Xoops\RegDom\RegisteredDomain', $object); } /** From 7ce0ea9f6518491f1182630dda9a26ad47e81c7a Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 02:09:19 -0400 Subject: [PATCH 10/31] short array syntax --- archive/generateEffectiveTLDs.php | 6 +- src/PublicSuffixList.php | 8 +- src/RegisteredDomain.php | 2 +- tests/unit/RegisteredDomainTest.php | 174 ++++++++++++++-------------- 4 files changed, 95 insertions(+), 95 deletions(-) diff --git a/archive/generateEffectiveTLDs.php b/archive/generateEffectiveTLDs.php index 0810f0a..0860345 100755 --- a/archive/generateEffectiveTLDs.php +++ b/archive/generateEffectiveTLDs.php @@ -56,9 +56,9 @@ function buildSubdomain(&$node, $tldParts) if (!array_key_exists($dom, $node)) { if ($isNotDomain) { - $node[$dom] = array("!" => ""); + $node[$dom] = ["!" => ""]; } else { - $node[$dom] = array(); + $node[$dom] = []; } } @@ -150,7 +150,7 @@ function printNode_C($key, $valueTree) error_reporting(E_ERROR); -$tldTree = array(); +$tldTree = []; $list = file_get_contents(URL); // $list = "bg\na.bg\n0.bg\n!c.bg\n"; $lines = explode("\n", $list); diff --git a/src/PublicSuffixList.php b/src/PublicSuffixList.php index 860800e..6324080 100644 --- a/src/PublicSuffixList.php +++ b/src/PublicSuffixList.php @@ -73,7 +73,7 @@ protected function loadTree() return; } - $this->tree = array(); + $this->tree = []; $list = $this->readPSL(); if (false === $list) { @@ -140,9 +140,9 @@ protected function buildSubDomain(&$node, $tldParts) if (!array_key_exists($dom, $node)) { if ($isNotDomain) { - $node[$dom] = array("!" => ""); + $node[$dom] = ["!" => ""]; } else { - $node[$dom] = array(); + $node[$dom] = []; } } @@ -229,7 +229,7 @@ protected function readCachedPSL($url) if (PHP_VERSION_ID < 70000) { return unserialize($cachedTree); } - return unserialize($cachedTree, array('allowed_classes' => false)); + return unserialize($cachedTree, ['allowed_classes' => false]); } return false; } diff --git a/src/RegisteredDomain.php b/src/RegisteredDomain.php index 8ea4787..b2be520 100644 --- a/src/RegisteredDomain.php +++ b/src/RegisteredDomain.php @@ -97,7 +97,7 @@ protected function decodePunycode($encoded) $bias = 72; $idx = 0; $char = 0x80; - $decoded = array(); + $decoded = []; $output = ''; $delim_pos = strrpos($encoded, '-'); diff --git a/tests/unit/RegisteredDomainTest.php b/tests/unit/RegisteredDomainTest.php index 329a6de..92c5611 100644 --- a/tests/unit/RegisteredDomainTest.php +++ b/tests/unit/RegisteredDomainTest.php @@ -59,98 +59,98 @@ public function testGetRegisteredDomain($url, $regdom) */ public function domainsProvider() { - $provider = array( - array(null, null), + $provider = [ + [null, null], // Mixed case. - array('COM', null), - array('example.COM', 'example.com'), - array('WwW.example.COM', 'example.com'), + ['COM', null], + ['example.COM', 'example.com'], + ['WwW.example.COM', 'example.com'], // Leading dot. - array('.com', null), - array('.example', null), + ['.com', null], + ['.example', null], // Unlisted TLD. - array('example', null), - array('example.example', 'example.example'), - array('b.example.example', 'example.example'), - array('a.b.example.example', 'example.example'), + ['example', null], + ['example.example', 'example.example'], + ['b.example.example', 'example.example'], + ['a.b.example.example', 'example.example'], // TLD with only 1 rule. - array('biz', null), - array('domain.biz', 'domain.biz'), - array('b.domain.biz', 'domain.biz'), - array('a.b.domain.biz', 'domain.biz'), + ['biz', null], + ['domain.biz', 'domain.biz'], + ['b.domain.biz', 'domain.biz'], + ['a.b.domain.biz', 'domain.biz'], // TLD with some 2-level rules. - array('com', null), - array('example.com', 'example.com'), - array('b.example.com', 'example.com'), - array('a.b.example.com', 'example.com'), - array('uk.com', null), - array('example.uk.com', 'example.uk.com'), - array('b.example.uk.com', 'example.uk.com'), - array('a.b.example.uk.com', 'example.uk.com'), - array('test.ac', 'test.ac'), + ['com', null], + ['example.com', 'example.com'], + ['b.example.com', 'example.com'], + ['a.b.example.com', 'example.com'], + ['uk.com', null], + ['example.uk.com', 'example.uk.com'], + ['b.example.uk.com', 'example.uk.com'], + ['a.b.example.uk.com', 'example.uk.com'], + ['test.ac', 'test.ac'], // TLD with only 1 (wildcard) rule. - array('mm', null), - array('c.mm', null), - array('b.c.mm', 'b.c.mm'), - array('a.b.c.mm', 'b.c.mm'), + ['mm', null], + ['c.mm', null], + ['b.c.mm', 'b.c.mm'], + ['a.b.c.mm', 'b.c.mm'], // More complex TLD. - array('jp', null), - array('test.jp', 'test.jp'), - array('www.test.jp', 'test.jp'), - array('ac.jp', null), - array('test.ac.jp', 'test.ac.jp'), - array('www.test.ac.jp', 'test.ac.jp'), - array('kyoto.jp', null), - array('test.kyoto.jp', 'test.kyoto.jp'), - array('ide.kyoto.jp', null), - array('b.ide.kyoto.jp', 'b.ide.kyoto.jp'), - array('a.b.ide.kyoto.jp', 'b.ide.kyoto.jp'), - array('c.kobe.jp', null), - array('b.c.kobe.jp', 'b.c.kobe.jp'), - array('a.b.c.kobe.jp', 'b.c.kobe.jp'), - array('city.kobe.jp', 'city.kobe.jp'), - array('www.city.kobe.jp', 'city.kobe.jp'), + ['jp', null], + ['test.jp', 'test.jp'], + ['www.test.jp', 'test.jp'], + ['ac.jp', null], + ['test.ac.jp', 'test.ac.jp'], + ['www.test.ac.jp', 'test.ac.jp'], + ['kyoto.jp', null], + ['test.kyoto.jp', 'test.kyoto.jp'], + ['ide.kyoto.jp', null], + ['b.ide.kyoto.jp', 'b.ide.kyoto.jp'], + ['a.b.ide.kyoto.jp', 'b.ide.kyoto.jp'], + ['c.kobe.jp', null], + ['b.c.kobe.jp', 'b.c.kobe.jp'], + ['a.b.c.kobe.jp', 'b.c.kobe.jp'], + ['city.kobe.jp', 'city.kobe.jp'], + ['www.city.kobe.jp', 'city.kobe.jp'], // TLD with a wildcard rule and exceptions. - array('ck', null), - array('test.ck', null), - array('b.test.ck', 'b.test.ck'), - array('a.b.test.ck', 'b.test.ck'), - array('www.ck', 'www.ck'), - array('www.www.ck', 'www.ck'), + ['ck', null], + ['test.ck', null], + ['b.test.ck', 'b.test.ck'], + ['a.b.test.ck', 'b.test.ck'], + ['www.ck', 'www.ck'], + ['www.www.ck', 'www.ck'], // US K12. - array('us', null), - array('test.us', 'test.us'), - array('www.test.us', 'test.us'), - array('ak.us', null), - array('test.ak.us', 'test.ak.us'), - array('www.test.ak.us', 'test.ak.us'), - array('k12.ak.us', null), - array('test.k12.ak.us', 'test.k12.ak.us'), - array('www.test.k12.ak.us', 'test.k12.ak.us'), + ['us', null], + ['test.us', 'test.us'], + ['www.test.us', 'test.us'], + ['ak.us', null], + ['test.ak.us', 'test.ak.us'], + ['www.test.ak.us', 'test.ak.us'], + ['k12.ak.us', null], + ['test.k12.ak.us', 'test.k12.ak.us'], + ['www.test.k12.ak.us', 'test.k12.ak.us'], // IDN labels. - array('食狮.com.cn', '食狮.com.cn'), - array('食狮.公司.cn', '食狮.公司.cn'), - array('www.食狮.公司.cn', '食狮.公司.cn'), - array('shishi.公司.cn', 'shishi.公司.cn'), - array('公司.cn', null), - array('食狮.中国', '食狮.中国'), - array('www.食狮.中国', '食狮.中国'), - array('shishi.中国', 'shishi.中国'), - array('中国', null), + ['食狮.com.cn', '食狮.com.cn'], + ['食狮.公司.cn', '食狮.公司.cn'], + ['www.食狮.公司.cn', '食狮.公司.cn'], + ['shishi.公司.cn', 'shishi.公司.cn'], + ['公司.cn', null], + ['食狮.中国', '食狮.中国'], + ['www.食狮.中国', '食狮.中国'], + ['shishi.中国', 'shishi.中国'], + ['中国', null], // Same as above, but punycoded. - array('xn--85x722f.com.cn', '食狮.com.cn'), - array('xn--85x722f.xn--55qx5d.cn', '食狮.公司.cn'), - array('www.xn--85x722f.xn--55qx5d.cn', '食狮.公司.cn'), - array('shishi.xn--55qx5d.cn', 'shishi.公司.cn'), - array('xn--55qx5d.cn', null), - array('xn--85x722f.xn--fiqs8s', '食狮.中国'), - array('www.xn--85x722f.xn--fiqs8s', '食狮.中国'), - array('shishi.xn--fiqs8s', 'shishi.中国'), - array('xn--fiqs8s', null), + ['xn--85x722f.com.cn', '食狮.com.cn'], + ['xn--85x722f.xn--55qx5d.cn', '食狮.公司.cn'], + ['www.xn--85x722f.xn--55qx5d.cn', '食狮.公司.cn'], + ['shishi.xn--55qx5d.cn', 'shishi.公司.cn'], + ['xn--55qx5d.cn', null], + ['xn--85x722f.xn--fiqs8s', '食狮.中国'], + ['www.xn--85x722f.xn--fiqs8s', '食狮.中国'], + ['shishi.xn--fiqs8s', 'shishi.中国'], + ['xn--fiqs8s', null], // inspiration case - array('rfu.in.ua', 'rfu.in.ua'), - array('in.ua', null), - ); + ['rfu.in.ua', 'rfu.in.ua'], + ['in.ua', null], + ]; return $provider; } @@ -168,15 +168,15 @@ public function testDecodePunycode($punycode, $decoded) */ public function punycodeProvider() { - $provider = array( - array(null, null), + $provider = [ + [null, null], // Mixed case. - array('test', 'test'), + ['test', 'test'], // punycoded - array('xn--85x722f', '食狮'), - array('xn--55qx5d', '公司'), - array('xn--fiqs8s', '中国'), - ); + ['xn--85x722f', '食狮'], + ['xn--55qx5d', '公司'], + ['xn--fiqs8s', '中国'], + ]; return $provider; } } From dd7886e3b0c383ed590835d4b272d252ca35b2ed Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 08:52:26 -0400 Subject: [PATCH 11/31] short array syntax --- archive/effectiveTLDs.inc.php | 12210 ++++++++++++++++---------------- 1 file changed, 6105 insertions(+), 6105 deletions(-) diff --git a/archive/effectiveTLDs.inc.php b/archive/effectiveTLDs.inc.php index 60a0d94..90e9b05 100644 --- a/archive/effectiveTLDs.inc.php +++ b/archive/effectiveTLDs.inc.php @@ -548,6109 +548,6109 @@ // DynDNS.com : http://www.dyndns.com/services/dns/dyndns/ // ===END PRIVATE DOMAINS=== -$tldTree = array('ac' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'net' => array(), -'mil' => array(), -'org' => array() -), -'ad' => array('nom' => array() -), -'ae' => array('co' => array(), -'net' => array(), -'org' => array(), -'sch' => array(), -'ac' => array(), -'gov' => array(), -'mil' => array() -), -'aero' => array('accident-investigation' => array(), -'accident-prevention' => array(), -'aerobatic' => array(), -'aeroclub' => array(), -'aerodrome' => array(), -'agents' => array(), -'aircraft' => array(), -'airline' => array(), -'airport' => array(), -'air-surveillance' => array(), -'airtraffic' => array(), -'air-traffic-control' => array(), -'ambulance' => array(), -'amusement' => array(), -'association' => array(), -'author' => array(), -'ballooning' => array(), -'broker' => array(), -'caa' => array(), -'cargo' => array(), -'catering' => array(), -'certification' => array(), -'championship' => array(), -'charter' => array(), -'civilaviation' => array(), -'club' => array(), -'conference' => array(), -'consultant' => array(), -'consulting' => array(), -'control' => array(), -'council' => array(), -'crew' => array(), -'design' => array(), -'dgca' => array(), -'educator' => array(), -'emergency' => array(), -'engine' => array(), -'engineer' => array(), -'entertainment' => array(), -'equipment' => array(), -'exchange' => array(), -'express' => array(), -'federation' => array(), -'flight' => array(), -'freight' => array(), -'fuel' => array(), -'gliding' => array(), -'government' => array(), -'groundhandling' => array(), -'group' => array(), -'hanggliding' => array(), -'homebuilt' => array(), -'insurance' => array(), -'journal' => array(), -'journalist' => array(), -'leasing' => array(), -'logistics' => array(), -'magazine' => array(), -'maintenance' => array(), -'marketplace' => array(), -'media' => array(), -'microlight' => array(), -'modelling' => array(), -'navigation' => array(), -'parachuting' => array(), -'paragliding' => array(), -'passenger-association' => array(), -'pilot' => array(), -'press' => array(), -'production' => array(), -'recreation' => array(), -'repbody' => array(), -'res' => array(), -'research' => array(), -'rotorcraft' => array(), -'safety' => array(), -'scientist' => array(), -'services' => array(), -'show' => array(), -'skydiving' => array(), -'software' => array(), -'student' => array(), -'taxi' => array(), -'trader' => array(), -'trading' => array(), -'trainer' => array(), -'union' => array(), -'workinggroup' => array(), -'works' => array() -), -'af' => array('gov' => array(), -'com' => array(), -'org' => array(), -'net' => array(), -'edu' => array() -), -'ag' => array('com' => array(), -'org' => array(), -'net' => array(), -'co' => array(), -'nom' => array() -), -'ai' => array('off' => array(), -'com' => array(), -'net' => array(), -'org' => array() -), -'al' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'mil' => array(), -'net' => array(), -'org' => array() -), -'am' => array(), -'an' => array('com' => array(), -'net' => array(), -'org' => array(), -'edu' => array() -), -'ao' => array('ed' => array(), -'gv' => array(), -'og' => array(), -'co' => array(), -'pb' => array(), -'it' => array() -), -'aq' => array(), -'ar' => array('*' => array(), -'congresodelalengua3' => array('!' => '' -), -'educ' => array('!' => '' -), -'gobiernoelectronico' => array('!' => '' -), -'mecon' => array('!' => '' -), -'nacion' => array('!' => '' -), -'nic' => array('!' => '' -), -'promocion' => array('!' => '' -), -'retina' => array('!' => '' -), -'uba' => array('!' => '' -) -), -'arpa' => array('e164' => array(), -'in-addr' => array(), -'ip6' => array(), -'iris' => array(), -'uri' => array(), -'urn' => array() -), -'as' => array('gov' => array() -), -'asia' => array(), -'at' => array('ac' => array(), -'co' => array(), -'gv' => array(), -'or' => array(), -'biz' => array(), -'info' => array(), -'priv' => array() -), -'au' => array('com' => array(), -'net' => array(), -'org' => array(), -'edu' => array('act' => array(), -'nsw' => array(), -'nt' => array(), -'qld' => array(), -'sa' => array(), -'tas' => array(), -'vic' => array(), -'wa' => array() -), -'gov' => array('act' => array(), -'nt' => array(), -'qld' => array(), -'sa' => array(), -'tas' => array(), -'vic' => array(), -'wa' => array() -), -'csiro' => array(), -'asn' => array(), -'id' => array(), -'info' => array(), -'conf' => array(), -'oz' => array(), -'act' => array(), -'nsw' => array(), -'nt' => array(), -'qld' => array(), -'sa' => array(), -'tas' => array(), -'vic' => array(), -'wa' => array() -), -'aw' => array('com' => array() -), -'ax' => array(), -'az' => array('com' => array(), -'net' => array(), -'int' => array(), -'gov' => array(), -'org' => array(), -'edu' => array(), -'info' => array(), -'pp' => array(), -'mil' => array(), -'name' => array(), -'pro' => array(), -'biz' => array() -), -'ba' => array('org' => array(), -'net' => array(), -'edu' => array(), -'gov' => array(), -'mil' => array(), -'unsa' => array(), -'unbi' => array(), -'co' => array(), -'com' => array(), -'rs' => array() -), -'bb' => array('biz' => array(), -'com' => array(), -'edu' => array(), -'gov' => array(), -'info' => array(), -'net' => array(), -'org' => array(), -'store' => array() -), -'bd' => array('*' => array() -), -'be' => array('ac' => array() -), -'bf' => array('gov' => array() -), -'bg' => array('a' => array(), -'b' => array(), -'c' => array(), -'d' => array(), -'e' => array(), -'f' => array(), -'g' => array(), -'h' => array(), -'i' => array(), -'j' => array(), -'k' => array(), -'l' => array(), -'m' => array(), -'n' => array(), -'o' => array(), -'p' => array(), -'q' => array(), -'r' => array(), -'s' => array(), -'t' => array(), -'u' => array(), -'v' => array(), -'w' => array(), -'x' => array(), -'y' => array(), -'z' => array(), -'0' => array(), -'1' => array(), -'2' => array(), -'3' => array(), -'4' => array(), -'5' => array(), -'6' => array(), -'7' => array(), -'8' => array(), -'9' => array() -), -'bh' => array('com' => array(), -'edu' => array(), -'net' => array(), -'org' => array(), -'gov' => array() -), -'bi' => array('co' => array(), -'com' => array(), -'edu' => array(), -'or' => array(), -'org' => array() -), -'biz' => array('dyndns' => array(), -'for-better' => array(), -'for-more' => array(), -'for-some' => array(), -'for-the' => array(), -'selfip' => array(), -'webhop' => array() -), -'bj' => array('asso' => array(), -'barreau' => array(), -'gouv' => array() -), -'bm' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'net' => array(), -'org' => array() -), -'bn' => array('*' => array() -), -'bo' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'gob' => array(), -'int' => array(), -'org' => array(), -'net' => array(), -'mil' => array(), -'tv' => array() -), -'br' => array('adm' => array(), -'adv' => array(), -'agr' => array(), -'am' => array(), -'arq' => array(), -'art' => array(), -'ato' => array(), -'b' => array(), -'bio' => array(), -'blog' => array(), -'bmd' => array(), -'cim' => array(), -'cng' => array(), -'cnt' => array(), -'com' => array(), -'coop' => array(), -'ecn' => array(), -'eco' => array(), -'edu' => array(), -'emp' => array(), -'eng' => array(), -'esp' => array(), -'etc' => array(), -'eti' => array(), -'far' => array(), -'flog' => array(), -'fm' => array(), -'fnd' => array(), -'fot' => array(), -'fst' => array(), -'g12' => array(), -'ggf' => array(), -'gov' => array(), -'imb' => array(), -'ind' => array(), -'inf' => array(), -'jor' => array(), -'jus' => array(), -'leg' => array(), -'lel' => array(), -'mat' => array(), -'med' => array(), -'mil' => array(), -'mus' => array(), -'net' => array(), -'nom' => array(), -'not' => array(), -'ntr' => array(), -'odo' => array(), -'org' => array(), -'ppg' => array(), -'pro' => array(), -'psc' => array(), -'psi' => array(), -'qsl' => array(), -'radio' => array(), -'rec' => array(), -'slg' => array(), -'srv' => array(), -'taxi' => array(), -'teo' => array(), -'tmp' => array(), -'trd' => array(), -'tur' => array(), -'tv' => array(), -'vet' => array(), -'vlog' => array(), -'wiki' => array(), -'zlg' => array() -), -'bs' => array('com' => array(), -'net' => array(), -'org' => array(), -'edu' => array(), -'gov' => array() -), -'bt' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'net' => array(), -'org' => array() -), -'bw' => array('co' => array(), -'org' => array() -), -'by' => array('gov' => array(), -'mil' => array(), -'com' => array(), -'of' => array() -), -'bz' => array('com' => array(), -'net' => array(), -'org' => array(), -'edu' => array(), -'gov' => array() -), -'ca' => array('ab' => array(), -'bc' => array(), -'mb' => array(), -'nb' => array(), -'nf' => array(), -'nl' => array(), -'ns' => array(), -'nt' => array(), -'nu' => array(), -'on' => array(), -'pe' => array(), -'qc' => array(), -'sk' => array(), -'yk' => array(), -'gc' => array(), -'co' => array() -), -'cat' => array(), -'cc' => array('ftpaccess' => array(), -'game-server' => array(), -'myphotos' => array(), -'scrapping' => array() -), -'cd' => array('gov' => array() -), -'cf' => array(), -'cg' => array(), -'ch' => array(), -'ci' => array('org' => array(), -'or' => array(), -'com' => array(), -'co' => array(), -'edu' => array(), -'ed' => array(), -'ac' => array(), -'net' => array(), -'go' => array(), -'asso' => array(), -'aéroport' => array(), -'int' => array(), -'presse' => array(), -'md' => array(), -'gouv' => array() -), -'ck' => array('*' => array(), -'www' => array('!' => '' -) -), -'cl' => array('gov' => array(), -'gob' => array(), -'co' => array(), -'mil' => array() -), -'cm' => array('gov' => array() -), -'cn' => array('ac' => array(), -'com' => array(), -'edu' => array(), -'gov' => array(), -'net' => array(), -'org' => array(), -'mil' => array(), -'公司' => array(), -'网络' => array(), -'網絡' => array(), -'ah' => array(), -'bj' => array(), -'cq' => array(), -'fj' => array(), -'gd' => array(), -'gs' => array(), -'gz' => array(), -'gx' => array(), -'ha' => array(), -'hb' => array(), -'he' => array(), -'hi' => array(), -'hl' => array(), -'hn' => array(), -'jl' => array(), -'js' => array(), -'jx' => array(), -'ln' => array(), -'nm' => array(), -'nx' => array(), -'qh' => array(), -'sc' => array(), -'sd' => array(), -'sh' => array(), -'sn' => array(), -'sx' => array(), -'tj' => array(), -'xj' => array(), -'xz' => array(), -'yn' => array(), -'zj' => array(), -'hk' => array(), -'mo' => array(), -'tw' => array() -), -'co' => array('arts' => array(), -'com' => array(), -'edu' => array(), -'firm' => array(), -'gov' => array(), -'info' => array(), -'int' => array(), -'mil' => array(), -'net' => array(), -'nom' => array(), -'org' => array(), -'rec' => array(), -'web' => array() -), -'com' => array('ar' => array(), -'br' => array(), -'cn' => array(), -'de' => array(), -'eu' => array(), -'gb' => array(), -'gr' => array(), -'hu' => array(), -'jpn' => array(), -'kr' => array(), -'no' => array(), -'qc' => array(), -'ru' => array(), -'sa' => array(), -'se' => array(), -'uk' => array(), -'us' => array(), -'uy' => array(), -'za' => array(), -'operaunite' => array(), -'appspot' => array(), -'dreamhosters' => array(), -'dyndns-at-home' => array(), -'dyndns-at-work' => array(), -'dyndns-blog' => array(), -'dyndns-free' => array(), -'dyndns-home' => array(), -'dyndns-ip' => array(), -'dyndns-mail' => array(), -'dyndns-office' => array(), -'dyndns-pics' => array(), -'dyndns-remote' => array(), -'dyndns-server' => array(), -'dyndns-web' => array(), -'dyndns-wiki' => array(), -'dyndns-work' => array(), -'blogdns' => array(), -'cechire' => array(), -'dnsalias' => array(), -'dnsdojo' => array(), -'doesntexist' => array(), -'dontexist' => array(), -'doomdns' => array(), -'dyn-o-saur' => array(), -'dynalias' => array(), -'est-a-la-maison' => array(), -'est-a-la-masion' => array(), -'est-le-patron' => array(), -'est-mon-blogueur' => array(), -'from-ak' => array(), -'from-al' => array(), -'from-ar' => array(), -'from-ca' => array(), -'from-ct' => array(), -'from-dc' => array(), -'from-de' => array(), -'from-fl' => array(), -'from-ga' => array(), -'from-hi' => array(), -'from-ia' => array(), -'from-id' => array(), -'from-il' => array(), -'from-in' => array(), -'from-ks' => array(), -'from-ky' => array(), -'from-ma' => array(), -'from-md' => array(), -'from-mi' => array(), -'from-mn' => array(), -'from-mo' => array(), -'from-ms' => array(), -'from-mt' => array(), -'from-nc' => array(), -'from-nd' => array(), -'from-ne' => array(), -'from-nh' => array(), -'from-nj' => array(), -'from-nm' => array(), -'from-nv' => array(), -'from-oh' => array(), -'from-ok' => array(), -'from-or' => array(), -'from-pa' => array(), -'from-pr' => array(), -'from-ri' => array(), -'from-sc' => array(), -'from-sd' => array(), -'from-tn' => array(), -'from-tx' => array(), -'from-ut' => array(), -'from-va' => array(), -'from-vt' => array(), -'from-wa' => array(), -'from-wi' => array(), -'from-wv' => array(), -'from-wy' => array(), -'getmyip' => array(), -'gotdns' => array(), -'hobby-site' => array(), -'homelinux' => array(), -'homeunix' => array(), -'iamallama' => array(), -'is-a-anarchist' => array(), -'is-a-blogger' => array(), -'is-a-bookkeeper' => array(), -'is-a-bulls-fan' => array(), -'is-a-caterer' => array(), -'is-a-chef' => array(), -'is-a-conservative' => array(), -'is-a-cpa' => array(), -'is-a-cubicle-slave' => array(), -'is-a-democrat' => array(), -'is-a-designer' => array(), -'is-a-doctor' => array(), -'is-a-financialadvisor' => array(), -'is-a-geek' => array(), -'is-a-green' => array(), -'is-a-guru' => array(), -'is-a-hard-worker' => array(), -'is-a-hunter' => array(), -'is-a-landscaper' => array(), -'is-a-lawyer' => array(), -'is-a-liberal' => array(), -'is-a-libertarian' => array(), -'is-a-llama' => array(), -'is-a-musician' => array(), -'is-a-nascarfan' => array(), -'is-a-nurse' => array(), -'is-a-painter' => array(), -'is-a-personaltrainer' => array(), -'is-a-photographer' => array(), -'is-a-player' => array(), -'is-a-republican' => array(), -'is-a-rockstar' => array(), -'is-a-socialist' => array(), -'is-a-student' => array(), -'is-a-teacher' => array(), -'is-a-techie' => array(), -'is-a-therapist' => array(), -'is-an-accountant' => array(), -'is-an-actor' => array(), -'is-an-actress' => array(), -'is-an-anarchist' => array(), -'is-an-artist' => array(), -'is-an-engineer' => array(), -'is-an-entertainer' => array(), -'is-certified' => array(), -'is-gone' => array(), -'is-into-anime' => array(), -'is-into-cars' => array(), -'is-into-cartoons' => array(), -'is-into-games' => array(), -'is-leet' => array(), -'is-not-certified' => array(), -'is-slick' => array(), -'is-uberleet' => array(), -'is-with-theband' => array(), -'isa-geek' => array(), -'isa-hockeynut' => array(), -'issmarterthanyou' => array(), -'likes-pie' => array(), -'likescandy' => array(), -'neat-url' => array(), -'saves-the-whales' => array(), -'selfip' => array(), -'sells-for-less' => array(), -'sells-for-u' => array(), -'servebbs' => array(), -'simple-url' => array(), -'space-to-rent' => array(), -'teaches-yoga' => array(), -'writesthisblog' => array() -), -'coop' => array(), -'cr' => array('ac' => array(), -'co' => array(), -'ed' => array(), -'fi' => array(), -'go' => array(), -'or' => array(), -'sa' => array() -), -'cu' => array('com' => array(), -'edu' => array(), -'org' => array(), -'net' => array(), -'gov' => array(), -'inf' => array() -), -'cv' => array(), -'cx' => array('gov' => array(), -'ath' => array() -), -'cy' => array('*' => array() -), -'cz' => array(), -'de' => array('com' => array(), -'fuettertdasnetz' => array(), -'isteingeek' => array(), -'istmein' => array(), -'lebtimnetz' => array(), -'leitungsen' => array(), -'traeumtgerade' => array() -), -'dj' => array(), -'dk' => array(), -'dm' => array('com' => array(), -'net' => array(), -'org' => array(), -'edu' => array(), -'gov' => array() -), -'do' => array('art' => array(), -'com' => array(), -'edu' => array(), -'gob' => array(), -'gov' => array(), -'mil' => array(), -'net' => array(), -'org' => array(), -'sld' => array(), -'web' => array() -), -'dz' => array('com' => array(), -'org' => array(), -'net' => array(), -'gov' => array(), -'edu' => array(), -'asso' => array(), -'pol' => array(), -'art' => array() -), -'ec' => array('com' => array(), -'info' => array(), -'net' => array(), -'fin' => array(), -'k12' => array(), -'med' => array(), -'pro' => array(), -'org' => array(), -'edu' => array(), -'gov' => array(), -'gob' => array(), -'mil' => array() -), -'edu' => array(), -'ee' => array('edu' => array(), -'gov' => array(), -'riik' => array(), -'lib' => array(), -'med' => array(), -'com' => array(), -'pri' => array(), -'aip' => array(), -'org' => array(), -'fie' => array() -), -'eg' => array('com' => array(), -'edu' => array(), -'eun' => array(), -'gov' => array(), -'mil' => array(), -'name' => array(), -'net' => array(), -'org' => array(), -'sci' => array() -), -'er' => array('*' => array() -), -'es' => array('com' => array(), -'nom' => array(), -'org' => array(), -'gob' => array(), -'edu' => array() -), -'et' => array('*' => array() -), -'eu' => array(), -'fi' => array('aland' => array(), -'iki' => array() -), -'fj' => array('*' => array() -), -'fk' => array('*' => array() -), -'fm' => array(), -'fo' => array(), -'fr' => array('com' => array(), -'asso' => array(), -'nom' => array(), -'prd' => array(), -'presse' => array(), -'tm' => array(), -'aeroport' => array(), -'assedic' => array(), -'avocat' => array(), -'avoues' => array(), -'cci' => array(), -'chambagri' => array(), -'chirurgiens-dentistes' => array(), -'experts-comptables' => array(), -'geometre-expert' => array(), -'gouv' => array(), -'greta' => array(), -'huissier-justice' => array(), -'medecin' => array(), -'notaires' => array(), -'pharmacien' => array(), -'port' => array(), -'veterinaire' => array() -), -'ga' => array(), -'gd' => array(), -'ge' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'org' => array(), -'mil' => array(), -'net' => array(), -'pvt' => array() -), -'gf' => array(), -'gg' => array('co' => array(), -'org' => array(), -'net' => array(), -'sch' => array(), -'gov' => array() -), -'gh' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'org' => array(), -'mil' => array() -), -'gi' => array('com' => array(), -'ltd' => array(), -'gov' => array(), -'mod' => array(), -'edu' => array(), -'org' => array() -), -'gl' => array(), -'gm' => array(), -'gn' => array('ac' => array(), -'com' => array(), -'edu' => array(), -'gov' => array(), -'org' => array(), -'net' => array() -), -'gov' => array(), -'gp' => array('com' => array(), -'net' => array(), -'mobi' => array(), -'edu' => array(), -'org' => array(), -'asso' => array() -), -'gq' => array(), -'gr' => array('com' => array(), -'edu' => array(), -'net' => array(), -'org' => array(), -'gov' => array() -), -'gs' => array(), -'gt' => array('*' => array(), -'www' => array('!' => '' -) -), -'gu' => array('*' => array() -), -'gw' => array(), -'gy' => array('co' => array(), -'com' => array(), -'net' => array() -), -'hk' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'idv' => array(), -'net' => array(), -'org' => array(), -'公司' => array(), -'教育' => array(), -'敎育' => array(), -'政府' => array(), -'個人' => array(), -'个人' => array(), -'箇人' => array(), -'網络' => array(), -'网络' => array(), -'组織' => array(), -'網絡' => array(), -'网絡' => array(), -'组织' => array(), -'組織' => array(), -'組织' => array() -), -'hm' => array(), -'hn' => array('com' => array(), -'edu' => array(), -'org' => array(), -'net' => array(), -'mil' => array(), -'gob' => array() -), -'hr' => array('iz' => array(), -'from' => array(), -'name' => array(), -'com' => array() -), -'ht' => array('com' => array(), -'shop' => array(), -'firm' => array(), -'info' => array(), -'adult' => array(), -'net' => array(), -'pro' => array(), -'org' => array(), -'med' => array(), -'art' => array(), -'coop' => array(), -'pol' => array(), -'asso' => array(), -'edu' => array(), -'rel' => array(), -'gouv' => array(), -'perso' => array() -), -'hu' => array('co' => array(), -'info' => array(), -'org' => array(), -'priv' => array(), -'sport' => array(), -'tm' => array(), -'2000' => array(), -'agrar' => array(), -'bolt' => array(), -'casino' => array(), -'city' => array(), -'erotica' => array(), -'erotika' => array(), -'film' => array(), -'forum' => array(), -'games' => array(), -'hotel' => array(), -'ingatlan' => array(), -'jogasz' => array(), -'konyvelo' => array(), -'lakas' => array(), -'media' => array(), -'news' => array(), -'reklam' => array(), -'sex' => array(), -'shop' => array(), -'suli' => array(), -'szex' => array(), -'tozsde' => array(), -'utazas' => array(), -'video' => array() -), -'id' => array('ac' => array(), -'co' => array(), -'go' => array(), -'mil' => array(), -'net' => array(), -'or' => array(), -'sch' => array(), -'web' => array() -), -'ie' => array('gov' => array() -), -'il' => array('*' => array() -), -'im' => array('co' => array('ltd' => array(), -'plc' => array() -), -'net' => array(), -'gov' => array(), -'org' => array(), -'nic' => array(), -'ac' => array() -), -'in' => array('co' => array(), -'firm' => array(), -'net' => array(), -'org' => array(), -'gen' => array(), -'ind' => array(), -'nic' => array(), -'ac' => array(), -'edu' => array(), -'res' => array(), -'gov' => array(), -'mil' => array() -), -'info' => array('dyndns' => array(), -'barrel-of-knowledge' => array(), -'barrell-of-knowledge' => array(), -'for-our' => array(), -'groks-the' => array(), -'groks-this' => array(), -'here-for-more' => array(), -'knowsitall' => array(), -'selfip' => array(), -'webhop' => array() -), -'int' => array('eu' => array() -), -'io' => array('com' => array() -), -'iq' => array('gov' => array(), -'edu' => array(), -'mil' => array(), -'com' => array(), -'org' => array(), -'net' => array() -), -'ir' => array('ac' => array(), -'co' => array(), -'gov' => array(), -'id' => array(), -'net' => array(), -'org' => array(), -'sch' => array(), -'ایران' => array(), -'ايران' => array() -), -'is' => array('net' => array(), -'com' => array(), -'edu' => array(), -'gov' => array(), -'org' => array(), -'int' => array() -), -'it' => array('gov' => array(), -'edu' => array(), -'agrigento' => array(), -'ag' => array(), -'alessandria' => array(), -'al' => array(), -'ancona' => array(), -'an' => array(), -'aosta' => array(), -'aoste' => array(), -'ao' => array(), -'arezzo' => array(), -'ar' => array(), -'ascoli-piceno' => array(), -'ascolipiceno' => array(), -'ap' => array(), -'asti' => array(), -'at' => array(), -'avellino' => array(), -'av' => array(), -'bari' => array(), -'ba' => array(), -'andria-barletta-trani' => array(), -'andriabarlettatrani' => array(), -'trani-barletta-andria' => array(), -'tranibarlettaandria' => array(), -'barletta-trani-andria' => array(), -'barlettatraniandria' => array(), -'andria-trani-barletta' => array(), -'andriatranibarletta' => array(), -'trani-andria-barletta' => array(), -'traniandriabarletta' => array(), -'bt' => array(), -'belluno' => array(), -'bl' => array(), -'benevento' => array(), -'bn' => array(), -'bergamo' => array(), -'bg' => array(), -'biella' => array(), -'bi' => array(), -'bologna' => array(), -'bo' => array(), -'bolzano' => array(), -'bozen' => array(), -'balsan' => array(), -'alto-adige' => array(), -'altoadige' => array(), -'suedtirol' => array(), -'bz' => array(), -'brescia' => array(), -'bs' => array(), -'brindisi' => array(), -'br' => array(), -'cagliari' => array(), -'ca' => array(), -'caltanissetta' => array(), -'cl' => array(), -'campobasso' => array(), -'cb' => array(), -'carboniaiglesias' => array(), -'carbonia-iglesias' => array(), -'iglesias-carbonia' => array(), -'iglesiascarbonia' => array(), -'ci' => array(), -'caserta' => array(), -'ce' => array(), -'catania' => array(), -'ct' => array(), -'catanzaro' => array(), -'cz' => array(), -'chieti' => array(), -'ch' => array(), -'como' => array(), -'co' => array(), -'cosenza' => array(), -'cs' => array(), -'cremona' => array(), -'cr' => array(), -'crotone' => array(), -'kr' => array(), -'cuneo' => array(), -'cn' => array(), -'dell-ogliastra' => array(), -'dellogliastra' => array(), -'ogliastra' => array(), -'og' => array(), -'enna' => array(), -'en' => array(), -'ferrara' => array(), -'fe' => array(), -'fermo' => array(), -'fm' => array(), -'firenze' => array(), -'florence' => array(), -'fi' => array(), -'foggia' => array(), -'fg' => array(), -'forli-cesena' => array(), -'forlicesena' => array(), -'cesena-forli' => array(), -'cesenaforli' => array(), -'fc' => array(), -'frosinone' => array(), -'fr' => array(), -'genova' => array(), -'genoa' => array(), -'ge' => array(), -'gorizia' => array(), -'go' => array(), -'grosseto' => array(), -'gr' => array(), -'imperia' => array(), -'im' => array(), -'isernia' => array(), -'is' => array(), -'laquila' => array(), -'aquila' => array(), -'aq' => array(), -'la-spezia' => array(), -'laspezia' => array(), -'sp' => array(), -'latina' => array(), -'lt' => array(), -'lecce' => array(), -'le' => array(), -'lecco' => array(), -'lc' => array(), -'livorno' => array(), -'li' => array(), -'lodi' => array(), -'lo' => array(), -'lucca' => array(), -'lu' => array(), -'macerata' => array(), -'mc' => array(), -'mantova' => array(), -'mn' => array(), -'massa-carrara' => array(), -'massacarrara' => array(), -'carrara-massa' => array(), -'carraramassa' => array(), -'ms' => array(), -'matera' => array(), -'mt' => array(), -'medio-campidano' => array(), -'mediocampidano' => array(), -'campidano-medio' => array(), -'campidanomedio' => array(), -'vs' => array(), -'messina' => array(), -'me' => array(), -'milano' => array(), -'milan' => array(), -'mi' => array(), -'modena' => array(), -'mo' => array(), -'monza' => array(), -'monza-brianza' => array(), -'monzabrianza' => array(), -'monzaebrianza' => array(), -'monzaedellabrianza' => array(), -'monza-e-della-brianza' => array(), -'mb' => array(), -'napoli' => array(), -'naples' => array(), -'na' => array(), -'novara' => array(), -'no' => array(), -'nuoro' => array(), -'nu' => array(), -'oristano' => array(), -'or' => array(), -'padova' => array(), -'padua' => array(), -'pd' => array(), -'palermo' => array(), -'pa' => array(), -'parma' => array(), -'pr' => array(), -'pavia' => array(), -'pv' => array(), -'perugia' => array(), -'pg' => array(), -'pescara' => array(), -'pe' => array(), -'pesaro-urbino' => array(), -'pesarourbino' => array(), -'urbino-pesaro' => array(), -'urbinopesaro' => array(), -'pu' => array(), -'piacenza' => array(), -'pc' => array(), -'pisa' => array(), -'pi' => array(), -'pistoia' => array(), -'pt' => array(), -'pordenone' => array(), -'pn' => array(), -'potenza' => array(), -'pz' => array(), -'prato' => array(), -'po' => array(), -'ragusa' => array(), -'rg' => array(), -'ravenna' => array(), -'ra' => array(), -'reggio-calabria' => array(), -'reggiocalabria' => array(), -'rc' => array(), -'reggio-emilia' => array(), -'reggioemilia' => array(), -'re' => array(), -'rieti' => array(), -'ri' => array(), -'rimini' => array(), -'rn' => array(), -'roma' => array(), -'rome' => array(), -'rm' => array(), -'rovigo' => array(), -'ro' => array(), -'salerno' => array(), -'sa' => array(), -'sassari' => array(), -'ss' => array(), -'savona' => array(), -'sv' => array(), -'siena' => array(), -'si' => array(), -'siracusa' => array(), -'sr' => array(), -'sondrio' => array(), -'so' => array(), -'taranto' => array(), -'ta' => array(), -'tempio-olbia' => array(), -'tempioolbia' => array(), -'olbia-tempio' => array(), -'olbiatempio' => array(), -'ot' => array(), -'teramo' => array(), -'te' => array(), -'terni' => array(), -'tr' => array(), -'torino' => array(), -'turin' => array(), -'to' => array(), -'trapani' => array(), -'tp' => array(), -'trento' => array(), -'trentino' => array(), -'tn' => array(), -'treviso' => array(), -'tv' => array(), -'trieste' => array(), -'ts' => array(), -'udine' => array(), -'ud' => array(), -'varese' => array(), -'va' => array(), -'venezia' => array(), -'venice' => array(), -'ve' => array(), -'verbania' => array(), -'vb' => array(), -'vercelli' => array(), -'vc' => array(), -'verona' => array(), -'vr' => array(), -'vibo-valentia' => array(), -'vibovalentia' => array(), -'vv' => array(), -'vicenza' => array(), -'vi' => array(), -'viterbo' => array(), -'vt' => array() -), -'je' => array('co' => array(), -'org' => array(), -'net' => array(), -'sch' => array(), -'gov' => array() -), -'jm' => array('*' => array() -), -'jo' => array('com' => array(), -'org' => array(), -'net' => array(), -'edu' => array(), -'sch' => array(), -'gov' => array(), -'mil' => array(), -'name' => array() -), -'jobs' => array(), -'jp' => array('ac' => array(), -'ad' => array(), -'co' => array(), -'ed' => array(), -'go' => array(), -'gr' => array(), -'lg' => array(), -'ne' => array(), -'or' => array(), -'aichi' => array('aisai' => array(), -'ama' => array(), -'anjo' => array(), -'asuke' => array(), -'chiryu' => array(), -'chita' => array(), -'fuso' => array(), -'gamagori' => array(), -'handa' => array(), -'hazu' => array(), -'hekinan' => array(), -'higashiura' => array(), -'ichinomiya' => array(), -'inazawa' => array(), -'inuyama' => array(), -'isshiki' => array(), -'iwakura' => array(), -'kanie' => array(), -'kariya' => array(), -'kasugai' => array(), -'kira' => array(), -'kiyosu' => array(), -'komaki' => array(), -'konan' => array(), -'kota' => array(), -'mihama' => array(), -'miyoshi' => array(), -'nagakute' => array(), -'nishio' => array(), -'nisshin' => array(), -'obu' => array(), -'oguchi' => array(), -'oharu' => array(), -'okazaki' => array(), -'owariasahi' => array(), -'seto' => array(), -'shikatsu' => array(), -'shinshiro' => array(), -'shitara' => array(), -'tahara' => array(), -'takahama' => array(), -'tobishima' => array(), -'toei' => array(), -'togo' => array(), -'tokai' => array(), -'tokoname' => array(), -'toyoake' => array(), -'toyohashi' => array(), -'toyokawa' => array(), -'toyone' => array(), -'toyota' => array(), -'tsushima' => array(), -'yatomi' => array() -), -'akita' => array('akita' => array(), -'daisen' => array(), -'fujisato' => array(), -'gojome' => array(), -'hachirogata' => array(), -'happou' => array(), -'higashinaruse' => array(), -'honjo' => array(), -'honjyo' => array(), -'ikawa' => array(), -'kamikoani' => array(), -'kamioka' => array(), -'katagami' => array(), -'kazuno' => array(), -'kitaakita' => array(), -'kosaka' => array(), -'kyowa' => array(), -'misato' => array(), -'mitane' => array(), -'moriyoshi' => array(), -'nikaho' => array(), -'noshiro' => array(), -'odate' => array(), -'oga' => array(), -'ogata' => array(), -'semboku' => array(), -'yokote' => array(), -'yurihonjo' => array() -), -'aomori' => array('aomori' => array(), -'gonohe' => array(), -'hachinohe' => array(), -'hashikami' => array(), -'hiranai' => array(), -'hirosaki' => array(), -'itayanagi' => array(), -'kuroishi' => array(), -'misawa' => array(), -'mutsu' => array(), -'nakadomari' => array(), -'noheji' => array(), -'oirase' => array(), -'owani' => array(), -'rokunohe' => array(), -'sannohe' => array(), -'shichinohe' => array(), -'shingo' => array(), -'takko' => array(), -'towada' => array(), -'tsugaru' => array(), -'tsuruta' => array() -), -'chiba' => array('abiko' => array(), -'asahi' => array(), -'chonan' => array(), -'chosei' => array(), -'choshi' => array(), -'chuo' => array(), -'funabashi' => array(), -'futtsu' => array(), -'hanamigawa' => array(), -'ichihara' => array(), -'ichikawa' => array(), -'ichinomiya' => array(), -'inzai' => array(), -'isumi' => array(), -'kamagaya' => array(), -'kamogawa' => array(), -'kashiwa' => array(), -'katori' => array(), -'katsuura' => array(), -'kimitsu' => array(), -'kisarazu' => array(), -'kozaki' => array(), -'kujukuri' => array(), -'kyonan' => array(), -'matsudo' => array(), -'midori' => array(), -'mihama' => array(), -'minamiboso' => array(), -'mobara' => array(), -'mutsuzawa' => array(), -'nagara' => array(), -'nagareyama' => array(), -'narashino' => array(), -'narita' => array(), -'noda' => array(), -'oamishirasato' => array(), -'omigawa' => array(), -'onjuku' => array(), -'otaki' => array(), -'sakae' => array(), -'sakura' => array(), -'shimofusa' => array(), -'shirako' => array(), -'shiroi' => array(), -'shisui' => array(), -'sodegaura' => array(), -'sosa' => array(), -'tako' => array(), -'tateyama' => array(), -'togane' => array(), -'tohnosho' => array(), -'tomisato' => array(), -'urayasu' => array(), -'yachimata' => array(), -'yachiyo' => array(), -'yokaichiba' => array(), -'yokoshibahikari' => array(), -'yotsukaido' => array() -), -'ehime' => array('ainan' => array(), -'honai' => array(), -'ikata' => array(), -'imabari' => array(), -'iyo' => array(), -'kamijima' => array(), -'kihoku' => array(), -'kumakogen' => array(), -'masaki' => array(), -'matsuno' => array(), -'matsuyama' => array(), -'namikata' => array(), -'niihama' => array(), -'ozu' => array(), -'saijo' => array(), -'seiyo' => array(), -'shikokuchuo' => array(), -'tobe' => array(), -'toon' => array(), -'uchiko' => array(), -'uwajima' => array(), -'yawatahama' => array() -), -'fukui' => array('echizen' => array(), -'eiheiji' => array(), -'fukui' => array(), -'ikeda' => array(), -'katsuyama' => array(), -'mihama' => array(), -'minamiechizen' => array(), -'obama' => array(), -'ohi' => array(), -'ono' => array(), -'sabae' => array(), -'sakai' => array(), -'takahama' => array(), -'tsuruga' => array(), -'wakasa' => array() -), -'fukuoka' => array('ashiya' => array(), -'buzen' => array(), -'chikugo' => array(), -'chikuho' => array(), -'chikujo' => array(), -'chikushino' => array(), -'chikuzen' => array(), -'chuo' => array(), -'dazaifu' => array(), -'fukuchi' => array(), -'hakata' => array(), -'higashi' => array(), -'hirokawa' => array(), -'hisayama' => array(), -'iizuka' => array(), -'inatsuki' => array(), -'kaho' => array(), -'kasuga' => array(), -'kasuya' => array(), -'kawara' => array(), -'keisen' => array(), -'koga' => array(), -'kurate' => array(), -'kurogi' => array(), -'kurume' => array(), -'minami' => array(), -'miyako' => array(), -'miyama' => array(), -'miyawaka' => array(), -'mizumaki' => array(), -'munakata' => array(), -'nakagawa' => array(), -'nakama' => array(), -'nishi' => array(), -'nogata' => array(), -'ogori' => array(), -'okagaki' => array(), -'okawa' => array(), -'oki' => array(), -'omuta' => array(), -'onga' => array(), -'onojo' => array(), -'oto' => array(), -'saigawa' => array(), -'sasaguri' => array(), -'shingu' => array(), -'shinyoshitomi' => array(), -'shonai' => array(), -'soeda' => array(), -'sue' => array(), -'tachiarai' => array(), -'tagawa' => array(), -'takata' => array(), -'toho' => array(), -'toyotsu' => array(), -'tsuiki' => array(), -'ukiha' => array(), -'umi' => array(), -'usui' => array(), -'yamada' => array(), -'yame' => array(), -'yanagawa' => array(), -'yukuhashi' => array() -), -'fukushima' => array('aizubange' => array(), -'aizumisato' => array(), -'aizuwakamatsu' => array(), -'asakawa' => array(), -'bandai' => array(), -'date' => array(), -'fukushima' => array(), -'furudono' => array(), -'futaba' => array(), -'hanawa' => array(), -'higashi' => array(), -'hirata' => array(), -'hirono' => array(), -'iitate' => array(), -'inawashiro' => array(), -'ishikawa' => array(), -'iwaki' => array(), -'izumizaki' => array(), -'kagamiishi' => array(), -'kaneyama' => array(), -'kawamata' => array(), -'kitakata' => array(), -'kitashiobara' => array(), -'koori' => array(), -'koriyama' => array(), -'kunimi' => array(), -'miharu' => array(), -'mishima' => array(), -'namie' => array(), -'nango' => array(), -'nishiaizu' => array(), -'nishigo' => array(), -'okuma' => array(), -'omotego' => array(), -'ono' => array(), -'otama' => array(), -'samegawa' => array(), -'shimogo' => array(), -'shirakawa' => array(), -'showa' => array(), -'soma' => array(), -'sukagawa' => array(), -'taishin' => array(), -'tamakawa' => array(), -'tanagura' => array(), -'tenei' => array(), -'yabuki' => array(), -'yamato' => array(), -'yamatsuri' => array(), -'yanaizu' => array(), -'yugawa' => array() -), -'gifu' => array('anpachi' => array(), -'ena' => array(), -'gifu' => array(), -'ginan' => array(), -'godo' => array(), -'gujo' => array(), -'hashima' => array(), -'hichiso' => array(), -'hida' => array(), -'higashishirakawa' => array(), -'ibigawa' => array(), -'ikeda' => array(), -'kakamigahara' => array(), -'kani' => array(), -'kasahara' => array(), -'kasamatsu' => array(), -'kawaue' => array(), -'kitagata' => array(), -'mino' => array(), -'minokamo' => array(), -'mitake' => array(), -'mizunami' => array(), -'motosu' => array(), -'nakatsugawa' => array(), -'ogaki' => array(), -'sakahogi' => array(), -'seki' => array(), -'sekigahara' => array(), -'shirakawa' => array(), -'tajimi' => array(), -'takayama' => array(), -'tarui' => array(), -'toki' => array(), -'tomika' => array(), -'wanouchi' => array(), -'yamagata' => array(), -'yaotsu' => array(), -'yoro' => array() -), -'gunma' => array('annaka' => array(), -'chiyoda' => array(), -'fujioka' => array(), -'higashiagatsuma' => array(), -'isesaki' => array(), -'itakura' => array(), -'kanna' => array(), -'kanra' => array(), -'katashina' => array(), -'kawaba' => array(), -'kiryu' => array(), -'kusatsu' => array(), -'maebashi' => array(), -'meiwa' => array(), -'midori' => array(), -'minakami' => array(), -'naganohara' => array(), -'nakanojo' => array(), -'nanmoku' => array(), -'numata' => array(), -'oizumi' => array(), -'ora' => array(), -'ota' => array(), -'shibukawa' => array(), -'shimonita' => array(), -'shinto' => array(), -'showa' => array(), -'takasaki' => array(), -'takayama' => array(), -'tamamura' => array(), -'tatebayashi' => array(), -'tomioka' => array(), -'tsukiyono' => array(), -'tsumagoi' => array(), -'ueno' => array(), -'yoshioka' => array() -), -'hiroshima' => array('asaminami' => array(), -'daiwa' => array(), -'etajima' => array(), -'fuchu' => array(), -'fukuyama' => array(), -'hatsukaichi' => array(), -'higashihiroshima' => array(), -'hongo' => array(), -'jinsekikogen' => array(), -'kaita' => array(), -'kui' => array(), -'kumano' => array(), -'kure' => array(), -'mihara' => array(), -'miyoshi' => array(), -'naka' => array(), -'onomichi' => array(), -'osakikamijima' => array(), -'otake' => array(), -'saka' => array(), -'sera' => array(), -'seranishi' => array(), -'shinichi' => array(), -'shobara' => array(), -'takehara' => array() -), -'hokkaido' => array('abashiri' => array(), -'abira' => array(), -'aibetsu' => array(), -'akabira' => array(), -'akkeshi' => array(), -'asahikawa' => array(), -'ashibetsu' => array(), -'ashoro' => array(), -'assabu' => array(), -'atsuma' => array(), -'bibai' => array(), -'biei' => array(), -'bifuka' => array(), -'bihoro' => array(), -'biratori' => array(), -'chippubetsu' => array(), -'chitose' => array(), -'date' => array(), -'ebetsu' => array(), -'embetsu' => array(), -'eniwa' => array(), -'erimo' => array(), -'esan' => array(), -'esashi' => array(), -'fukagawa' => array(), -'fukushima' => array(), -'furano' => array(), -'furubira' => array(), -'haboro' => array(), -'hakodate' => array(), -'hamatonbetsu' => array(), -'hidaka' => array(), -'higashikagura' => array(), -'higashikawa' => array(), -'hiroo' => array(), -'hokuryu' => array(), -'hokuto' => array(), -'honbetsu' => array(), -'horokanai' => array(), -'horonobe' => array(), -'ikeda' => array(), -'imakane' => array(), -'ishikari' => array(), -'iwamizawa' => array(), -'iwanai' => array(), -'kamifurano' => array(), -'kamikawa' => array(), -'kamishihoro' => array(), -'kamisunagawa' => array(), -'kamoenai' => array(), -'kayabe' => array(), -'kembuchi' => array(), -'kikonai' => array(), -'kimobetsu' => array(), -'kitahiroshima' => array(), -'kitami' => array(), -'kiyosato' => array(), -'koshimizu' => array(), -'kunneppu' => array(), -'kuriyama' => array(), -'kuromatsunai' => array(), -'kushiro' => array(), -'kutchan' => array(), -'kyowa' => array(), -'mashike' => array(), -'matsumae' => array(), -'mikasa' => array(), -'minamifurano' => array(), -'mombetsu' => array(), -'moseushi' => array(), -'mukawa' => array(), -'muroran' => array(), -'naie' => array(), -'nakagawa' => array(), -'nakasatsunai' => array(), -'nakatombetsu' => array(), -'nanae' => array(), -'nanporo' => array(), -'nayoro' => array(), -'nemuro' => array(), -'niikappu' => array(), -'niki' => array(), -'nishiokoppe' => array(), -'noboribetsu' => array(), -'numata' => array(), -'obihiro' => array(), -'obira' => array(), -'oketo' => array(), -'okoppe' => array(), -'otaru' => array(), -'otobe' => array(), -'otofuke' => array(), -'otoineppu' => array(), -'oumu' => array(), -'ozora' => array(), -'pippu' => array(), -'rankoshi' => array(), -'rebun' => array(), -'rikubetsu' => array(), -'rishiri' => array(), -'rishirifuji' => array(), -'saroma' => array(), -'sarufutsu' => array(), -'shakotan' => array(), -'shari' => array(), -'shibecha' => array(), -'shibetsu' => array(), -'shikabe' => array(), -'shikaoi' => array(), -'shimamaki' => array(), -'shimizu' => array(), -'shimokawa' => array(), -'shinshinotsu' => array(), -'shintoku' => array(), -'shiranuka' => array(), -'shiraoi' => array(), -'shiriuchi' => array(), -'sobetsu' => array(), -'sunagawa' => array(), -'taiki' => array(), -'takasu' => array(), -'takikawa' => array(), -'takinoue' => array(), -'teshikaga' => array(), -'tobetsu' => array(), -'tohma' => array(), -'tomakomai' => array(), -'tomari' => array(), -'toya' => array(), -'toyako' => array(), -'toyotomi' => array(), -'toyoura' => array(), -'tsubetsu' => array(), -'tsukigata' => array(), -'urakawa' => array(), -'urausu' => array(), -'uryu' => array(), -'utashinai' => array(), -'wakkanai' => array(), -'wassamu' => array(), -'yakumo' => array(), -'yoichi' => array() -), -'hyogo' => array('aioi' => array(), -'akashi' => array(), -'ako' => array(), -'amagasaki' => array(), -'aogaki' => array(), -'asago' => array(), -'ashiya' => array(), -'awaji' => array(), -'fukusaki' => array(), -'goshiki' => array(), -'harima' => array(), -'himeji' => array(), -'ichikawa' => array(), -'inagawa' => array(), -'itami' => array(), -'kakogawa' => array(), -'kamigori' => array(), -'kamikawa' => array(), -'kasai' => array(), -'kasuga' => array(), -'kawanishi' => array(), -'miki' => array(), -'minamiawaji' => array(), -'nishinomiya' => array(), -'nishiwaki' => array(), -'ono' => array(), -'sanda' => array(), -'sannan' => array(), -'sasayama' => array(), -'sayo' => array(), -'shingu' => array(), -'shinonsen' => array(), -'shiso' => array(), -'sumoto' => array(), -'taishi' => array(), -'taka' => array(), -'takarazuka' => array(), -'takasago' => array(), -'takino' => array(), -'tamba' => array(), -'tatsuno' => array(), -'toyooka' => array(), -'yabu' => array(), -'yashiro' => array(), -'yoka' => array(), -'yokawa' => array() -), -'ibaraki' => array('ami' => array(), -'asahi' => array(), -'bando' => array(), -'chikusei' => array(), -'daigo' => array(), -'fujishiro' => array(), -'hitachi' => array(), -'hitachinaka' => array(), -'hitachiomiya' => array(), -'hitachiota' => array(), -'ibaraki' => array(), -'ina' => array(), -'inashiki' => array(), -'itako' => array(), -'iwama' => array(), -'joso' => array(), -'kamisu' => array(), -'kasama' => array(), -'kashima' => array(), -'kasumigaura' => array(), -'koga' => array(), -'miho' => array(), -'mito' => array(), -'moriya' => array(), -'naka' => array(), -'namegata' => array(), -'oarai' => array(), -'ogawa' => array(), -'omitama' => array(), -'ryugasaki' => array(), -'sakai' => array(), -'sakuragawa' => array(), -'shimodate' => array(), -'shimotsuma' => array(), -'shirosato' => array(), -'sowa' => array(), -'suifu' => array(), -'takahagi' => array(), -'tamatsukuri' => array(), -'tokai' => array(), -'tomobe' => array(), -'tone' => array(), -'toride' => array(), -'tsuchiura' => array(), -'tsukuba' => array(), -'uchihara' => array(), -'ushiku' => array(), -'yachiyo' => array(), -'yamagata' => array(), -'yawara' => array(), -'yuki' => array() -), -'ishikawa' => array('anamizu' => array(), -'hakui' => array(), -'hakusan' => array(), -'kaga' => array(), -'kahoku' => array(), -'kanazawa' => array(), -'kawakita' => array(), -'komatsu' => array(), -'nakanoto' => array(), -'nanao' => array(), -'nomi' => array(), -'nonoichi' => array(), -'noto' => array(), -'shika' => array(), -'suzu' => array(), -'tsubata' => array(), -'tsurugi' => array(), -'uchinada' => array(), -'wajima' => array() -), -'iwate' => array('fudai' => array(), -'fujisawa' => array(), -'hanamaki' => array(), -'hiraizumi' => array(), -'hirono' => array(), -'ichinohe' => array(), -'ichinoseki' => array(), -'iwaizumi' => array(), -'iwate' => array(), -'joboji' => array(), -'kamaishi' => array(), -'kanegasaki' => array(), -'karumai' => array(), -'kawai' => array(), -'kitakami' => array(), -'kuji' => array(), -'kunohe' => array(), -'kuzumaki' => array(), -'miyako' => array(), -'mizusawa' => array(), -'morioka' => array(), -'ninohe' => array(), -'noda' => array(), -'ofunato' => array(), -'oshu' => array(), -'otsuchi' => array(), -'rikuzentakata' => array(), -'shiwa' => array(), -'shizukuishi' => array(), -'sumita' => array(), -'takizawa' => array(), -'tanohata' => array(), -'tono' => array(), -'yahaba' => array(), -'yamada' => array() -), -'kagawa' => array('ayagawa' => array(), -'higashikagawa' => array(), -'kanonji' => array(), -'kotohira' => array(), -'manno' => array(), -'marugame' => array(), -'mitoyo' => array(), -'naoshima' => array(), -'sanuki' => array(), -'tadotsu' => array(), -'takamatsu' => array(), -'tonosho' => array(), -'uchinomi' => array(), -'utazu' => array(), -'zentsuji' => array() -), -'kagoshima' => array('akune' => array(), -'amami' => array(), -'hioki' => array(), -'isa' => array(), -'isen' => array(), -'izumi' => array(), -'kagoshima' => array(), -'kanoya' => array(), -'kawanabe' => array(), -'kinko' => array(), -'kouyama' => array(), -'makurazaki' => array(), -'matsumoto' => array(), -'minamitane' => array(), -'nakatane' => array(), -'nishinoomote' => array(), -'satsumasendai' => array(), -'soo' => array(), -'tarumizu' => array(), -'yusui' => array() -), -'kanagawa' => array('aikawa' => array(), -'atsugi' => array(), -'ayase' => array(), -'chigasaki' => array(), -'ebina' => array(), -'fujisawa' => array(), -'hadano' => array(), -'hakone' => array(), -'hiratsuka' => array(), -'isehara' => array(), -'kaisei' => array(), -'kamakura' => array(), -'kiyokawa' => array(), -'matsuda' => array(), -'minamiashigara' => array(), -'miura' => array(), -'nakai' => array(), -'ninomiya' => array(), -'odawara' => array(), -'oi' => array(), -'oiso' => array(), -'sagamihara' => array(), -'samukawa' => array(), -'tsukui' => array(), -'yamakita' => array(), -'yamato' => array(), -'yokosuka' => array(), -'yugawara' => array(), -'zama' => array(), -'zushi' => array() -), -'kochi' => array('aki' => array(), -'geisei' => array(), -'hidaka' => array(), -'higashitsuno' => array(), -'ino' => array(), -'kagami' => array(), -'kami' => array(), -'kitagawa' => array(), -'kochi' => array(), -'mihara' => array(), -'motoyama' => array(), -'muroto' => array(), -'nahari' => array(), -'nakamura' => array(), -'nankoku' => array(), -'nishitosa' => array(), -'niyodogawa' => array(), -'ochi' => array(), -'okawa' => array(), -'otoyo' => array(), -'otsuki' => array(), -'sakawa' => array(), -'sukumo' => array(), -'susaki' => array(), -'tosa' => array(), -'tosashimizu' => array(), -'toyo' => array(), -'tsuno' => array(), -'umaji' => array(), -'yasuda' => array(), -'yusuhara' => array() -), -'kumamoto' => array('amakusa' => array(), -'arao' => array(), -'aso' => array(), -'choyo' => array(), -'gyokuto' => array(), -'hitoyoshi' => array(), -'kamiamakusa' => array(), -'kashima' => array(), -'kikuchi' => array(), -'kosa' => array(), -'kumamoto' => array(), -'mashiki' => array(), -'mifune' => array(), -'minamata' => array(), -'minamioguni' => array(), -'nagasu' => array(), -'nishihara' => array(), -'oguni' => array(), -'ozu' => array(), -'sumoto' => array(), -'takamori' => array(), -'uki' => array(), -'uto' => array(), -'yamaga' => array(), -'yamato' => array(), -'yatsushiro' => array() -), -'kyoto' => array('ayabe' => array(), -'fukuchiyama' => array(), -'higashiyama' => array(), -'ide' => array(), -'ine' => array(), -'joyo' => array(), -'kameoka' => array(), -'kamo' => array(), -'kita' => array(), -'kizu' => array(), -'kumiyama' => array(), -'kyotamba' => array(), -'kyotanabe' => array(), -'kyotango' => array(), -'maizuru' => array(), -'minami' => array(), -'minamiyamashiro' => array(), -'miyazu' => array(), -'muko' => array(), -'nagaokakyo' => array(), -'nakagyo' => array(), -'nantan' => array(), -'oyamazaki' => array(), -'sakyo' => array(), -'seika' => array(), -'tanabe' => array(), -'uji' => array(), -'ujitawara' => array(), -'wazuka' => array(), -'yamashina' => array(), -'yawata' => array() -), -'mie' => array('asahi' => array(), -'inabe' => array(), -'ise' => array(), -'kameyama' => array(), -'kawagoe' => array(), -'kiho' => array(), -'kisosaki' => array(), -'kiwa' => array(), -'komono' => array(), -'kumano' => array(), -'kuwana' => array(), -'matsusaka' => array(), -'meiwa' => array(), -'mihama' => array(), -'minamiise' => array(), -'misugi' => array(), -'miyama' => array(), -'nabari' => array(), -'shima' => array(), -'suzuka' => array(), -'tado' => array(), -'taiki' => array(), -'taki' => array(), -'tamaki' => array(), -'toba' => array(), -'tsu' => array(), -'udono' => array(), -'ureshino' => array(), -'watarai' => array(), -'yokkaichi' => array() -), -'miyagi' => array('furukawa' => array(), -'higashimatsushima' => array(), -'ishinomaki' => array(), -'iwanuma' => array(), -'kakuda' => array(), -'kami' => array(), -'kawasaki' => array(), -'kesennuma' => array(), -'marumori' => array(), -'matsushima' => array(), -'minamisanriku' => array(), -'misato' => array(), -'murata' => array(), -'natori' => array(), -'ogawara' => array(), -'ohira' => array(), -'onagawa' => array(), -'osaki' => array(), -'rifu' => array(), -'semine' => array(), -'shibata' => array(), -'shichikashuku' => array(), -'shikama' => array(), -'shiogama' => array(), -'shiroishi' => array(), -'tagajo' => array(), -'taiwa' => array(), -'tome' => array(), -'tomiya' => array(), -'wakuya' => array(), -'watari' => array(), -'yamamoto' => array(), -'zao' => array() -), -'miyazaki' => array('aya' => array(), -'ebino' => array(), -'gokase' => array(), -'hyuga' => array(), -'kadogawa' => array(), -'kawaminami' => array(), -'kijo' => array(), -'kitagawa' => array(), -'kitakata' => array(), -'kitaura' => array(), -'kobayashi' => array(), -'kunitomi' => array(), -'kushima' => array(), -'mimata' => array(), -'miyakonojo' => array(), -'miyazaki' => array(), -'morotsuka' => array(), -'nichinan' => array(), -'nishimera' => array(), -'nobeoka' => array(), -'saito' => array(), -'shiiba' => array(), -'shintomi' => array(), -'takaharu' => array(), -'takanabe' => array(), -'takazaki' => array(), -'tsuno' => array() -), -'nagano' => array('achi' => array(), -'agematsu' => array(), -'anan' => array(), -'aoki' => array(), -'asahi' => array(), -'azumino' => array(), -'chikuhoku' => array(), -'chikuma' => array(), -'chino' => array(), -'fujimi' => array(), -'hakuba' => array(), -'hara' => array(), -'hiraya' => array(), -'iida' => array(), -'iijima' => array(), -'iiyama' => array(), -'iizuna' => array(), -'ikeda' => array(), -'ikusaka' => array(), -'ina' => array(), -'karuizawa' => array(), -'kawakami' => array(), -'kiso' => array(), -'kisofukushima' => array(), -'kitaaiki' => array(), -'komagane' => array(), -'komoro' => array(), -'matsukawa' => array(), -'matsumoto' => array(), -'miasa' => array(), -'minamiaiki' => array(), -'minamimaki' => array(), -'minamiminowa' => array(), -'minowa' => array(), -'miyada' => array(), -'miyota' => array(), -'mochizuki' => array(), -'nagano' => array(), -'nagawa' => array(), -'nagiso' => array(), -'nakagawa' => array(), -'nakano' => array(), -'nozawaonsen' => array(), -'obuse' => array(), -'ogawa' => array(), -'okaya' => array(), -'omachi' => array(), -'omi' => array(), -'ookuwa' => array(), -'ooshika' => array(), -'otaki' => array(), -'otari' => array(), -'sakae' => array(), -'sakaki' => array(), -'saku' => array(), -'sakuho' => array(), -'shimosuwa' => array(), -'shinanomachi' => array(), -'shiojiri' => array(), -'suwa' => array(), -'suzaka' => array(), -'takagi' => array(), -'takamori' => array(), -'takayama' => array(), -'tateshina' => array(), -'tatsuno' => array(), -'togakushi' => array(), -'togura' => array(), -'tomi' => array(), -'ueda' => array(), -'wada' => array(), -'yamagata' => array(), -'yamanouchi' => array(), -'yasaka' => array(), -'yasuoka' => array() -), -'nagasaki' => array('chijiwa' => array(), -'futsu' => array(), -'goto' => array(), -'hasami' => array(), -'hirado' => array(), -'iki' => array(), -'isahaya' => array(), -'kawatana' => array(), -'kuchinotsu' => array(), -'matsuura' => array(), -'nagasaki' => array(), -'obama' => array(), -'omura' => array(), -'oseto' => array(), -'saikai' => array(), -'sasebo' => array(), -'seihi' => array(), -'shimabara' => array(), -'shinkamigoto' => array(), -'togitsu' => array(), -'tsushima' => array(), -'unzen' => array() -), -'nara' => array('ando' => array(), -'gose' => array(), -'heguri' => array(), -'higashiyoshino' => array(), -'ikaruga' => array(), -'ikoma' => array(), -'kamikitayama' => array(), -'kanmaki' => array(), -'kashiba' => array(), -'kashihara' => array(), -'katsuragi' => array(), -'kawai' => array(), -'kawakami' => array(), -'kawanishi' => array(), -'koryo' => array(), -'kurotaki' => array(), -'mitsue' => array(), -'miyake' => array(), -'nara' => array(), -'nosegawa' => array(), -'oji' => array(), -'ouda' => array(), -'oyodo' => array(), -'sakurai' => array(), -'sango' => array(), -'shimoichi' => array(), -'shimokitayama' => array(), -'shinjo' => array(), -'soni' => array(), -'takatori' => array(), -'tawaramoto' => array(), -'tenkawa' => array(), -'tenri' => array(), -'uda' => array(), -'yamatokoriyama' => array(), -'yamatotakada' => array(), -'yamazoe' => array(), -'yoshino' => array() -), -'niigata' => array('aga' => array(), -'agano' => array(), -'gosen' => array(), -'itoigawa' => array(), -'izumozaki' => array(), -'joetsu' => array(), -'kamo' => array(), -'kariwa' => array(), -'kashiwazaki' => array(), -'minamiuonuma' => array(), -'mitsuke' => array(), -'muika' => array(), -'murakami' => array(), -'myoko' => array(), -'nagaoka' => array(), -'niigata' => array(), -'ojiya' => array(), -'omi' => array(), -'sado' => array(), -'sanjo' => array(), -'seiro' => array(), -'seirou' => array(), -'sekikawa' => array(), -'shibata' => array(), -'tagami' => array(), -'tainai' => array(), -'tochio' => array(), -'tokamachi' => array(), -'tsubame' => array(), -'tsunan' => array(), -'uonuma' => array(), -'yahiko' => array(), -'yoita' => array(), -'yuzawa' => array() -), -'oita' => array('beppu' => array(), -'bungoono' => array(), -'bungotakada' => array(), -'hasama' => array(), -'hiji' => array(), -'himeshima' => array(), -'hita' => array(), -'kamitsue' => array(), -'kokonoe' => array(), -'kuju' => array(), -'kunisaki' => array(), -'kusu' => array(), -'oita' => array(), -'saiki' => array(), -'taketa' => array(), -'tsukumi' => array(), -'usa' => array(), -'usuki' => array(), -'yufu' => array() -), -'okayama' => array('akaiwa' => array(), -'asakuchi' => array(), -'bizen' => array(), -'hayashima' => array(), -'ibara' => array(), -'kagamino' => array(), -'kasaoka' => array(), -'kibichuo' => array(), -'kumenan' => array(), -'kurashiki' => array(), -'maniwa' => array(), -'misaki' => array(), -'nagi' => array(), -'niimi' => array(), -'nishiawakura' => array(), -'okayama' => array(), -'satosho' => array(), -'setouchi' => array(), -'shinjo' => array(), -'shoo' => array(), -'soja' => array(), -'takahashi' => array(), -'tamano' => array(), -'tsuyama' => array(), -'wake' => array(), -'yakage' => array() -), -'okinawa' => array('aguni' => array(), -'ginowan' => array(), -'ginoza' => array(), -'gushikami' => array(), -'haebaru' => array(), -'higashi' => array(), -'hirara' => array(), -'iheya' => array(), -'ishigaki' => array(), -'ishikawa' => array(), -'itoman' => array(), -'izena' => array(), -'kadena' => array(), -'kin' => array(), -'kitadaito' => array(), -'kitanakagusuku' => array(), -'kumejima' => array(), -'kunigami' => array(), -'minamidaito' => array(), -'motobu' => array(), -'nago' => array(), -'naha' => array(), -'nakagusuku' => array(), -'nakijin' => array(), -'nanjo' => array(), -'nishihara' => array(), -'ogimi' => array(), -'okinawa' => array(), -'onna' => array(), -'shimoji' => array(), -'taketomi' => array(), -'tarama' => array(), -'tokashiki' => array(), -'tomigusuku' => array(), -'tonaki' => array(), -'urasoe' => array(), -'uruma' => array(), -'yaese' => array(), -'yomitan' => array(), -'yonabaru' => array(), -'yonaguni' => array(), -'zamami' => array() -), -'osaka' => array('abeno' => array(), -'chihayaakasaka' => array(), -'chuo' => array(), -'daito' => array(), -'fujiidera' => array(), -'habikino' => array(), -'hannan' => array(), -'higashiosaka' => array(), -'higashisumiyoshi' => array(), -'higashiyodogawa' => array(), -'hirakata' => array(), -'ibaraki' => array(), -'ikeda' => array(), -'izumi' => array(), -'izumiotsu' => array(), -'izumisano' => array(), -'kadoma' => array(), -'kaizuka' => array(), -'kanan' => array(), -'kashiwara' => array(), -'katano' => array(), -'kawachinagano' => array(), -'kishiwada' => array(), -'kita' => array(), -'kumatori' => array(), -'matsubara' => array(), -'minato' => array(), -'minoh' => array(), -'misaki' => array(), -'moriguchi' => array(), -'neyagawa' => array(), -'nishi' => array(), -'nose' => array(), -'osakasayama' => array(), -'sakai' => array(), -'sayama' => array(), -'sennan' => array(), -'settsu' => array(), -'shijonawate' => array(), -'shimamoto' => array(), -'suita' => array(), -'tadaoka' => array(), -'taishi' => array(), -'tajiri' => array(), -'takaishi' => array(), -'takatsuki' => array(), -'tondabayashi' => array(), -'toyonaka' => array(), -'toyono' => array(), -'yao' => array() -), -'saga' => array('ariake' => array(), -'arita' => array(), -'fukudomi' => array(), -'genkai' => array(), -'hamatama' => array(), -'hizen' => array(), -'imari' => array(), -'kamimine' => array(), -'kanzaki' => array(), -'karatsu' => array(), -'kashima' => array(), -'kitagata' => array(), -'kitahata' => array(), -'kiyama' => array(), -'kouhoku' => array(), -'kyuragi' => array(), -'nishiarita' => array(), -'ogi' => array(), -'omachi' => array(), -'ouchi' => array(), -'saga' => array(), -'shiroishi' => array(), -'taku' => array(), -'tara' => array(), -'tosu' => array(), -'yoshinogari' => array() -), -'saitama' => array('arakawa' => array(), -'asaka' => array(), -'chichibu' => array(), -'fujimi' => array(), -'fujimino' => array(), -'fukaya' => array(), -'hanno' => array(), -'hanyu' => array(), -'hasuda' => array(), -'hatogaya' => array(), -'hatoyama' => array(), -'hidaka' => array(), -'higashichichibu' => array(), -'higashimatsuyama' => array(), -'honjo' => array(), -'ina' => array(), -'iruma' => array(), -'iwatsuki' => array(), -'kamiizumi' => array(), -'kamikawa' => array(), -'kamisato' => array(), -'kasukabe' => array(), -'kawagoe' => array(), -'kawaguchi' => array(), -'kawajima' => array(), -'kazo' => array(), -'kitamoto' => array(), -'koshigaya' => array(), -'kounosu' => array(), -'kuki' => array(), -'kumagaya' => array(), -'matsubushi' => array(), -'minano' => array(), -'misato' => array(), -'miyashiro' => array(), -'miyoshi' => array(), -'moroyama' => array(), -'nagatoro' => array(), -'namegawa' => array(), -'niiza' => array(), -'ogano' => array(), -'ogawa' => array(), -'ogose' => array(), -'okegawa' => array(), -'omiya' => array(), -'otaki' => array(), -'ranzan' => array(), -'ryokami' => array(), -'saitama' => array(), -'sakado' => array(), -'satte' => array(), -'sayama' => array(), -'shiki' => array(), -'shiraoka' => array(), -'soka' => array(), -'sugito' => array(), -'toda' => array(), -'tokigawa' => array(), -'tokorozawa' => array(), -'tsurugashima' => array(), -'urawa' => array(), -'warabi' => array(), -'yashio' => array(), -'yokoze' => array(), -'yono' => array(), -'yorii' => array(), -'yoshida' => array(), -'yoshikawa' => array(), -'yoshimi' => array() -), -'shiga' => array('aisho' => array(), -'gamo' => array(), -'higashiomi' => array(), -'hikone' => array(), -'koka' => array(), -'konan' => array(), -'kosei' => array(), -'koto' => array(), -'kusatsu' => array(), -'maibara' => array(), -'moriyama' => array(), -'nagahama' => array(), -'nishiazai' => array(), -'notogawa' => array(), -'omihachiman' => array(), -'otsu' => array(), -'ritto' => array(), -'ryuoh' => array(), -'takashima' => array(), -'takatsuki' => array(), -'torahime' => array(), -'toyosato' => array(), -'yasu' => array() -), -'shimane' => array('akagi' => array(), -'ama' => array(), -'gotsu' => array(), -'hamada' => array(), -'higashiizumo' => array(), -'hikawa' => array(), -'hikimi' => array(), -'izumo' => array(), -'kakinoki' => array(), -'masuda' => array(), -'matsue' => array(), -'misato' => array(), -'nishinoshima' => array(), -'ohda' => array(), -'okinoshima' => array(), -'okuizumo' => array(), -'shimane' => array(), -'tamayu' => array(), -'tsuwano' => array(), -'unnan' => array(), -'yakumo' => array(), -'yasugi' => array(), -'yatsuka' => array() -), -'shizuoka' => array('arai' => array(), -'atami' => array(), -'fuji' => array(), -'fujieda' => array(), -'fujikawa' => array(), -'fujinomiya' => array(), -'fukuroi' => array(), -'gotemba' => array(), -'haibara' => array(), -'hamamatsu' => array(), -'higashiizu' => array(), -'ito' => array(), -'iwata' => array(), -'izu' => array(), -'izunokuni' => array(), -'kakegawa' => array(), -'kannami' => array(), -'kawanehon' => array(), -'kawazu' => array(), -'kikugawa' => array(), -'kosai' => array(), -'makinohara' => array(), -'matsuzaki' => array(), -'minamiizu' => array(), -'mishima' => array(), -'morimachi' => array(), -'nishiizu' => array(), -'numazu' => array(), -'omaezaki' => array(), -'shimada' => array(), -'shimizu' => array(), -'shimoda' => array(), -'shizuoka' => array(), -'susono' => array(), -'yaizu' => array(), -'yoshida' => array() -), -'tochigi' => array('ashikaga' => array(), -'bato' => array(), -'haga' => array(), -'ichikai' => array(), -'iwafune' => array(), -'kaminokawa' => array(), -'kanuma' => array(), -'karasuyama' => array(), -'kuroiso' => array(), -'mashiko' => array(), -'mibu' => array(), -'moka' => array(), -'motegi' => array(), -'nasu' => array(), -'nasushiobara' => array(), -'nikko' => array(), -'nishikata' => array(), -'nogi' => array(), -'ohira' => array(), -'ohtawara' => array(), -'oyama' => array(), -'sakura' => array(), -'sano' => array(), -'shimotsuke' => array(), -'shioya' => array(), -'takanezawa' => array(), -'tochigi' => array(), -'tsuga' => array(), -'ujiie' => array(), -'utsunomiya' => array(), -'yaita' => array() -), -'tokushima' => array('aizumi' => array(), -'anan' => array(), -'ichiba' => array(), -'itano' => array(), -'kainan' => array(), -'komatsushima' => array(), -'matsushige' => array(), -'mima' => array(), -'minami' => array(), -'miyoshi' => array(), -'mugi' => array(), -'nakagawa' => array(), -'naruto' => array(), -'sanagochi' => array(), -'shishikui' => array(), -'tokushima' => array(), -'wajiki' => array() -), -'tokyo' => array('adachi' => array(), -'akiruno' => array(), -'akishima' => array(), -'aogashima' => array(), -'arakawa' => array(), -'bunkyo' => array(), -'chiyoda' => array(), -'chofu' => array(), -'chuo' => array(), -'edogawa' => array(), -'fuchu' => array(), -'fussa' => array(), -'hachijo' => array(), -'hachioji' => array(), -'hamura' => array(), -'higashikurume' => array(), -'higashimurayama' => array(), -'higashiyamato' => array(), -'hino' => array(), -'hinode' => array(), -'hinohara' => array(), -'inagi' => array(), -'itabashi' => array(), -'katsushika' => array(), -'kita' => array(), -'kiyose' => array(), -'kodaira' => array(), -'koganei' => array(), -'kokubunji' => array(), -'komae' => array(), -'koto' => array(), -'kouzushima' => array(), -'kunitachi' => array(), -'machida' => array(), -'meguro' => array(), -'minato' => array(), -'mitaka' => array(), -'mizuho' => array(), -'musashimurayama' => array(), -'musashino' => array(), -'nakano' => array(), -'nerima' => array(), -'ogasawara' => array(), -'okutama' => array(), -'ome' => array(), -'oshima' => array(), -'ota' => array(), -'setagaya' => array(), -'shibuya' => array(), -'shinagawa' => array(), -'shinjuku' => array(), -'suginami' => array(), -'sumida' => array(), -'tachikawa' => array(), -'taito' => array(), -'tama' => array(), -'toshima' => array() -), -'tottori' => array('chizu' => array(), -'hino' => array(), -'kawahara' => array(), -'koge' => array(), -'kotoura' => array(), -'misasa' => array(), -'nanbu' => array(), -'nichinan' => array(), -'sakaiminato' => array(), -'tottori' => array(), -'wakasa' => array(), -'yazu' => array(), -'yonago' => array() -), -'toyama' => array('asahi' => array(), -'fuchu' => array(), -'fukumitsu' => array(), -'funahashi' => array(), -'himi' => array(), -'imizu' => array(), -'inami' => array(), -'johana' => array(), -'kamiichi' => array(), -'kurobe' => array(), -'nakaniikawa' => array(), -'namerikawa' => array(), -'nanto' => array(), -'nyuzen' => array(), -'oyabe' => array(), -'taira' => array(), -'takaoka' => array(), -'tateyama' => array(), -'toga' => array(), -'tonami' => array(), -'toyama' => array(), -'unazuki' => array(), -'uozu' => array(), -'yamada' => array() -), -'wakayama' => array('arida' => array(), -'aridagawa' => array(), -'gobo' => array(), -'hashimoto' => array(), -'hidaka' => array(), -'hirogawa' => array(), -'inami' => array(), -'iwade' => array(), -'kainan' => array(), -'kamitonda' => array(), -'katsuragi' => array(), -'kimino' => array(), -'kinokawa' => array(), -'kitayama' => array(), -'koya' => array(), -'koza' => array(), -'kozagawa' => array(), -'kudoyama' => array(), -'kushimoto' => array(), -'mihama' => array(), -'misato' => array(), -'nachikatsuura' => array(), -'shingu' => array(), -'shirahama' => array(), -'taiji' => array(), -'tanabe' => array(), -'wakayama' => array(), -'yuasa' => array(), -'yura' => array() -), -'yamagata' => array('asahi' => array(), -'funagata' => array(), -'higashine' => array(), -'iide' => array(), -'kahoku' => array(), -'kaminoyama' => array(), -'kaneyama' => array(), -'kawanishi' => array(), -'mamurogawa' => array(), -'mikawa' => array(), -'murayama' => array(), -'nagai' => array(), -'nakayama' => array(), -'nanyo' => array(), -'nishikawa' => array(), -'obanazawa' => array(), -'oe' => array(), -'oguni' => array(), -'ohkura' => array(), -'oishida' => array(), -'sagae' => array(), -'sakata' => array(), -'sakegawa' => array(), -'shinjo' => array(), -'shirataka' => array(), -'shonai' => array(), -'takahata' => array(), -'tendo' => array(), -'tozawa' => array(), -'tsuruoka' => array(), -'yamagata' => array(), -'yamanobe' => array(), -'yonezawa' => array(), -'yuza' => array() -), -'yamaguchi' => array('abu' => array(), -'hagi' => array(), -'hikari' => array(), -'hofu' => array(), -'iwakuni' => array(), -'kudamatsu' => array(), -'mitou' => array(), -'nagato' => array(), -'oshima' => array(), -'shimonoseki' => array(), -'shunan' => array(), -'tabuse' => array(), -'tokuyama' => array(), -'toyota' => array(), -'ube' => array(), -'yuu' => array() -), -'yamanashi' => array('chuo' => array(), -'doshi' => array(), -'fuefuki' => array(), -'fujikawa' => array(), -'fujikawaguchiko' => array(), -'fujiyoshida' => array(), -'hayakawa' => array(), -'hokuto' => array(), -'ichikawamisato' => array(), -'kai' => array(), -'kofu' => array(), -'koshu' => array(), -'kosuge' => array(), -'minami-alps' => array(), -'minobu' => array(), -'nakamichi' => array(), -'nanbu' => array(), -'narusawa' => array(), -'nirasaki' => array(), -'nishikatsura' => array(), -'oshino' => array(), -'otsuki' => array(), -'showa' => array(), -'tabayama' => array(), -'tsuru' => array(), -'uenohara' => array(), -'yamanakako' => array(), -'yamanashi' => array() -), -'kawasaki' => array('*' => array(), -'city' => array('!' => '' -) -), -'kitakyushu' => array('*' => array(), -'city' => array('!' => '' -) -), -'kobe' => array('*' => array(), -'city' => array('!' => '' -) -), -'nagoya' => array('*' => array(), -'city' => array('!' => '' -) -), -'sapporo' => array('*' => array(), -'city' => array('!' => '' -) -), -'sendai' => array('*' => array(), -'city' => array('!' => '' -) -), -'yokohama' => array('*' => array(), -'city' => array('!' => '' -) -) -), -'ke' => array('*' => array() -), -'kg' => array('org' => array(), -'net' => array(), -'com' => array(), -'edu' => array(), -'gov' => array(), -'mil' => array() -), -'kh' => array('*' => array() -), -'ki' => array('edu' => array(), -'biz' => array(), -'net' => array(), -'org' => array(), -'gov' => array(), -'info' => array(), -'com' => array() -), -'km' => array('org' => array(), -'nom' => array(), -'gov' => array(), -'prd' => array(), -'tm' => array(), -'edu' => array(), -'mil' => array(), -'ass' => array(), -'com' => array(), -'coop' => array(), -'asso' => array(), -'presse' => array(), -'medecin' => array(), -'notaires' => array(), -'pharmaciens' => array(), -'veterinaire' => array(), -'gouv' => array() -), -'kn' => array('net' => array(), -'org' => array(), -'edu' => array(), -'gov' => array() -), -'kp' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'org' => array(), -'rep' => array(), -'tra' => array() -), -'kr' => array('ac' => array(), -'co' => array(), -'es' => array(), -'go' => array(), -'hs' => array(), -'kg' => array(), -'mil' => array(), -'ms' => array(), -'ne' => array(), -'or' => array(), -'pe' => array(), -'re' => array(), -'sc' => array(), -'busan' => array(), -'chungbuk' => array(), -'chungnam' => array(), -'daegu' => array(), -'daejeon' => array(), -'gangwon' => array(), -'gwangju' => array(), -'gyeongbuk' => array(), -'gyeonggi' => array(), -'gyeongnam' => array(), -'incheon' => array(), -'jeju' => array(), -'jeonbuk' => array(), -'jeonnam' => array(), -'seoul' => array(), -'ulsan' => array() -), -'kw' => array('*' => array() -), -'ky' => array('edu' => array(), -'gov' => array(), -'com' => array(), -'org' => array(), -'net' => array() -), -'kz' => array('org' => array(), -'edu' => array(), -'net' => array(), -'gov' => array(), -'mil' => array(), -'com' => array() -), -'la' => array('int' => array(), -'net' => array(), -'info' => array(), -'edu' => array(), -'gov' => array(), -'per' => array(), -'com' => array(), -'org' => array(), -'c' => array() -), -'lb' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'net' => array(), -'org' => array() -), -'lc' => array('com' => array(), -'net' => array(), -'co' => array(), -'org' => array(), -'edu' => array(), -'gov' => array() -), -'li' => array(), -'lk' => array('gov' => array(), -'sch' => array(), -'net' => array(), -'int' => array(), -'com' => array(), -'org' => array(), -'edu' => array(), -'ngo' => array(), -'soc' => array(), -'web' => array(), -'ltd' => array(), -'assn' => array(), -'grp' => array(), -'hotel' => array() -), -'lr' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'org' => array(), -'net' => array() -), -'ls' => array('co' => array(), -'org' => array() -), -'lt' => array('gov' => array() -), -'lu' => array(), -'lv' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'org' => array(), -'mil' => array(), -'id' => array(), -'net' => array(), -'asn' => array(), -'conf' => array() -), -'ly' => array('com' => array(), -'net' => array(), -'gov' => array(), -'plc' => array(), -'edu' => array(), -'sch' => array(), -'med' => array(), -'org' => array(), -'id' => array() -), -'ma' => array('co' => array(), -'net' => array(), -'gov' => array(), -'org' => array(), -'ac' => array(), -'press' => array() -), -'mc' => array('tm' => array(), -'asso' => array() -), -'md' => array(), -'me' => array('co' => array(), -'net' => array(), -'org' => array(), -'edu' => array(), -'ac' => array(), -'gov' => array(), -'its' => array(), -'priv' => array() -), -'mg' => array('org' => array(), -'nom' => array(), -'gov' => array(), -'prd' => array(), -'tm' => array(), -'edu' => array(), -'mil' => array(), -'com' => array() -), -'mh' => array(), -'mil' => array(), -'mk' => array('com' => array(), -'org' => array(), -'net' => array(), -'edu' => array(), -'gov' => array(), -'inf' => array(), -'name' => array() -), -'ml' => array('com' => array(), -'edu' => array(), -'gouv' => array(), -'gov' => array(), -'net' => array(), -'org' => array(), -'presse' => array() -), -'mm' => array('*' => array() -), -'mn' => array('gov' => array(), -'edu' => array(), -'org' => array() -), -'mo' => array('com' => array(), -'net' => array(), -'org' => array(), -'edu' => array(), -'gov' => array() -), -'mobi' => array(), -'mp' => array(), -'mq' => array(), -'mr' => array('gov' => array() -), -'ms' => array(), -'mt' => array('*' => array() -), -'mu' => array('com' => array(), -'net' => array(), -'org' => array(), -'gov' => array(), -'ac' => array(), -'co' => array(), -'or' => array() -), -'museum' => array('academy' => array(), -'agriculture' => array(), -'air' => array(), -'airguard' => array(), -'alabama' => array(), -'alaska' => array(), -'amber' => array(), -'ambulance' => array(), -'american' => array(), -'americana' => array(), -'americanantiques' => array(), -'americanart' => array(), -'amsterdam' => array(), -'and' => array(), -'annefrank' => array(), -'anthro' => array(), -'anthropology' => array(), -'antiques' => array(), -'aquarium' => array(), -'arboretum' => array(), -'archaeological' => array(), -'archaeology' => array(), -'architecture' => array(), -'art' => array(), -'artanddesign' => array(), -'artcenter' => array(), -'artdeco' => array(), -'arteducation' => array(), -'artgallery' => array(), -'arts' => array(), -'artsandcrafts' => array(), -'asmatart' => array(), -'assassination' => array(), -'assisi' => array(), -'association' => array(), -'astronomy' => array(), -'atlanta' => array(), -'austin' => array(), -'australia' => array(), -'automotive' => array(), -'aviation' => array(), -'axis' => array(), -'badajoz' => array(), -'baghdad' => array(), -'bahn' => array(), -'bale' => array(), -'baltimore' => array(), -'barcelona' => array(), -'baseball' => array(), -'basel' => array(), -'baths' => array(), -'bauern' => array(), -'beauxarts' => array(), -'beeldengeluid' => array(), -'bellevue' => array(), -'bergbau' => array(), -'berkeley' => array(), -'berlin' => array(), -'bern' => array(), -'bible' => array(), -'bilbao' => array(), -'bill' => array(), -'birdart' => array(), -'birthplace' => array(), -'bonn' => array(), -'boston' => array(), -'botanical' => array(), -'botanicalgarden' => array(), -'botanicgarden' => array(), -'botany' => array(), -'brandywinevalley' => array(), -'brasil' => array(), -'bristol' => array(), -'british' => array(), -'britishcolumbia' => array(), -'broadcast' => array(), -'brunel' => array(), -'brussel' => array(), -'brussels' => array(), -'bruxelles' => array(), -'building' => array(), -'burghof' => array(), -'bus' => array(), -'bushey' => array(), -'cadaques' => array(), -'california' => array(), -'cambridge' => array(), -'can' => array(), -'canada' => array(), -'capebreton' => array(), -'carrier' => array(), -'cartoonart' => array(), -'casadelamoneda' => array(), -'castle' => array(), -'castres' => array(), -'celtic' => array(), -'center' => array(), -'chattanooga' => array(), -'cheltenham' => array(), -'chesapeakebay' => array(), -'chicago' => array(), -'children' => array(), -'childrens' => array(), -'childrensgarden' => array(), -'chiropractic' => array(), -'chocolate' => array(), -'christiansburg' => array(), -'cincinnati' => array(), -'cinema' => array(), -'circus' => array(), -'civilisation' => array(), -'civilization' => array(), -'civilwar' => array(), -'clinton' => array(), -'clock' => array(), -'coal' => array(), -'coastaldefence' => array(), -'cody' => array(), -'coldwar' => array(), -'collection' => array(), -'colonialwilliamsburg' => array(), -'coloradoplateau' => array(), -'columbia' => array(), -'columbus' => array(), -'communication' => array(), -'communications' => array(), -'community' => array(), -'computer' => array(), -'computerhistory' => array(), -'comunicações' => array(), -'contemporary' => array(), -'contemporaryart' => array(), -'convent' => array(), -'copenhagen' => array(), -'corporation' => array(), -'correios-e-telecomunicações' => array(), -'corvette' => array(), -'costume' => array(), -'countryestate' => array(), -'county' => array(), -'crafts' => array(), -'cranbrook' => array(), -'creation' => array(), -'cultural' => array(), -'culturalcenter' => array(), -'culture' => array(), -'cyber' => array(), -'cymru' => array(), -'dali' => array(), -'dallas' => array(), -'database' => array(), -'ddr' => array(), -'decorativearts' => array(), -'delaware' => array(), -'delmenhorst' => array(), -'denmark' => array(), -'depot' => array(), -'design' => array(), -'detroit' => array(), -'dinosaur' => array(), -'discovery' => array(), -'dolls' => array(), -'donostia' => array(), -'durham' => array(), -'eastafrica' => array(), -'eastcoast' => array(), -'education' => array(), -'educational' => array(), -'egyptian' => array(), -'eisenbahn' => array(), -'elburg' => array(), -'elvendrell' => array(), -'embroidery' => array(), -'encyclopedic' => array(), -'england' => array(), -'entomology' => array(), -'environment' => array(), -'environmentalconservation' => array(), -'epilepsy' => array(), -'essex' => array(), -'estate' => array(), -'ethnology' => array(), -'exeter' => array(), -'exhibition' => array(), -'family' => array(), -'farm' => array(), -'farmequipment' => array(), -'farmers' => array(), -'farmstead' => array(), -'field' => array(), -'figueres' => array(), -'filatelia' => array(), -'film' => array(), -'fineart' => array(), -'finearts' => array(), -'finland' => array(), -'flanders' => array(), -'florida' => array(), -'force' => array(), -'fortmissoula' => array(), -'fortworth' => array(), -'foundation' => array(), -'francaise' => array(), -'frankfurt' => array(), -'franziskaner' => array(), -'freemasonry' => array(), -'freiburg' => array(), -'fribourg' => array(), -'frog' => array(), -'fundacio' => array(), -'furniture' => array(), -'gallery' => array(), -'garden' => array(), -'gateway' => array(), -'geelvinck' => array(), -'gemological' => array(), -'geology' => array(), -'georgia' => array(), -'giessen' => array(), -'glas' => array(), -'glass' => array(), -'gorge' => array(), -'grandrapids' => array(), -'graz' => array(), -'guernsey' => array(), -'halloffame' => array(), -'hamburg' => array(), -'handson' => array(), -'harvestcelebration' => array(), -'hawaii' => array(), -'health' => array(), -'heimatunduhren' => array(), -'hellas' => array(), -'helsinki' => array(), -'hembygdsforbund' => array(), -'heritage' => array(), -'histoire' => array(), -'historical' => array(), -'historicalsociety' => array(), -'historichouses' => array(), -'historisch' => array(), -'historisches' => array(), -'history' => array(), -'historyofscience' => array(), -'horology' => array(), -'house' => array(), -'humanities' => array(), -'illustration' => array(), -'imageandsound' => array(), -'indian' => array(), -'indiana' => array(), -'indianapolis' => array(), -'indianmarket' => array(), -'intelligence' => array(), -'interactive' => array(), -'iraq' => array(), -'iron' => array(), -'isleofman' => array(), -'jamison' => array(), -'jefferson' => array(), -'jerusalem' => array(), -'jewelry' => array(), -'jewish' => array(), -'jewishart' => array(), -'jfk' => array(), -'journalism' => array(), -'judaica' => array(), -'judygarland' => array(), -'juedisches' => array(), -'juif' => array(), -'karate' => array(), -'karikatur' => array(), -'kids' => array(), -'koebenhavn' => array(), -'koeln' => array(), -'kunst' => array(), -'kunstsammlung' => array(), -'kunstunddesign' => array(), -'labor' => array(), -'labour' => array(), -'lajolla' => array(), -'lancashire' => array(), -'landes' => array(), -'lans' => array(), -'läns' => array(), -'larsson' => array(), -'lewismiller' => array(), -'lincoln' => array(), -'linz' => array(), -'living' => array(), -'livinghistory' => array(), -'localhistory' => array(), -'london' => array(), -'losangeles' => array(), -'louvre' => array(), -'loyalist' => array(), -'lucerne' => array(), -'luxembourg' => array(), -'luzern' => array(), -'mad' => array(), -'madrid' => array(), -'mallorca' => array(), -'manchester' => array(), -'mansion' => array(), -'mansions' => array(), -'manx' => array(), -'marburg' => array(), -'maritime' => array(), -'maritimo' => array(), -'maryland' => array(), -'marylhurst' => array(), -'media' => array(), -'medical' => array(), -'medizinhistorisches' => array(), -'meeres' => array(), -'memorial' => array(), -'mesaverde' => array(), -'michigan' => array(), -'midatlantic' => array(), -'military' => array(), -'mill' => array(), -'miners' => array(), -'mining' => array(), -'minnesota' => array(), -'missile' => array(), -'missoula' => array(), -'modern' => array(), -'moma' => array(), -'money' => array(), -'monmouth' => array(), -'monticello' => array(), -'montreal' => array(), -'moscow' => array(), -'motorcycle' => array(), -'muenchen' => array(), -'muenster' => array(), -'mulhouse' => array(), -'muncie' => array(), -'museet' => array(), -'museumcenter' => array(), -'museumvereniging' => array(), -'music' => array(), -'national' => array(), -'nationalfirearms' => array(), -'nationalheritage' => array(), -'nativeamerican' => array(), -'naturalhistory' => array(), -'naturalhistorymuseum' => array(), -'naturalsciences' => array(), -'nature' => array(), -'naturhistorisches' => array(), -'natuurwetenschappen' => array(), -'naumburg' => array(), -'naval' => array(), -'nebraska' => array(), -'neues' => array(), -'newhampshire' => array(), -'newjersey' => array(), -'newmexico' => array(), -'newport' => array(), -'newspaper' => array(), -'newyork' => array(), -'niepce' => array(), -'norfolk' => array(), -'north' => array(), -'nrw' => array(), -'nuernberg' => array(), -'nuremberg' => array(), -'nyc' => array(), -'nyny' => array(), -'oceanographic' => array(), -'oceanographique' => array(), -'omaha' => array(), -'online' => array(), -'ontario' => array(), -'openair' => array(), -'oregon' => array(), -'oregontrail' => array(), -'otago' => array(), -'oxford' => array(), -'pacific' => array(), -'paderborn' => array(), -'palace' => array(), -'paleo' => array(), -'palmsprings' => array(), -'panama' => array(), -'paris' => array(), -'pasadena' => array(), -'pharmacy' => array(), -'philadelphia' => array(), -'philadelphiaarea' => array(), -'philately' => array(), -'phoenix' => array(), -'photography' => array(), -'pilots' => array(), -'pittsburgh' => array(), -'planetarium' => array(), -'plantation' => array(), -'plants' => array(), -'plaza' => array(), -'portal' => array(), -'portland' => array(), -'portlligat' => array(), -'posts-and-telecommunications' => array(), -'preservation' => array(), -'presidio' => array(), -'press' => array(), -'project' => array(), -'public' => array(), -'pubol' => array(), -'quebec' => array(), -'railroad' => array(), -'railway' => array(), -'research' => array(), -'resistance' => array(), -'riodejaneiro' => array(), -'rochester' => array(), -'rockart' => array(), -'roma' => array(), -'russia' => array(), -'saintlouis' => array(), -'salem' => array(), -'salvadordali' => array(), -'salzburg' => array(), -'sandiego' => array(), -'sanfrancisco' => array(), -'santabarbara' => array(), -'santacruz' => array(), -'santafe' => array(), -'saskatchewan' => array(), -'satx' => array(), -'savannahga' => array(), -'schlesisches' => array(), -'schoenbrunn' => array(), -'schokoladen' => array(), -'school' => array(), -'schweiz' => array(), -'science' => array(), -'scienceandhistory' => array(), -'scienceandindustry' => array(), -'sciencecenter' => array(), -'sciencecenters' => array(), -'science-fiction' => array(), -'sciencehistory' => array(), -'sciences' => array(), -'sciencesnaturelles' => array(), -'scotland' => array(), -'seaport' => array(), -'settlement' => array(), -'settlers' => array(), -'shell' => array(), -'sherbrooke' => array(), -'sibenik' => array(), -'silk' => array(), -'ski' => array(), -'skole' => array(), -'society' => array(), -'sologne' => array(), -'soundandvision' => array(), -'southcarolina' => array(), -'southwest' => array(), -'space' => array(), -'spy' => array(), -'square' => array(), -'stadt' => array(), -'stalbans' => array(), -'starnberg' => array(), -'state' => array(), -'stateofdelaware' => array(), -'station' => array(), -'steam' => array(), -'steiermark' => array(), -'stjohn' => array(), -'stockholm' => array(), -'stpetersburg' => array(), -'stuttgart' => array(), -'suisse' => array(), -'surgeonshall' => array(), -'surrey' => array(), -'svizzera' => array(), -'sweden' => array(), -'sydney' => array(), -'tank' => array(), -'tcm' => array(), -'technology' => array(), -'telekommunikation' => array(), -'television' => array(), -'texas' => array(), -'textile' => array(), -'theater' => array(), -'time' => array(), -'timekeeping' => array(), -'topology' => array(), -'torino' => array(), -'touch' => array(), -'town' => array(), -'transport' => array(), -'tree' => array(), -'trolley' => array(), -'trust' => array(), -'trustee' => array(), -'uhren' => array(), -'ulm' => array(), -'undersea' => array(), -'university' => array(), -'usa' => array(), -'usantiques' => array(), -'usarts' => array(), -'uscountryestate' => array(), -'usculture' => array(), -'usdecorativearts' => array(), -'usgarden' => array(), -'ushistory' => array(), -'ushuaia' => array(), -'uslivinghistory' => array(), -'utah' => array(), -'uvic' => array(), -'valley' => array(), -'vantaa' => array(), -'versailles' => array(), -'viking' => array(), -'village' => array(), -'virginia' => array(), -'virtual' => array(), -'virtuel' => array(), -'vlaanderen' => array(), -'volkenkunde' => array(), -'wales' => array(), -'wallonie' => array(), -'war' => array(), -'washingtondc' => array(), -'watchandclock' => array(), -'watch-and-clock' => array(), -'western' => array(), -'westfalen' => array(), -'whaling' => array(), -'wildlife' => array(), -'williamsburg' => array(), -'windmill' => array(), -'workshop' => array(), -'york' => array(), -'yorkshire' => array(), -'yosemite' => array(), -'youth' => array(), -'zoological' => array(), -'zoology' => array(), -'ירושלים' => array(), -'иком' => array() -), -'mv' => array('aero' => array(), -'biz' => array(), -'com' => array(), -'coop' => array(), -'edu' => array(), -'gov' => array(), -'info' => array(), -'int' => array(), -'mil' => array(), -'museum' => array(), -'name' => array(), -'net' => array(), -'org' => array(), -'pro' => array() -), -'mw' => array('ac' => array(), -'biz' => array(), -'co' => array(), -'com' => array(), -'coop' => array(), -'edu' => array(), -'gov' => array(), -'int' => array(), -'museum' => array(), -'net' => array(), -'org' => array() -), -'mx' => array('com' => array(), -'org' => array(), -'gob' => array(), -'edu' => array(), -'net' => array() -), -'my' => array('com' => array(), -'net' => array(), -'org' => array(), -'gov' => array(), -'edu' => array(), -'mil' => array(), -'name' => array() -), -'mz' => array('*' => array() -), -'na' => array('info' => array(), -'pro' => array(), -'name' => array(), -'school' => array(), -'or' => array(), -'dr' => array(), -'us' => array(), -'mx' => array(), -'ca' => array(), -'in' => array(), -'cc' => array(), -'tv' => array(), -'ws' => array(), -'mobi' => array(), -'co' => array(), -'com' => array(), -'org' => array() -), -'name' => array('her' => array('forgot' => array() -), -'his' => array('forgot' => array() -) -), -'nc' => array('asso' => array() -), -'ne' => array(), -'net' => array('gb' => array(), -'hu' => array(), -'jp' => array(), -'se' => array(), -'uk' => array(), -'za' => array(), -'at-band-camp' => array(), -'blogdns' => array(), -'broke-it' => array(), -'buyshouses' => array(), -'dnsalias' => array(), -'dnsdojo' => array(), -'does-it' => array(), -'dontexist' => array(), -'dynalias' => array(), -'dynathome' => array(), -'endofinternet' => array(), -'from-az' => array(), -'from-co' => array(), -'from-la' => array(), -'from-ny' => array(), -'gets-it' => array(), -'ham-radio-op' => array(), -'homeftp' => array(), -'homeip' => array(), -'homelinux' => array(), -'homeunix' => array(), -'in-the-band' => array(), -'is-a-chef' => array(), -'is-a-geek' => array(), -'isa-geek' => array(), -'kicks-ass' => array(), -'office-on-the' => array(), -'podzone' => array(), -'scrapper-site' => array(), -'selfip' => array(), -'sells-it' => array(), -'servebbs' => array(), -'serveftp' => array(), -'thruhere' => array(), -'webhop' => array() -), -'nf' => array('com' => array(), -'net' => array(), -'per' => array(), -'rec' => array(), -'web' => array(), -'arts' => array(), -'firm' => array(), -'info' => array(), -'other' => array(), -'store' => array() -), -'ng' => array('ac' => array(), -'com' => array(), -'edu' => array(), -'gov' => array(), -'net' => array(), -'org' => array() -), -'ni' => array('*' => array() -), -'nl' => array('bv' => array(), -'co' => array() -), -'no' => array('fhs' => array(), -'vgs' => array(), -'fylkesbibl' => array(), -'folkebibl' => array(), -'museum' => array(), -'idrett' => array(), -'priv' => array(), -'mil' => array(), -'stat' => array(), -'dep' => array(), -'kommune' => array(), -'herad' => array(), -'aa' => array('gs' => array() -), -'ah' => array('gs' => array() -), -'bu' => array('gs' => array() -), -'fm' => array('gs' => array() -), -'hl' => array('gs' => array() -), -'hm' => array('gs' => array() -), -'jan-mayen' => array('gs' => array() -), -'mr' => array('gs' => array() -), -'nl' => array('gs' => array() -), -'nt' => array('gs' => array() -), -'of' => array('gs' => array() -), -'ol' => array('gs' => array() -), -'oslo' => array('gs' => array() -), -'rl' => array('gs' => array() -), -'sf' => array('gs' => array() -), -'st' => array('gs' => array() -), -'svalbard' => array('gs' => array() -), -'tm' => array('gs' => array() -), -'tr' => array('gs' => array() -), -'va' => array('gs' => array() -), -'vf' => array('gs' => array() -), -'akrehamn' => array(), -'åkrehamn' => array(), -'algard' => array(), -'ålgård' => array(), -'arna' => array(), -'brumunddal' => array(), -'bryne' => array(), -'bronnoysund' => array(), -'brønnøysund' => array(), -'drobak' => array(), -'drøbak' => array(), -'egersund' => array(), -'fetsund' => array(), -'floro' => array(), -'florø' => array(), -'fredrikstad' => array(), -'hokksund' => array(), -'honefoss' => array(), -'hønefoss' => array(), -'jessheim' => array(), -'jorpeland' => array(), -'jørpeland' => array(), -'kirkenes' => array(), -'kopervik' => array(), -'krokstadelva' => array(), -'langevag' => array(), -'langevåg' => array(), -'leirvik' => array(), -'mjondalen' => array(), -'mjøndalen' => array(), -'mo-i-rana' => array(), -'mosjoen' => array(), -'mosjøen' => array(), -'nesoddtangen' => array(), -'orkanger' => array(), -'osoyro' => array(), -'osøyro' => array(), -'raholt' => array(), -'råholt' => array(), -'sandnessjoen' => array(), -'sandnessjøen' => array(), -'skedsmokorset' => array(), -'slattum' => array(), -'spjelkavik' => array(), -'stathelle' => array(), -'stavern' => array(), -'stjordalshalsen' => array(), -'stjørdalshalsen' => array(), -'tananger' => array(), -'tranby' => array(), -'vossevangen' => array(), -'afjord' => array(), -'åfjord' => array(), -'agdenes' => array(), -'al' => array(), -'ål' => array(), -'alesund' => array(), -'ålesund' => array(), -'alstahaug' => array(), -'alta' => array(), -'áltá' => array(), -'alaheadju' => array(), -'álaheadju' => array(), -'alvdal' => array(), -'amli' => array(), -'åmli' => array(), -'amot' => array(), -'åmot' => array(), -'andebu' => array(), -'andoy' => array(), -'andøy' => array(), -'andasuolo' => array(), -'ardal' => array(), -'årdal' => array(), -'aremark' => array(), -'arendal' => array(), -'ås' => array(), -'aseral' => array(), -'åseral' => array(), -'asker' => array(), -'askim' => array(), -'askvoll' => array(), -'askoy' => array(), -'askøy' => array(), -'asnes' => array(), -'åsnes' => array(), -'audnedaln' => array(), -'aukra' => array(), -'aure' => array(), -'aurland' => array(), -'aurskog-holand' => array(), -'aurskog-høland' => array(), -'austevoll' => array(), -'austrheim' => array(), -'averoy' => array(), -'averøy' => array(), -'balestrand' => array(), -'ballangen' => array(), -'balat' => array(), -'bálát' => array(), -'balsfjord' => array(), -'bahccavuotna' => array(), -'báhccavuotna' => array(), -'bamble' => array(), -'bardu' => array(), -'beardu' => array(), -'beiarn' => array(), -'bajddar' => array(), -'bájddar' => array(), -'baidar' => array(), -'báidár' => array(), -'berg' => array(), -'bergen' => array(), -'berlevag' => array(), -'berlevåg' => array(), -'bearalvahki' => array(), -'bearalváhki' => array(), -'bindal' => array(), -'birkenes' => array(), -'bjarkoy' => array(), -'bjarkøy' => array(), -'bjerkreim' => array(), -'bjugn' => array(), -'bodo' => array(), -'bodø' => array(), -'badaddja' => array(), -'bådåddjå' => array(), -'budejju' => array(), -'bokn' => array(), -'bremanger' => array(), -'bronnoy' => array(), -'brønnøy' => array(), -'bygland' => array(), -'bykle' => array(), -'barum' => array(), -'bærum' => array(), -'telemark' => array('bo' => array(), -'bø' => array() -), -'nordland' => array('bo' => array(), -'bø' => array(), -'heroy' => array(), -'herøy' => array() -), -'bievat' => array(), -'bievát' => array(), -'bomlo' => array(), -'bømlo' => array(), -'batsfjord' => array(), -'båtsfjord' => array(), -'bahcavuotna' => array(), -'báhcavuotna' => array(), -'dovre' => array(), -'drammen' => array(), -'drangedal' => array(), -'dyroy' => array(), -'dyrøy' => array(), -'donna' => array(), -'dønna' => array(), -'eid' => array(), -'eidfjord' => array(), -'eidsberg' => array(), -'eidskog' => array(), -'eidsvoll' => array(), -'eigersund' => array(), -'elverum' => array(), -'enebakk' => array(), -'engerdal' => array(), -'etne' => array(), -'etnedal' => array(), -'evenes' => array(), -'evenassi' => array(), -'evenášši' => array(), -'evje-og-hornnes' => array(), -'farsund' => array(), -'fauske' => array(), -'fuossko' => array(), -'fuoisku' => array(), -'fedje' => array(), -'fet' => array(), -'finnoy' => array(), -'finnøy' => array(), -'fitjar' => array(), -'fjaler' => array(), -'fjell' => array(), -'flakstad' => array(), -'flatanger' => array(), -'flekkefjord' => array(), -'flesberg' => array(), -'flora' => array(), -'fla' => array(), -'flå' => array(), -'folldal' => array(), -'forsand' => array(), -'fosnes' => array(), -'frei' => array(), -'frogn' => array(), -'froland' => array(), -'frosta' => array(), -'frana' => array(), -'fræna' => array(), -'froya' => array(), -'frøya' => array(), -'fusa' => array(), -'fyresdal' => array(), -'forde' => array(), -'førde' => array(), -'gamvik' => array(), -'gangaviika' => array(), -'gáŋgaviika' => array(), -'gaular' => array(), -'gausdal' => array(), -'gildeskal' => array(), -'gildeskål' => array(), -'giske' => array(), -'gjemnes' => array(), -'gjerdrum' => array(), -'gjerstad' => array(), -'gjesdal' => array(), -'gjovik' => array(), -'gjøvik' => array(), -'gloppen' => array(), -'gol' => array(), -'gran' => array(), -'grane' => array(), -'granvin' => array(), -'gratangen' => array(), -'grimstad' => array(), -'grong' => array(), -'kraanghke' => array(), -'kråanghke' => array(), -'grue' => array(), -'gulen' => array(), -'hadsel' => array(), -'halden' => array(), -'halsa' => array(), -'hamar' => array(), -'hamaroy' => array(), -'habmer' => array(), -'hábmer' => array(), -'hapmir' => array(), -'hápmir' => array(), -'hammerfest' => array(), -'hammarfeasta' => array(), -'hámmárfeasta' => array(), -'haram' => array(), -'hareid' => array(), -'harstad' => array(), -'hasvik' => array(), -'aknoluokta' => array(), -'ákŋoluokta' => array(), -'hattfjelldal' => array(), -'aarborte' => array(), -'haugesund' => array(), -'hemne' => array(), -'hemnes' => array(), -'hemsedal' => array(), -'more-og-romsdal' => array('heroy' => array(), -'sande' => array() -), -'møre-og-romsdal' => array('herøy' => array(), -'sande' => array() -), -'hitra' => array(), -'hjartdal' => array(), -'hjelmeland' => array(), -'hobol' => array(), -'hobøl' => array(), -'hof' => array(), -'hol' => array(), -'hole' => array(), -'holmestrand' => array(), -'holtalen' => array(), -'holtålen' => array(), -'hornindal' => array(), -'horten' => array(), -'hurdal' => array(), -'hurum' => array(), -'hvaler' => array(), -'hyllestad' => array(), -'hagebostad' => array(), -'hægebostad' => array(), -'hoyanger' => array(), -'høyanger' => array(), -'hoylandet' => array(), -'høylandet' => array(), -'ha' => array(), -'hå' => array(), -'ibestad' => array(), -'inderoy' => array(), -'inderøy' => array(), -'iveland' => array(), -'jevnaker' => array(), -'jondal' => array(), -'jolster' => array(), -'jølster' => array(), -'karasjok' => array(), -'karasjohka' => array(), -'kárášjohka' => array(), -'karlsoy' => array(), -'galsa' => array(), -'gálsá' => array(), -'karmoy' => array(), -'karmøy' => array(), -'kautokeino' => array(), -'guovdageaidnu' => array(), -'klepp' => array(), -'klabu' => array(), -'klæbu' => array(), -'kongsberg' => array(), -'kongsvinger' => array(), -'kragero' => array(), -'kragerø' => array(), -'kristiansand' => array(), -'kristiansund' => array(), -'krodsherad' => array(), -'krødsherad' => array(), -'kvalsund' => array(), -'rahkkeravju' => array(), -'ráhkkerávju' => array(), -'kvam' => array(), -'kvinesdal' => array(), -'kvinnherad' => array(), -'kviteseid' => array(), -'kvitsoy' => array(), -'kvitsøy' => array(), -'kvafjord' => array(), -'kvæfjord' => array(), -'giehtavuoatna' => array(), -'kvanangen' => array(), -'kvænangen' => array(), -'navuotna' => array(), -'návuotna' => array(), -'kafjord' => array(), -'kåfjord' => array(), -'gaivuotna' => array(), -'gáivuotna' => array(), -'larvik' => array(), -'lavangen' => array(), -'lavagis' => array(), -'loabat' => array(), -'loabát' => array(), -'lebesby' => array(), -'davvesiida' => array(), -'leikanger' => array(), -'leirfjord' => array(), -'leka' => array(), -'leksvik' => array(), -'lenvik' => array(), -'leangaviika' => array(), -'leaŋgaviika' => array(), -'lesja' => array(), -'levanger' => array(), -'lier' => array(), -'lierne' => array(), -'lillehammer' => array(), -'lillesand' => array(), -'lindesnes' => array(), -'lindas' => array(), -'lindås' => array(), -'lom' => array(), -'loppa' => array(), -'lahppi' => array(), -'láhppi' => array(), -'lund' => array(), -'lunner' => array(), -'luroy' => array(), -'lurøy' => array(), -'luster' => array(), -'lyngdal' => array(), -'lyngen' => array(), -'ivgu' => array(), -'lardal' => array(), -'lerdal' => array(), -'lærdal' => array(), -'lodingen' => array(), -'lødingen' => array(), -'lorenskog' => array(), -'lørenskog' => array(), -'loten' => array(), -'løten' => array(), -'malvik' => array(), -'masoy' => array(), -'måsøy' => array(), -'muosat' => array(), -'muosát' => array(), -'mandal' => array(), -'marker' => array(), -'marnardal' => array(), -'masfjorden' => array(), -'meland' => array(), -'meldal' => array(), -'melhus' => array(), -'meloy' => array(), -'meløy' => array(), -'meraker' => array(), -'meråker' => array(), -'moareke' => array(), -'moåreke' => array(), -'midsund' => array(), -'midtre-gauldal' => array(), -'modalen' => array(), -'modum' => array(), -'molde' => array(), -'moskenes' => array(), -'moss' => array(), -'mosvik' => array(), -'malselv' => array(), -'målselv' => array(), -'malatvuopmi' => array(), -'málatvuopmi' => array(), -'namdalseid' => array(), -'aejrie' => array(), -'namsos' => array(), -'namsskogan' => array(), -'naamesjevuemie' => array(), -'nååmesjevuemie' => array(), -'laakesvuemie' => array(), -'nannestad' => array(), -'narvik' => array(), -'narviika' => array(), -'naustdal' => array(), -'nedre-eiker' => array(), -'akershus' => array('nes' => array() -), -'buskerud' => array('nes' => array() -), -'nesna' => array(), -'nesodden' => array(), -'nesseby' => array(), -'unjarga' => array(), -'unjárga' => array(), -'nesset' => array(), -'nissedal' => array(), -'nittedal' => array(), -'nord-aurdal' => array(), -'nord-fron' => array(), -'nord-odal' => array(), -'norddal' => array(), -'nordkapp' => array(), -'davvenjarga' => array(), -'davvenjárga' => array(), -'nordre-land' => array(), -'nordreisa' => array(), -'raisa' => array(), -'ráisa' => array(), -'nore-og-uvdal' => array(), -'notodden' => array(), -'naroy' => array(), -'nærøy' => array(), -'notteroy' => array(), -'nøtterøy' => array(), -'odda' => array(), -'oksnes' => array(), -'øksnes' => array(), -'oppdal' => array(), -'oppegard' => array(), -'oppegård' => array(), -'orkdal' => array(), -'orland' => array(), -'ørland' => array(), -'orskog' => array(), -'ørskog' => array(), -'orsta' => array(), -'ørsta' => array(), -'hedmark' => array('os' => array(), -'valer' => array(), -'våler' => array() -), -'hordaland' => array('os' => array() -), -'osen' => array(), -'osteroy' => array(), -'osterøy' => array(), -'ostre-toten' => array(), -'østre-toten' => array(), -'overhalla' => array(), -'ovre-eiker' => array(), -'øvre-eiker' => array(), -'oyer' => array(), -'øyer' => array(), -'oygarden' => array(), -'øygarden' => array(), -'oystre-slidre' => array(), -'øystre-slidre' => array(), -'porsanger' => array(), -'porsangu' => array(), -'porsáŋgu' => array(), -'porsgrunn' => array(), -'radoy' => array(), -'radøy' => array(), -'rakkestad' => array(), -'rana' => array(), -'ruovat' => array(), -'randaberg' => array(), -'rauma' => array(), -'rendalen' => array(), -'rennebu' => array(), -'rennesoy' => array(), -'rennesøy' => array(), -'rindal' => array(), -'ringebu' => array(), -'ringerike' => array(), -'ringsaker' => array(), -'rissa' => array(), -'risor' => array(), -'risør' => array(), -'roan' => array(), -'rollag' => array(), -'rygge' => array(), -'ralingen' => array(), -'rælingen' => array(), -'rodoy' => array(), -'rødøy' => array(), -'romskog' => array(), -'rømskog' => array(), -'roros' => array(), -'røros' => array(), -'rost' => array(), -'røst' => array(), -'royken' => array(), -'røyken' => array(), -'royrvik' => array(), -'røyrvik' => array(), -'rade' => array(), -'råde' => array(), -'salangen' => array(), -'siellak' => array(), -'saltdal' => array(), -'salat' => array(), -'sálát' => array(), -'sálat' => array(), -'samnanger' => array(), -'vestfold' => array('sande' => array() -), -'sandefjord' => array(), -'sandnes' => array(), -'sandoy' => array(), -'sandøy' => array(), -'sarpsborg' => array(), -'sauda' => array(), -'sauherad' => array(), -'sel' => array(), -'selbu' => array(), -'selje' => array(), -'seljord' => array(), -'sigdal' => array(), -'siljan' => array(), -'sirdal' => array(), -'skaun' => array(), -'skedsmo' => array(), -'ski' => array(), -'skien' => array(), -'skiptvet' => array(), -'skjervoy' => array(), -'skjervøy' => array(), -'skierva' => array(), -'skiervá' => array(), -'skjak' => array(), -'skjåk' => array(), -'skodje' => array(), -'skanland' => array(), -'skånland' => array(), -'skanit' => array(), -'skánit' => array(), -'smola' => array(), -'smøla' => array(), -'snillfjord' => array(), -'snasa' => array(), -'snåsa' => array(), -'snoasa' => array(), -'snaase' => array(), -'snåase' => array(), -'sogndal' => array(), -'sokndal' => array(), -'sola' => array(), -'solund' => array(), -'songdalen' => array(), -'sortland' => array(), -'spydeberg' => array(), -'stange' => array(), -'stavanger' => array(), -'steigen' => array(), -'steinkjer' => array(), -'stjordal' => array(), -'stjørdal' => array(), -'stokke' => array(), -'stor-elvdal' => array(), -'stord' => array(), -'stordal' => array(), -'storfjord' => array(), -'omasvuotna' => array(), -'strand' => array(), -'stranda' => array(), -'stryn' => array(), -'sula' => array(), -'suldal' => array(), -'sund' => array(), -'sunndal' => array(), -'surnadal' => array(), -'sveio' => array(), -'svelvik' => array(), -'sykkylven' => array(), -'sogne' => array(), -'søgne' => array(), -'somna' => array(), -'sømna' => array(), -'sondre-land' => array(), -'søndre-land' => array(), -'sor-aurdal' => array(), -'sør-aurdal' => array(), -'sor-fron' => array(), -'sør-fron' => array(), -'sor-odal' => array(), -'sør-odal' => array(), -'sor-varanger' => array(), -'sør-varanger' => array(), -'matta-varjjat' => array(), -'mátta-várjjat' => array(), -'sorfold' => array(), -'sørfold' => array(), -'sorreisa' => array(), -'sørreisa' => array(), -'sorum' => array(), -'sørum' => array(), -'tana' => array(), -'deatnu' => array(), -'time' => array(), -'tingvoll' => array(), -'tinn' => array(), -'tjeldsund' => array(), -'dielddanuorri' => array(), -'tjome' => array(), -'tjøme' => array(), -'tokke' => array(), -'tolga' => array(), -'torsken' => array(), -'tranoy' => array(), -'tranøy' => array(), -'tromso' => array(), -'tromsø' => array(), -'tromsa' => array(), -'romsa' => array(), -'trondheim' => array(), -'troandin' => array(), -'trysil' => array(), -'trana' => array(), -'træna' => array(), -'trogstad' => array(), -'trøgstad' => array(), -'tvedestrand' => array(), -'tydal' => array(), -'tynset' => array(), -'tysfjord' => array(), -'divtasvuodna' => array(), -'divttasvuotna' => array(), -'tysnes' => array(), -'tysvar' => array(), -'tysvær' => array(), -'tonsberg' => array(), -'tønsberg' => array(), -'ullensaker' => array(), -'ullensvang' => array(), -'ulvik' => array(), -'utsira' => array(), -'vadso' => array(), -'vadsø' => array(), -'cahcesuolo' => array(), -'čáhcesuolo' => array(), -'vaksdal' => array(), -'valle' => array(), -'vang' => array(), -'vanylven' => array(), -'vardo' => array(), -'vardø' => array(), -'varggat' => array(), -'várggát' => array(), -'vefsn' => array(), -'vaapste' => array(), -'vega' => array(), -'vegarshei' => array(), -'vegårshei' => array(), -'vennesla' => array(), -'verdal' => array(), -'verran' => array(), -'vestby' => array(), -'vestnes' => array(), -'vestre-slidre' => array(), -'vestre-toten' => array(), -'vestvagoy' => array(), -'vestvågøy' => array(), -'vevelstad' => array(), -'vik' => array(), -'vikna' => array(), -'vindafjord' => array(), -'volda' => array(), -'voss' => array(), -'varoy' => array(), -'værøy' => array(), -'vagan' => array(), -'vågan' => array(), -'voagat' => array(), -'vagsoy' => array(), -'vågsøy' => array(), -'vaga' => array(), -'vågå' => array(), -'ostfold' => array('valer' => array() -), -'østfold' => array('våler' => array() -), -'co' => array() -), -'np' => array('*' => array() -), -'nr' => array('biz' => array(), -'info' => array(), -'gov' => array(), -'edu' => array(), -'org' => array(), -'net' => array(), -'com' => array() -), -'nu' => array('merseine' => array(), -'mine' => array(), -'shacknet' => array() -), -'nz' => array('*' => array() -), -'om' => array('*' => array(), -'mediaphone' => array('!' => '' -), -'nawrastelecom' => array('!' => '' -), -'nawras' => array('!' => '' -), -'omanmobile' => array('!' => '' -), -'omanpost' => array('!' => '' -), -'omantel' => array('!' => '' -), -'rakpetroleum' => array('!' => '' -), -'siemens' => array('!' => '' -), -'songfest' => array('!' => '' -), -'statecouncil' => array('!' => '' -) -), -'org' => array('ae' => array(), -'us' => array(), -'za' => array(), -'dyndns' => array('go' => array(), -'home' => array() -), -'blogdns' => array(), -'blogsite' => array(), -'boldlygoingnowhere' => array(), -'dnsalias' => array(), -'dnsdojo' => array(), -'doesntexist' => array(), -'dontexist' => array(), -'doomdns' => array(), -'dvrdns' => array(), -'dynalias' => array(), -'endofinternet' => array(), -'endoftheinternet' => array(), -'from-me' => array(), -'game-host' => array(), -'gotdns' => array(), -'hobby-site' => array(), -'homedns' => array(), -'homeftp' => array(), -'homelinux' => array(), -'homeunix' => array(), -'is-a-bruinsfan' => array(), -'is-a-candidate' => array(), -'is-a-celticsfan' => array(), -'is-a-chef' => array(), -'is-a-geek' => array(), -'is-a-knight' => array(), -'is-a-linux-user' => array(), -'is-a-patsfan' => array(), -'is-a-soxfan' => array(), -'is-found' => array(), -'is-lost' => array(), -'is-saved' => array(), -'is-very-bad' => array(), -'is-very-evil' => array(), -'is-very-good' => array(), -'is-very-nice' => array(), -'is-very-sweet' => array(), -'isa-geek' => array(), -'kicks-ass' => array(), -'misconfused' => array(), -'podzone' => array(), -'readmyblog' => array(), -'selfip' => array(), -'sellsyourhome' => array(), -'servebbs' => array(), -'serveftp' => array(), -'servegame' => array(), -'stuff-4-sale' => array(), -'webhop' => array() -), -'pa' => array('ac' => array(), -'gob' => array(), -'com' => array(), -'org' => array(), -'sld' => array(), -'edu' => array(), -'net' => array(), -'ing' => array(), -'abo' => array(), -'med' => array(), -'nom' => array() -), -'pe' => array('edu' => array(), -'gob' => array(), -'nom' => array(), -'mil' => array(), -'org' => array(), -'com' => array(), -'net' => array() -), -'pf' => array('com' => array(), -'org' => array(), -'edu' => array() -), -'pg' => array('*' => array() -), -'ph' => array('com' => array(), -'net' => array(), -'org' => array(), -'gov' => array(), -'edu' => array(), -'ngo' => array(), -'mil' => array(), -'i' => array() -), -'pk' => array('com' => array(), -'net' => array(), -'edu' => array(), -'org' => array(), -'fam' => array(), -'biz' => array(), -'web' => array(), -'gov' => array(), -'gob' => array(), -'gok' => array(), -'gon' => array(), -'gop' => array(), -'gos' => array(), -'info' => array() -), -'pl' => array('aid' => array(), -'agro' => array(), -'atm' => array(), -'auto' => array(), -'biz' => array(), -'com' => array(), -'edu' => array(), -'gmina' => array(), -'gsm' => array(), -'info' => array(), -'mail' => array(), -'miasta' => array(), -'media' => array(), -'mil' => array(), -'net' => array(), -'nieruchomosci' => array(), -'nom' => array(), -'org' => array(), -'pc' => array(), -'powiat' => array(), -'priv' => array(), -'realestate' => array(), -'rel' => array(), -'sex' => array(), -'shop' => array(), -'sklep' => array(), -'sos' => array(), -'szkola' => array(), -'targi' => array(), -'tm' => array(), -'tourism' => array(), -'travel' => array(), -'turystyka' => array(), -'6bone' => array(), -'art' => array(), -'mbone' => array(), -'gov' => array('uw' => array(), -'um' => array(), -'ug' => array(), -'upow' => array(), -'starostwo' => array(), -'so' => array(), -'sr' => array(), -'po' => array(), -'pa' => array() -), -'ngo' => array(), -'irc' => array(), -'usenet' => array(), -'augustow' => array(), -'babia-gora' => array(), -'bedzin' => array(), -'beskidy' => array(), -'bialowieza' => array(), -'bialystok' => array(), -'bielawa' => array(), -'bieszczady' => array(), -'boleslawiec' => array(), -'bydgoszcz' => array(), -'bytom' => array(), -'cieszyn' => array(), -'czeladz' => array(), -'czest' => array(), -'dlugoleka' => array(), -'elblag' => array(), -'elk' => array(), -'glogow' => array(), -'gniezno' => array(), -'gorlice' => array(), -'grajewo' => array(), -'ilawa' => array(), -'jaworzno' => array(), -'jelenia-gora' => array(), -'jgora' => array(), -'kalisz' => array(), -'kazimierz-dolny' => array(), -'karpacz' => array(), -'kartuzy' => array(), -'kaszuby' => array(), -'katowice' => array(), -'kepno' => array(), -'ketrzyn' => array(), -'klodzko' => array(), -'kobierzyce' => array(), -'kolobrzeg' => array(), -'konin' => array(), -'konskowola' => array(), -'kutno' => array(), -'lapy' => array(), -'lebork' => array(), -'legnica' => array(), -'lezajsk' => array(), -'limanowa' => array(), -'lomza' => array(), -'lowicz' => array(), -'lubin' => array(), -'lukow' => array(), -'malbork' => array(), -'malopolska' => array(), -'mazowsze' => array(), -'mazury' => array(), -'mielec' => array(), -'mielno' => array(), -'mragowo' => array(), -'naklo' => array(), -'nowaruda' => array(), -'nysa' => array(), -'olawa' => array(), -'olecko' => array(), -'olkusz' => array(), -'olsztyn' => array(), -'opoczno' => array(), -'opole' => array(), -'ostroda' => array(), -'ostroleka' => array(), -'ostrowiec' => array(), -'ostrowwlkp' => array(), -'pila' => array(), -'pisz' => array(), -'podhale' => array(), -'podlasie' => array(), -'polkowice' => array(), -'pomorze' => array(), -'pomorskie' => array(), -'prochowice' => array(), -'pruszkow' => array(), -'przeworsk' => array(), -'pulawy' => array(), -'radom' => array(), -'rawa-maz' => array(), -'rybnik' => array(), -'rzeszow' => array(), -'sanok' => array(), -'sejny' => array(), -'siedlce' => array(), -'slask' => array(), -'slupsk' => array(), -'sosnowiec' => array(), -'stalowa-wola' => array(), -'skoczow' => array(), -'starachowice' => array(), -'stargard' => array(), -'suwalki' => array(), -'swidnica' => array(), -'swiebodzin' => array(), -'swinoujscie' => array(), -'szczecin' => array(), -'szczytno' => array(), -'tarnobrzeg' => array(), -'tgory' => array(), -'turek' => array(), -'tychy' => array(), -'ustka' => array(), -'walbrzych' => array(), -'warmia' => array(), -'warszawa' => array(), -'waw' => array(), -'wegrow' => array(), -'wielun' => array(), -'wlocl' => array(), -'wloclawek' => array(), -'wodzislaw' => array(), -'wolomin' => array(), -'wroclaw' => array(), -'zachpomor' => array(), -'zagan' => array(), -'zarow' => array(), -'zgora' => array(), -'zgorzelec' => array(), -'gda' => array(), -'gdansk' => array(), -'gdynia' => array(), -'med' => array(), -'sopot' => array(), -'gliwice' => array(), -'krakow' => array(), -'poznan' => array(), -'wroc' => array(), -'zakopane' => array(), -'co' => array() -), -'pm' => array(), -'pn' => array('gov' => array(), -'co' => array(), -'org' => array(), -'edu' => array(), -'net' => array() -), -'pr' => array('com' => array(), -'net' => array(), -'org' => array(), -'gov' => array(), -'edu' => array(), -'isla' => array(), -'pro' => array(), -'biz' => array(), -'info' => array(), -'name' => array(), -'est' => array(), -'prof' => array(), -'ac' => array() -), -'pro' => array('aca' => array(), -'bar' => array(), -'cpa' => array(), -'jur' => array(), -'law' => array(), -'med' => array(), -'eng' => array() -), -'ps' => array('edu' => array(), -'gov' => array(), -'sec' => array(), -'plo' => array(), -'com' => array(), -'org' => array(), -'net' => array() -), -'pt' => array('net' => array(), -'gov' => array(), -'org' => array(), -'edu' => array(), -'int' => array(), -'publ' => array(), -'com' => array(), -'nome' => array() -), -'pw' => array('co' => array(), -'ne' => array(), -'or' => array(), -'ed' => array(), -'go' => array(), -'belau' => array() -), -'py' => array('*' => array() -), -'qa' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'mil' => array(), -'name' => array(), -'net' => array(), -'org' => array(), -'sch' => array() -), -'re' => array('com' => array(), -'asso' => array(), -'nom' => array() -), -'ro' => array('com' => array(), -'org' => array(), -'tm' => array(), -'nt' => array(), -'nom' => array(), -'info' => array(), -'rec' => array(), -'arts' => array(), -'firm' => array(), -'store' => array(), -'www' => array() -), -'rs' => array('co' => array(), -'org' => array(), -'edu' => array(), -'ac' => array(), -'gov' => array(), -'in' => array() -), -'ru' => array('ac' => array(), -'com' => array(), -'edu' => array(), -'int' => array(), -'net' => array(), -'org' => array(), -'pp' => array(), -'adygeya' => array(), -'altai' => array(), -'amur' => array(), -'arkhangelsk' => array(), -'astrakhan' => array(), -'bashkiria' => array(), -'belgorod' => array(), -'bir' => array(), -'bryansk' => array(), -'buryatia' => array(), -'cbg' => array(), -'chel' => array(), -'chelyabinsk' => array(), -'chita' => array(), -'chukotka' => array(), -'chuvashia' => array(), -'dagestan' => array(), -'dudinka' => array(), -'e-burg' => array(), -'grozny' => array(), -'irkutsk' => array(), -'ivanovo' => array(), -'izhevsk' => array(), -'jar' => array(), -'joshkar-ola' => array(), -'kalmykia' => array(), -'kaluga' => array(), -'kamchatka' => array(), -'karelia' => array(), -'kazan' => array(), -'kchr' => array(), -'kemerovo' => array(), -'khabarovsk' => array(), -'khakassia' => array(), -'khv' => array(), -'kirov' => array(), -'koenig' => array(), -'komi' => array(), -'kostroma' => array(), -'krasnoyarsk' => array(), -'kuban' => array(), -'kurgan' => array(), -'kursk' => array(), -'lipetsk' => array(), -'magadan' => array(), -'mari' => array(), -'mari-el' => array(), -'marine' => array(), -'mordovia' => array(), -'mosreg' => array(), -'msk' => array(), -'murmansk' => array(), -'nalchik' => array(), -'nnov' => array(), -'nov' => array(), -'novosibirsk' => array(), -'nsk' => array(), -'omsk' => array(), -'orenburg' => array(), -'oryol' => array(), -'palana' => array(), -'penza' => array(), -'perm' => array(), -'pskov' => array(), -'ptz' => array(), -'rnd' => array(), -'ryazan' => array(), -'sakhalin' => array(), -'samara' => array(), -'saratov' => array(), -'simbirsk' => array(), -'smolensk' => array(), -'spb' => array(), -'stavropol' => array(), -'stv' => array(), -'surgut' => array(), -'tambov' => array(), -'tatarstan' => array(), -'tom' => array(), -'tomsk' => array(), -'tsaritsyn' => array(), -'tsk' => array(), -'tula' => array(), -'tuva' => array(), -'tver' => array(), -'tyumen' => array(), -'udm' => array(), -'udmurtia' => array(), -'ulan-ude' => array(), -'vladikavkaz' => array(), -'vladimir' => array(), -'vladivostok' => array(), -'volgograd' => array(), -'vologda' => array(), -'voronezh' => array(), -'vrn' => array(), -'vyatka' => array(), -'yakutia' => array(), -'yamal' => array(), -'yaroslavl' => array(), -'yekaterinburg' => array(), -'yuzhno-sakhalinsk' => array(), -'amursk' => array(), -'baikal' => array(), -'cmw' => array(), -'fareast' => array(), -'jamal' => array(), -'kms' => array(), -'k-uralsk' => array(), -'kustanai' => array(), -'kuzbass' => array(), -'magnitka' => array(), -'mytis' => array(), -'nakhodka' => array(), -'nkz' => array(), -'norilsk' => array(), -'oskol' => array(), -'pyatigorsk' => array(), -'rubtsovsk' => array(), -'snz' => array(), -'syzran' => array(), -'vdonsk' => array(), -'zgrad' => array(), -'gov' => array(), -'mil' => array(), -'test' => array() -), -'rw' => array('gov' => array(), -'net' => array(), -'edu' => array(), -'ac' => array(), -'com' => array(), -'co' => array(), -'int' => array(), -'mil' => array(), -'gouv' => array() -), -'sa' => array('com' => array(), -'net' => array(), -'org' => array(), -'gov' => array(), -'med' => array(), -'pub' => array(), -'edu' => array(), -'sch' => array() -), -'sb' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'net' => array(), -'org' => array() -), -'sc' => array('com' => array(), -'gov' => array(), -'net' => array(), -'org' => array(), -'edu' => array() -), -'sd' => array('com' => array(), -'net' => array(), -'org' => array(), -'edu' => array(), -'med' => array(), -'tv' => array(), -'gov' => array(), -'info' => array() -), -'se' => array('a' => array(), -'ac' => array(), -'b' => array(), -'bd' => array(), -'brand' => array(), -'c' => array(), -'d' => array(), -'e' => array(), -'f' => array(), -'fh' => array(), -'fhsk' => array(), -'fhv' => array(), -'g' => array(), -'h' => array(), -'i' => array(), -'k' => array(), -'komforb' => array(), -'kommunalforbund' => array(), -'komvux' => array(), -'l' => array(), -'lanbib' => array(), -'m' => array(), -'n' => array(), -'naturbruksgymn' => array(), -'o' => array(), -'org' => array(), -'p' => array(), -'parti' => array(), -'pp' => array(), -'press' => array(), -'r' => array(), -'s' => array(), -'sshn' => array(), -'t' => array(), -'tm' => array(), -'u' => array(), -'w' => array(), -'x' => array(), -'y' => array(), -'z' => array() -), -'sg' => array('com' => array(), -'net' => array(), -'org' => array(), -'gov' => array(), -'edu' => array(), -'per' => array() -), -'sh' => array('com' => array(), -'net' => array(), -'gov' => array(), -'org' => array(), -'mil' => array() -), -'si' => array(), -'sk' => array(), -'sl' => array('com' => array(), -'net' => array(), -'edu' => array(), -'gov' => array(), -'org' => array() -), -'sm' => array(), -'sn' => array('art' => array(), -'com' => array(), -'edu' => array(), -'gouv' => array(), -'org' => array(), -'perso' => array(), -'univ' => array() -), -'so' => array('com' => array(), -'net' => array(), -'org' => array() -), -'sr' => array(), -'st' => array('co' => array(), -'com' => array(), -'consulado' => array(), -'edu' => array(), -'embaixada' => array(), -'gov' => array(), -'mil' => array(), -'net' => array(), -'org' => array(), -'principe' => array(), -'saotome' => array(), -'store' => array() -), -'su' => array(), -'sv' => array('*' => array() -), -'sx' => array('gov' => array() -), -'sy' => array('edu' => array(), -'gov' => array(), -'net' => array(), -'mil' => array(), -'com' => array(), -'org' => array() -), -'sz' => array('co' => array(), -'ac' => array(), -'org' => array() -), -'tc' => array(), -'td' => array(), -'tel' => array(), -'tf' => array(), -'tg' => array(), -'th' => array('ac' => array(), -'co' => array(), -'go' => array(), -'in' => array(), -'mi' => array(), -'net' => array(), -'or' => array() -), -'tj' => array('ac' => array(), -'biz' => array(), -'co' => array(), -'com' => array(), -'edu' => array(), -'go' => array(), -'gov' => array(), -'int' => array(), -'mil' => array(), -'name' => array(), -'net' => array(), -'nic' => array(), -'org' => array(), -'test' => array(), -'web' => array() -), -'tk' => array(), -'tl' => array('gov' => array() -), -'tm' => array('com' => array(), -'co' => array(), -'org' => array(), -'net' => array(), -'nom' => array(), -'gov' => array(), -'mil' => array(), -'edu' => array() -), -'tn' => array('com' => array(), -'ens' => array(), -'fin' => array(), -'gov' => array(), -'ind' => array(), -'intl' => array(), -'nat' => array(), -'net' => array(), -'org' => array(), -'info' => array(), -'perso' => array(), -'tourism' => array(), -'edunet' => array(), -'rnrt' => array(), -'rns' => array(), -'rnu' => array(), -'mincom' => array(), -'agrinet' => array(), -'defense' => array(), -'turen' => array() -), -'to' => array('com' => array(), -'gov' => array(), -'net' => array(), -'org' => array(), -'edu' => array(), -'mil' => array() -), -'tr' => array('*' => array(), -'nic' => array('!' => '' -), -'nc' => array('gov' => array() -) -), -'travel' => array(), -'tt' => array('co' => array(), -'com' => array(), -'org' => array(), -'net' => array(), -'biz' => array(), -'info' => array(), -'pro' => array(), -'int' => array(), -'coop' => array(), -'jobs' => array(), -'mobi' => array(), -'travel' => array(), -'museum' => array(), -'aero' => array(), -'name' => array(), -'gov' => array(), -'edu' => array() -), -'tv' => array('dyndns' => array(), -'better-than' => array(), -'on-the-web' => array(), -'worse-than' => array() -), -'tw' => array('edu' => array(), -'gov' => array(), -'mil' => array(), -'com' => array(), -'net' => array(), -'org' => array(), -'idv' => array(), -'game' => array(), -'ebiz' => array(), -'club' => array(), -'網路' => array(), -'組織' => array(), -'商業' => array() -), -'tz' => array('ac' => array(), -'co' => array(), -'go' => array(), -'mil' => array(), -'ne' => array(), -'or' => array(), -'sc' => array() -), -'ua' => array('com' => array(), -'edu' => array(), -'gov' => array(), -'in' => array(), -'net' => array(), -'org' => array(), -'cherkassy' => array(), -'cherkasy' => array(), -'chernigov' => array(), -'chernihiv' => array(), -'chernivtsi' => array(), -'chernovtsy' => array(), -'ck' => array(), -'cn' => array(), -'cr' => array(), -'crimea' => array(), -'cv' => array(), -'dn' => array(), -'dnepropetrovsk' => array(), -'dnipropetrovsk' => array(), -'dominic' => array(), -'donetsk' => array(), -'dp' => array(), -'if' => array(), -'ivano-frankivsk' => array(), -'kh' => array(), -'kharkiv' => array(), -'kharkov' => array(), -'kherson' => array(), -'khmelnitskiy' => array(), -'khmelnytskyi' => array(), -'kiev' => array(), -'kirovograd' => array(), -'km' => array(), -'kr' => array(), -'krym' => array(), -'ks' => array(), -'kv' => array(), -'kyiv' => array(), -'lg' => array(), -'lt' => array(), -'lugansk' => array(), -'lutsk' => array(), -'lv' => array(), -'lviv' => array(), -'mk' => array(), -'mykolaiv' => array(), -'nikolaev' => array(), -'od' => array(), -'odesa' => array(), -'odessa' => array(), -'pl' => array(), -'poltava' => array(), -'rivne' => array(), -'rovno' => array(), -'rv' => array(), -'sb' => array(), -'sebastopol' => array(), -'sevastopol' => array(), -'sm' => array(), -'sumy' => array(), -'te' => array(), -'ternopil' => array(), -'uz' => array(), -'uzhgorod' => array(), -'vinnica' => array(), -'vinnytsia' => array(), -'vn' => array(), -'volyn' => array(), -'yalta' => array(), -'zaporizhzhe' => array(), -'zaporizhzhia' => array(), -'zhitomir' => array(), -'zhytomyr' => array(), -'zp' => array(), -'zt' => array(), -'co' => array(), -'pp' => array() -), -'ug' => array('co' => array(), -'or' => array(), -'ac' => array(), -'sc' => array(), -'go' => array(), -'ne' => array(), -'com' => array(), -'org' => array() -), -'uk' => array('*' => array(), -'nhs' => array('*' => array() -), -'police' => array('*' => array() -), -'sch' => array('*' => array() -), -'bl' => array('!' => '' -), -'british-library' => array('!' => '' -), -'jet' => array('!' => '' -), -'mod' => array('!' => '' -), -'national-library-scotland' => array('!' => '' -), -'nel' => array('!' => '' -), -'nic' => array('!' => '' -), -'nls' => array('!' => '' -), -'parliament' => array('!' => '' -) -), -'us' => array('dni' => array(), -'fed' => array(), -'isa' => array(), -'kids' => array(), -'nsn' => array(), -'ak' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'al' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ar' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'as' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'az' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ca' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'co' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ct' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'dc' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'de' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'fl' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ga' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'gu' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'hi' => array('cc' => array(), -'lib' => array() -), -'ia' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'id' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'il' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'in' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ks' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ky' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'la' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ma' => array('k12' => array('pvt' => array(), -'chtr' => array(), -'paroch' => array() -), -'cc' => array(), -'lib' => array() -), -'md' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'me' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'mi' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'mn' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'mo' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ms' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'mt' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'nc' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'nd' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ne' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'nh' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'nj' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'nm' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'nv' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ny' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'oh' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ok' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'or' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'pa' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'pr' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ri' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'sc' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'sd' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'tn' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'tx' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'ut' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'vi' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'vt' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'va' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'wa' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'wi' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'wv' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'wy' => array('k12' => array(), -'cc' => array(), -'lib' => array() -), -'is-by' => array(), -'land-4-sale' => array(), -'stuff-4-sale' => array() -), -'uy' => array('com' => array(), -'edu' => array(), -'gub' => array(), -'mil' => array(), -'net' => array(), -'org' => array() -), -'uz' => array('co' => array(), -'com' => array(), -'net' => array(), -'org' => array() -), -'va' => array(), -'vc' => array('com' => array(), -'net' => array(), -'org' => array(), -'gov' => array(), -'mil' => array(), -'edu' => array() -), -'ve' => array('co' => array(), -'com' => array(), -'e12' => array(), -'edu' => array(), -'gov' => array(), -'info' => array(), -'mil' => array(), -'net' => array(), -'org' => array(), -'web' => array() -), -'vg' => array(), -'vi' => array('co' => array(), -'com' => array(), -'k12' => array(), -'net' => array(), -'org' => array() -), -'vn' => array('com' => array(), -'net' => array(), -'org' => array(), -'edu' => array(), -'gov' => array(), -'int' => array(), -'ac' => array(), -'biz' => array(), -'info' => array(), -'name' => array(), -'pro' => array(), -'health' => array() -), -'vu' => array(), -'wf' => array(), -'ws' => array('com' => array(), -'net' => array(), -'org' => array(), -'gov' => array(), -'edu' => array(), -'dyndns' => array(), -'mypets' => array() -), -'yt' => array(), -'امارات' => array(), -'বাংলা' => array(), -'中国' => array(), -'中國' => array(), -'الجزائر' => array(), -'مصر' => array(), -'გე' => array(), -'香港' => array(), -'भारत' => array(), -'بھارت' => array(), -'భారత్' => array(), -'ભારત' => array(), -'ਭਾਰਤ' => array(), -'ভারত' => array(), -'இந்தியா' => array(), -'ایران' => array(), -'ايران' => array(), -'الاردن' => array(), -'한국' => array(), -'ලංකා' => array(), -'இலங்கை' => array(), -'المغرب' => array(), -'عمان' => array(), -'فلسطين' => array(), -'срб' => array(), -'рф' => array(), -'قطر' => array(), -'السعودية' => array(), -'السعودیة' => array(), -'السعودیۃ' => array(), -'السعوديه' => array(), -'سورية' => array(), -'سوريا' => array(), -'新加坡' => array(), -'சிங்கப்பூர்' => array(), -'ไทย' => array(), -'تونس' => array(), -'台灣' => array(), -'台湾' => array(), -'臺灣' => array(), -'укр' => array(), -'اليمن' => array(), -'xxx' => array(), -'ye' => array('*' => array() -), -'za' => array('*' => array() -), -'zm' => array('*' => array() -), -'zw' => array('*' => array() -) -); +$tldTree = ['ac' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'net' => [], + 'mil' => [], + 'org' => [], +], + 'ad' => ['nom' => [], + ], + 'ae' => ['co' => [], + 'net' => [], + 'org' => [], + 'sch' => [], + 'ac' => [], + 'gov' => [], + 'mil' => [], + ], + 'aero' => ['accident-investigation' => [], + 'accident-prevention' => [], + 'aerobatic' => [], + 'aeroclub' => [], + 'aerodrome' => [], + 'agents' => [], + 'aircraft' => [], + 'airline' => [], + 'airport' => [], + 'air-surveillance' => [], + 'airtraffic' => [], + 'air-traffic-control' => [], + 'ambulance' => [], + 'amusement' => [], + 'association' => [], + 'author' => [], + 'ballooning' => [], + 'broker' => [], + 'caa' => [], + 'cargo' => [], + 'catering' => [], + 'certification' => [], + 'championship' => [], + 'charter' => [], + 'civilaviation' => [], + 'club' => [], + 'conference' => [], + 'consultant' => [], + 'consulting' => [], + 'control' => [], + 'council' => [], + 'crew' => [], + 'design' => [], + 'dgca' => [], + 'educator' => [], + 'emergency' => [], + 'engine' => [], + 'engineer' => [], + 'entertainment' => [], + 'equipment' => [], + 'exchange' => [], + 'express' => [], + 'federation' => [], + 'flight' => [], + 'freight' => [], + 'fuel' => [], + 'gliding' => [], + 'government' => [], + 'groundhandling' => [], + 'group' => [], + 'hanggliding' => [], + 'homebuilt' => [], + 'insurance' => [], + 'journal' => [], + 'journalist' => [], + 'leasing' => [], + 'logistics' => [], + 'magazine' => [], + 'maintenance' => [], + 'marketplace' => [], + 'media' => [], + 'microlight' => [], + 'modelling' => [], + 'navigation' => [], + 'parachuting' => [], + 'paragliding' => [], + 'passenger-association' => [], + 'pilot' => [], + 'press' => [], + 'production' => [], + 'recreation' => [], + 'repbody' => [], + 'res' => [], + 'research' => [], + 'rotorcraft' => [], + 'safety' => [], + 'scientist' => [], + 'services' => [], + 'show' => [], + 'skydiving' => [], + 'software' => [], + 'student' => [], + 'taxi' => [], + 'trader' => [], + 'trading' => [], + 'trainer' => [], + 'union' => [], + 'workinggroup' => [], + 'works' => [], + ], + 'af' => ['gov' => [], + 'com' => [], + 'org' => [], + 'net' => [], + 'edu' => [], + ], + 'ag' => ['com' => [], + 'org' => [], + 'net' => [], + 'co' => [], + 'nom' => [], + ], + 'ai' => ['off' => [], + 'com' => [], + 'net' => [], + 'org' => [], + ], + 'al' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'mil' => [], + 'net' => [], + 'org' => [], + ], + 'am' => [], + 'an' => ['com' => [], + 'net' => [], + 'org' => [], + 'edu' => [], + ], + 'ao' => ['ed' => [], + 'gv' => [], + 'og' => [], + 'co' => [], + 'pb' => [], + 'it' => [], + ], + 'aq' => [], + 'ar' => ['*' => [], + 'congresodelalengua3' => ['!' => '' + ], + 'educ' => ['!' => '' + ], + 'gobiernoelectronico' => ['!' => '' + ], + 'mecon' => ['!' => '' + ], + 'nacion' => ['!' => '' + ], + 'nic' => ['!' => '' + ], + 'promocion' => ['!' => '' + ], + 'retina' => ['!' => '' + ], + 'uba' => ['!' => '' + ], + ], + 'arpa' => ['e164' => [], + 'in-addr' => [], + 'ip6' => [], + 'iris' => [], + 'uri' => [], + 'urn' => [], + ], + 'as' => ['gov' => [], + ], + 'asia' => [], + 'at' => ['ac' => [], + 'co' => [], + 'gv' => [], + 'or' => [], + 'biz' => [], + 'info' => [], + 'priv' => [], + ], + 'au' => ['com' => [], + 'net' => [], + 'org' => [], + 'edu' => ['act' => [], + 'nsw' => [], + 'nt' => [], + 'qld' => [], + 'sa' => [], + 'tas' => [], + 'vic' => [], + 'wa' => [], + ], + 'gov' => ['act' => [], + 'nt' => [], + 'qld' => [], + 'sa' => [], + 'tas' => [], + 'vic' => [], + 'wa' => [], + ], + 'csiro' => [], + 'asn' => [], + 'id' => [], + 'info' => [], + 'conf' => [], + 'oz' => [], + 'act' => [], + 'nsw' => [], + 'nt' => [], + 'qld' => [], + 'sa' => [], + 'tas' => [], + 'vic' => [], + 'wa' => [], + ], + 'aw' => ['com' => [], + ], + 'ax' => [], + 'az' => ['com' => [], + 'net' => [], + 'int' => [], + 'gov' => [], + 'org' => [], + 'edu' => [], + 'info' => [], + 'pp' => [], + 'mil' => [], + 'name' => [], + 'pro' => [], + 'biz' => [], + ], + 'ba' => ['org' => [], + 'net' => [], + 'edu' => [], + 'gov' => [], + 'mil' => [], + 'unsa' => [], + 'unbi' => [], + 'co' => [], + 'com' => [], + 'rs' => [], + ], + 'bb' => ['biz' => [], + 'com' => [], + 'edu' => [], + 'gov' => [], + 'info' => [], + 'net' => [], + 'org' => [], + 'store' => [], + ], + 'bd' => ['*' => [], + ], + 'be' => ['ac' => [], + ], + 'bf' => ['gov' => [], + ], + 'bg' => ['a' => [], + 'b' => [], + 'c' => [], + 'd' => [], + 'e' => [], + 'f' => [], + 'g' => [], + 'h' => [], + 'i' => [], + 'j' => [], + 'k' => [], + 'l' => [], + 'm' => [], + 'n' => [], + 'o' => [], + 'p' => [], + 'q' => [], + 'r' => [], + 's' => [], + 't' => [], + 'u' => [], + 'v' => [], + 'w' => [], + 'x' => [], + 'y' => [], + 'z' => [], + '0' => [], + '1' => [], + '2' => [], + '3' => [], + '4' => [], + '5' => [], + '6' => [], + '7' => [], + '8' => [], + '9' => [], + ], + 'bh' => ['com' => [], + 'edu' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + ], + 'bi' => ['co' => [], + 'com' => [], + 'edu' => [], + 'or' => [], + 'org' => [], + ], + 'biz' => ['dyndns' => [], + 'for-better' => [], + 'for-more' => [], + 'for-some' => [], + 'for-the' => [], + 'selfip' => [], + 'webhop' => [], + ], + 'bj' => ['asso' => [], + 'barreau' => [], + 'gouv' => [], + ], + 'bm' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'net' => [], + 'org' => [], + ], + 'bn' => ['*' => [], + ], + 'bo' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'gob' => [], + 'int' => [], + 'org' => [], + 'net' => [], + 'mil' => [], + 'tv' => [], + ], + 'br' => ['adm' => [], + 'adv' => [], + 'agr' => [], + 'am' => [], + 'arq' => [], + 'art' => [], + 'ato' => [], + 'b' => [], + 'bio' => [], + 'blog' => [], + 'bmd' => [], + 'cim' => [], + 'cng' => [], + 'cnt' => [], + 'com' => [], + 'coop' => [], + 'ecn' => [], + 'eco' => [], + 'edu' => [], + 'emp' => [], + 'eng' => [], + 'esp' => [], + 'etc' => [], + 'eti' => [], + 'far' => [], + 'flog' => [], + 'fm' => [], + 'fnd' => [], + 'fot' => [], + 'fst' => [], + 'g12' => [], + 'ggf' => [], + 'gov' => [], + 'imb' => [], + 'ind' => [], + 'inf' => [], + 'jor' => [], + 'jus' => [], + 'leg' => [], + 'lel' => [], + 'mat' => [], + 'med' => [], + 'mil' => [], + 'mus' => [], + 'net' => [], + 'nom' => [], + 'not' => [], + 'ntr' => [], + 'odo' => [], + 'org' => [], + 'ppg' => [], + 'pro' => [], + 'psc' => [], + 'psi' => [], + 'qsl' => [], + 'radio' => [], + 'rec' => [], + 'slg' => [], + 'srv' => [], + 'taxi' => [], + 'teo' => [], + 'tmp' => [], + 'trd' => [], + 'tur' => [], + 'tv' => [], + 'vet' => [], + 'vlog' => [], + 'wiki' => [], + 'zlg' => [], + ], + 'bs' => ['com' => [], + 'net' => [], + 'org' => [], + 'edu' => [], + 'gov' => [], + ], + 'bt' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'net' => [], + 'org' => [], + ], + 'bw' => ['co' => [], + 'org' => [], + ], + 'by' => ['gov' => [], + 'mil' => [], + 'com' => [], + 'of' => [], + ], + 'bz' => ['com' => [], + 'net' => [], + 'org' => [], + 'edu' => [], + 'gov' => [], + ], + 'ca' => ['ab' => [], + 'bc' => [], + 'mb' => [], + 'nb' => [], + 'nf' => [], + 'nl' => [], + 'ns' => [], + 'nt' => [], + 'nu' => [], + 'on' => [], + 'pe' => [], + 'qc' => [], + 'sk' => [], + 'yk' => [], + 'gc' => [], + 'co' => [], + ], + 'cat' => [], + 'cc' => ['ftpaccess' => [], + 'game-server' => [], + 'myphotos' => [], + 'scrapping' => [], + ], + 'cd' => ['gov' => [], + ], + 'cf' => [], + 'cg' => [], + 'ch' => [], + 'ci' => ['org' => [], + 'or' => [], + 'com' => [], + 'co' => [], + 'edu' => [], + 'ed' => [], + 'ac' => [], + 'net' => [], + 'go' => [], + 'asso' => [], + 'aéroport' => [], + 'int' => [], + 'presse' => [], + 'md' => [], + 'gouv' => [], + ], + 'ck' => ['*' => [], + 'www' => ['!' => '' + ], + ], + 'cl' => ['gov' => [], + 'gob' => [], + 'co' => [], + 'mil' => [], + ], + 'cm' => ['gov' => [], + ], + 'cn' => ['ac' => [], + 'com' => [], + 'edu' => [], + 'gov' => [], + 'net' => [], + 'org' => [], + 'mil' => [], + '公司' => [], + '网络' => [], + '網絡' => [], + 'ah' => [], + 'bj' => [], + 'cq' => [], + 'fj' => [], + 'gd' => [], + 'gs' => [], + 'gz' => [], + 'gx' => [], + 'ha' => [], + 'hb' => [], + 'he' => [], + 'hi' => [], + 'hl' => [], + 'hn' => [], + 'jl' => [], + 'js' => [], + 'jx' => [], + 'ln' => [], + 'nm' => [], + 'nx' => [], + 'qh' => [], + 'sc' => [], + 'sd' => [], + 'sh' => [], + 'sn' => [], + 'sx' => [], + 'tj' => [], + 'xj' => [], + 'xz' => [], + 'yn' => [], + 'zj' => [], + 'hk' => [], + 'mo' => [], + 'tw' => [], + ], + 'co' => ['arts' => [], + 'com' => [], + 'edu' => [], + 'firm' => [], + 'gov' => [], + 'info' => [], + 'int' => [], + 'mil' => [], + 'net' => [], + 'nom' => [], + 'org' => [], + 'rec' => [], + 'web' => [], + ], + 'com' => ['ar' => [], + 'br' => [], + 'cn' => [], + 'de' => [], + 'eu' => [], + 'gb' => [], + 'gr' => [], + 'hu' => [], + 'jpn' => [], + 'kr' => [], + 'no' => [], + 'qc' => [], + 'ru' => [], + 'sa' => [], + 'se' => [], + 'uk' => [], + 'us' => [], + 'uy' => [], + 'za' => [], + 'operaunite' => [], + 'appspot' => [], + 'dreamhosters' => [], + 'dyndns-at-home' => [], + 'dyndns-at-work' => [], + 'dyndns-blog' => [], + 'dyndns-free' => [], + 'dyndns-home' => [], + 'dyndns-ip' => [], + 'dyndns-mail' => [], + 'dyndns-office' => [], + 'dyndns-pics' => [], + 'dyndns-remote' => [], + 'dyndns-server' => [], + 'dyndns-web' => [], + 'dyndns-wiki' => [], + 'dyndns-work' => [], + 'blogdns' => [], + 'cechire' => [], + 'dnsalias' => [], + 'dnsdojo' => [], + 'doesntexist' => [], + 'dontexist' => [], + 'doomdns' => [], + 'dyn-o-saur' => [], + 'dynalias' => [], + 'est-a-la-maison' => [], + 'est-a-la-masion' => [], + 'est-le-patron' => [], + 'est-mon-blogueur' => [], + 'from-ak' => [], + 'from-al' => [], + 'from-ar' => [], + 'from-ca' => [], + 'from-ct' => [], + 'from-dc' => [], + 'from-de' => [], + 'from-fl' => [], + 'from-ga' => [], + 'from-hi' => [], + 'from-ia' => [], + 'from-id' => [], + 'from-il' => [], + 'from-in' => [], + 'from-ks' => [], + 'from-ky' => [], + 'from-ma' => [], + 'from-md' => [], + 'from-mi' => [], + 'from-mn' => [], + 'from-mo' => [], + 'from-ms' => [], + 'from-mt' => [], + 'from-nc' => [], + 'from-nd' => [], + 'from-ne' => [], + 'from-nh' => [], + 'from-nj' => [], + 'from-nm' => [], + 'from-nv' => [], + 'from-oh' => [], + 'from-ok' => [], + 'from-or' => [], + 'from-pa' => [], + 'from-pr' => [], + 'from-ri' => [], + 'from-sc' => [], + 'from-sd' => [], + 'from-tn' => [], + 'from-tx' => [], + 'from-ut' => [], + 'from-va' => [], + 'from-vt' => [], + 'from-wa' => [], + 'from-wi' => [], + 'from-wv' => [], + 'from-wy' => [], + 'getmyip' => [], + 'gotdns' => [], + 'hobby-site' => [], + 'homelinux' => [], + 'homeunix' => [], + 'iamallama' => [], + 'is-a-anarchist' => [], + 'is-a-blogger' => [], + 'is-a-bookkeeper' => [], + 'is-a-bulls-fan' => [], + 'is-a-caterer' => [], + 'is-a-chef' => [], + 'is-a-conservative' => [], + 'is-a-cpa' => [], + 'is-a-cubicle-slave' => [], + 'is-a-democrat' => [], + 'is-a-designer' => [], + 'is-a-doctor' => [], + 'is-a-financialadvisor' => [], + 'is-a-geek' => [], + 'is-a-green' => [], + 'is-a-guru' => [], + 'is-a-hard-worker' => [], + 'is-a-hunter' => [], + 'is-a-landscaper' => [], + 'is-a-lawyer' => [], + 'is-a-liberal' => [], + 'is-a-libertarian' => [], + 'is-a-llama' => [], + 'is-a-musician' => [], + 'is-a-nascarfan' => [], + 'is-a-nurse' => [], + 'is-a-painter' => [], + 'is-a-personaltrainer' => [], + 'is-a-photographer' => [], + 'is-a-player' => [], + 'is-a-republican' => [], + 'is-a-rockstar' => [], + 'is-a-socialist' => [], + 'is-a-student' => [], + 'is-a-teacher' => [], + 'is-a-techie' => [], + 'is-a-therapist' => [], + 'is-an-accountant' => [], + 'is-an-actor' => [], + 'is-an-actress' => [], + 'is-an-anarchist' => [], + 'is-an-artist' => [], + 'is-an-engineer' => [], + 'is-an-entertainer' => [], + 'is-certified' => [], + 'is-gone' => [], + 'is-into-anime' => [], + 'is-into-cars' => [], + 'is-into-cartoons' => [], + 'is-into-games' => [], + 'is-leet' => [], + 'is-not-certified' => [], + 'is-slick' => [], + 'is-uberleet' => [], + 'is-with-theband' => [], + 'isa-geek' => [], + 'isa-hockeynut' => [], + 'issmarterthanyou' => [], + 'likes-pie' => [], + 'likescandy' => [], + 'neat-url' => [], + 'saves-the-whales' => [], + 'selfip' => [], + 'sells-for-less' => [], + 'sells-for-u' => [], + 'servebbs' => [], + 'simple-url' => [], + 'space-to-rent' => [], + 'teaches-yoga' => [], + 'writesthisblog' => [], + ], + 'coop' => [], + 'cr' => ['ac' => [], + 'co' => [], + 'ed' => [], + 'fi' => [], + 'go' => [], + 'or' => [], + 'sa' => [], + ], + 'cu' => ['com' => [], + 'edu' => [], + 'org' => [], + 'net' => [], + 'gov' => [], + 'inf' => [], + ], + 'cv' => [], + 'cx' => ['gov' => [], + 'ath' => [], + ], + 'cy' => ['*' => [], + ], + 'cz' => [], + 'de' => ['com' => [], + 'fuettertdasnetz' => [], + 'isteingeek' => [], + 'istmein' => [], + 'lebtimnetz' => [], + 'leitungsen' => [], + 'traeumtgerade' => [], + ], + 'dj' => [], + 'dk' => [], + 'dm' => ['com' => [], + 'net' => [], + 'org' => [], + 'edu' => [], + 'gov' => [], + ], + 'do' => ['art' => [], + 'com' => [], + 'edu' => [], + 'gob' => [], + 'gov' => [], + 'mil' => [], + 'net' => [], + 'org' => [], + 'sld' => [], + 'web' => [], + ], + 'dz' => ['com' => [], + 'org' => [], + 'net' => [], + 'gov' => [], + 'edu' => [], + 'asso' => [], + 'pol' => [], + 'art' => [], + ], + 'ec' => ['com' => [], + 'info' => [], + 'net' => [], + 'fin' => [], + 'k12' => [], + 'med' => [], + 'pro' => [], + 'org' => [], + 'edu' => [], + 'gov' => [], + 'gob' => [], + 'mil' => [], + ], + 'edu' => [], + 'ee' => ['edu' => [], + 'gov' => [], + 'riik' => [], + 'lib' => [], + 'med' => [], + 'com' => [], + 'pri' => [], + 'aip' => [], + 'org' => [], + 'fie' => [], + ], + 'eg' => ['com' => [], + 'edu' => [], + 'eun' => [], + 'gov' => [], + 'mil' => [], + 'name' => [], + 'net' => [], + 'org' => [], + 'sci' => [], + ], + 'er' => ['*' => [], + ], + 'es' => ['com' => [], + 'nom' => [], + 'org' => [], + 'gob' => [], + 'edu' => [], + ], + 'et' => ['*' => [], + ], + 'eu' => [], + 'fi' => ['aland' => [], + 'iki' => [], + ], + 'fj' => ['*' => [], + ], + 'fk' => ['*' => [], + ], + 'fm' => [], + 'fo' => [], + 'fr' => ['com' => [], + 'asso' => [], + 'nom' => [], + 'prd' => [], + 'presse' => [], + 'tm' => [], + 'aeroport' => [], + 'assedic' => [], + 'avocat' => [], + 'avoues' => [], + 'cci' => [], + 'chambagri' => [], + 'chirurgiens-dentistes' => [], + 'experts-comptables' => [], + 'geometre-expert' => [], + 'gouv' => [], + 'greta' => [], + 'huissier-justice' => [], + 'medecin' => [], + 'notaires' => [], + 'pharmacien' => [], + 'port' => [], + 'veterinaire' => [], + ], + 'ga' => [], + 'gd' => [], + 'ge' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'org' => [], + 'mil' => [], + 'net' => [], + 'pvt' => [], + ], + 'gf' => [], + 'gg' => ['co' => [], + 'org' => [], + 'net' => [], + 'sch' => [], + 'gov' => [], + ], + 'gh' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'org' => [], + 'mil' => [], + ], + 'gi' => ['com' => [], + 'ltd' => [], + 'gov' => [], + 'mod' => [], + 'edu' => [], + 'org' => [], + ], + 'gl' => [], + 'gm' => [], + 'gn' => ['ac' => [], + 'com' => [], + 'edu' => [], + 'gov' => [], + 'org' => [], + 'net' => [], + ], + 'gov' => [], + 'gp' => ['com' => [], + 'net' => [], + 'mobi' => [], + 'edu' => [], + 'org' => [], + 'asso' => [], + ], + 'gq' => [], + 'gr' => ['com' => [], + 'edu' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + ], + 'gs' => [], + 'gt' => ['*' => [], + 'www' => ['!' => '' + ], + ], + 'gu' => ['*' => [], + ], + 'gw' => [], + 'gy' => ['co' => [], + 'com' => [], + 'net' => [], + ], + 'hk' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'idv' => [], + 'net' => [], + 'org' => [], + '公司' => [], + '教育' => [], + '敎育' => [], + '政府' => [], + '個人' => [], + '个人' => [], + '箇人' => [], + '網络' => [], + '网络' => [], + '组織' => [], + '網絡' => [], + '网絡' => [], + '组织' => [], + '組織' => [], + '組织' => [], + ], + 'hm' => [], + 'hn' => ['com' => [], + 'edu' => [], + 'org' => [], + 'net' => [], + 'mil' => [], + 'gob' => [], + ], + 'hr' => ['iz' => [], + 'from' => [], + 'name' => [], + 'com' => [], + ], + 'ht' => ['com' => [], + 'shop' => [], + 'firm' => [], + 'info' => [], + 'adult' => [], + 'net' => [], + 'pro' => [], + 'org' => [], + 'med' => [], + 'art' => [], + 'coop' => [], + 'pol' => [], + 'asso' => [], + 'edu' => [], + 'rel' => [], + 'gouv' => [], + 'perso' => [], + ], + 'hu' => ['co' => [], + 'info' => [], + 'org' => [], + 'priv' => [], + 'sport' => [], + 'tm' => [], + '2000' => [], + 'agrar' => [], + 'bolt' => [], + 'casino' => [], + 'city' => [], + 'erotica' => [], + 'erotika' => [], + 'film' => [], + 'forum' => [], + 'games' => [], + 'hotel' => [], + 'ingatlan' => [], + 'jogasz' => [], + 'konyvelo' => [], + 'lakas' => [], + 'media' => [], + 'news' => [], + 'reklam' => [], + 'sex' => [], + 'shop' => [], + 'suli' => [], + 'szex' => [], + 'tozsde' => [], + 'utazas' => [], + 'video' => [], + ], + 'id' => ['ac' => [], + 'co' => [], + 'go' => [], + 'mil' => [], + 'net' => [], + 'or' => [], + 'sch' => [], + 'web' => [], + ], + 'ie' => ['gov' => [], + ], + 'il' => ['*' => [], + ], + 'im' => ['co' => ['ltd' => [], + 'plc' => [], + ], + 'net' => [], + 'gov' => [], + 'org' => [], + 'nic' => [], + 'ac' => [], + ], + 'in' => ['co' => [], + 'firm' => [], + 'net' => [], + 'org' => [], + 'gen' => [], + 'ind' => [], + 'nic' => [], + 'ac' => [], + 'edu' => [], + 'res' => [], + 'gov' => [], + 'mil' => [], + ], + 'info' => ['dyndns' => [], + 'barrel-of-knowledge' => [], + 'barrell-of-knowledge' => [], + 'for-our' => [], + 'groks-the' => [], + 'groks-this' => [], + 'here-for-more' => [], + 'knowsitall' => [], + 'selfip' => [], + 'webhop' => [], + ], + 'int' => ['eu' => [], + ], + 'io' => ['com' => [], + ], + 'iq' => ['gov' => [], + 'edu' => [], + 'mil' => [], + 'com' => [], + 'org' => [], + 'net' => [], + ], + 'ir' => ['ac' => [], + 'co' => [], + 'gov' => [], + 'id' => [], + 'net' => [], + 'org' => [], + 'sch' => [], + 'ایران' => [], + 'ايران' => [], + ], + 'is' => ['net' => [], + 'com' => [], + 'edu' => [], + 'gov' => [], + 'org' => [], + 'int' => [], + ], + 'it' => ['gov' => [], + 'edu' => [], + 'agrigento' => [], + 'ag' => [], + 'alessandria' => [], + 'al' => [], + 'ancona' => [], + 'an' => [], + 'aosta' => [], + 'aoste' => [], + 'ao' => [], + 'arezzo' => [], + 'ar' => [], + 'ascoli-piceno' => [], + 'ascolipiceno' => [], + 'ap' => [], + 'asti' => [], + 'at' => [], + 'avellino' => [], + 'av' => [], + 'bari' => [], + 'ba' => [], + 'andria-barletta-trani' => [], + 'andriabarlettatrani' => [], + 'trani-barletta-andria' => [], + 'tranibarlettaandria' => [], + 'barletta-trani-andria' => [], + 'barlettatraniandria' => [], + 'andria-trani-barletta' => [], + 'andriatranibarletta' => [], + 'trani-andria-barletta' => [], + 'traniandriabarletta' => [], + 'bt' => [], + 'belluno' => [], + 'bl' => [], + 'benevento' => [], + 'bn' => [], + 'bergamo' => [], + 'bg' => [], + 'biella' => [], + 'bi' => [], + 'bologna' => [], + 'bo' => [], + 'bolzano' => [], + 'bozen' => [], + 'balsan' => [], + 'alto-adige' => [], + 'altoadige' => [], + 'suedtirol' => [], + 'bz' => [], + 'brescia' => [], + 'bs' => [], + 'brindisi' => [], + 'br' => [], + 'cagliari' => [], + 'ca' => [], + 'caltanissetta' => [], + 'cl' => [], + 'campobasso' => [], + 'cb' => [], + 'carboniaiglesias' => [], + 'carbonia-iglesias' => [], + 'iglesias-carbonia' => [], + 'iglesiascarbonia' => [], + 'ci' => [], + 'caserta' => [], + 'ce' => [], + 'catania' => [], + 'ct' => [], + 'catanzaro' => [], + 'cz' => [], + 'chieti' => [], + 'ch' => [], + 'como' => [], + 'co' => [], + 'cosenza' => [], + 'cs' => [], + 'cremona' => [], + 'cr' => [], + 'crotone' => [], + 'kr' => [], + 'cuneo' => [], + 'cn' => [], + 'dell-ogliastra' => [], + 'dellogliastra' => [], + 'ogliastra' => [], + 'og' => [], + 'enna' => [], + 'en' => [], + 'ferrara' => [], + 'fe' => [], + 'fermo' => [], + 'fm' => [], + 'firenze' => [], + 'florence' => [], + 'fi' => [], + 'foggia' => [], + 'fg' => [], + 'forli-cesena' => [], + 'forlicesena' => [], + 'cesena-forli' => [], + 'cesenaforli' => [], + 'fc' => [], + 'frosinone' => [], + 'fr' => [], + 'genova' => [], + 'genoa' => [], + 'ge' => [], + 'gorizia' => [], + 'go' => [], + 'grosseto' => [], + 'gr' => [], + 'imperia' => [], + 'im' => [], + 'isernia' => [], + 'is' => [], + 'laquila' => [], + 'aquila' => [], + 'aq' => [], + 'la-spezia' => [], + 'laspezia' => [], + 'sp' => [], + 'latina' => [], + 'lt' => [], + 'lecce' => [], + 'le' => [], + 'lecco' => [], + 'lc' => [], + 'livorno' => [], + 'li' => [], + 'lodi' => [], + 'lo' => [], + 'lucca' => [], + 'lu' => [], + 'macerata' => [], + 'mc' => [], + 'mantova' => [], + 'mn' => [], + 'massa-carrara' => [], + 'massacarrara' => [], + 'carrara-massa' => [], + 'carraramassa' => [], + 'ms' => [], + 'matera' => [], + 'mt' => [], + 'medio-campidano' => [], + 'mediocampidano' => [], + 'campidano-medio' => [], + 'campidanomedio' => [], + 'vs' => [], + 'messina' => [], + 'me' => [], + 'milano' => [], + 'milan' => [], + 'mi' => [], + 'modena' => [], + 'mo' => [], + 'monza' => [], + 'monza-brianza' => [], + 'monzabrianza' => [], + 'monzaebrianza' => [], + 'monzaedellabrianza' => [], + 'monza-e-della-brianza' => [], + 'mb' => [], + 'napoli' => [], + 'naples' => [], + 'na' => [], + 'novara' => [], + 'no' => [], + 'nuoro' => [], + 'nu' => [], + 'oristano' => [], + 'or' => [], + 'padova' => [], + 'padua' => [], + 'pd' => [], + 'palermo' => [], + 'pa' => [], + 'parma' => [], + 'pr' => [], + 'pavia' => [], + 'pv' => [], + 'perugia' => [], + 'pg' => [], + 'pescara' => [], + 'pe' => [], + 'pesaro-urbino' => [], + 'pesarourbino' => [], + 'urbino-pesaro' => [], + 'urbinopesaro' => [], + 'pu' => [], + 'piacenza' => [], + 'pc' => [], + 'pisa' => [], + 'pi' => [], + 'pistoia' => [], + 'pt' => [], + 'pordenone' => [], + 'pn' => [], + 'potenza' => [], + 'pz' => [], + 'prato' => [], + 'po' => [], + 'ragusa' => [], + 'rg' => [], + 'ravenna' => [], + 'ra' => [], + 'reggio-calabria' => [], + 'reggiocalabria' => [], + 'rc' => [], + 'reggio-emilia' => [], + 'reggioemilia' => [], + 're' => [], + 'rieti' => [], + 'ri' => [], + 'rimini' => [], + 'rn' => [], + 'roma' => [], + 'rome' => [], + 'rm' => [], + 'rovigo' => [], + 'ro' => [], + 'salerno' => [], + 'sa' => [], + 'sassari' => [], + 'ss' => [], + 'savona' => [], + 'sv' => [], + 'siena' => [], + 'si' => [], + 'siracusa' => [], + 'sr' => [], + 'sondrio' => [], + 'so' => [], + 'taranto' => [], + 'ta' => [], + 'tempio-olbia' => [], + 'tempioolbia' => [], + 'olbia-tempio' => [], + 'olbiatempio' => [], + 'ot' => [], + 'teramo' => [], + 'te' => [], + 'terni' => [], + 'tr' => [], + 'torino' => [], + 'turin' => [], + 'to' => [], + 'trapani' => [], + 'tp' => [], + 'trento' => [], + 'trentino' => [], + 'tn' => [], + 'treviso' => [], + 'tv' => [], + 'trieste' => [], + 'ts' => [], + 'udine' => [], + 'ud' => [], + 'varese' => [], + 'va' => [], + 'venezia' => [], + 'venice' => [], + 've' => [], + 'verbania' => [], + 'vb' => [], + 'vercelli' => [], + 'vc' => [], + 'verona' => [], + 'vr' => [], + 'vibo-valentia' => [], + 'vibovalentia' => [], + 'vv' => [], + 'vicenza' => [], + 'vi' => [], + 'viterbo' => [], + 'vt' => [], + ], + 'je' => ['co' => [], + 'org' => [], + 'net' => [], + 'sch' => [], + 'gov' => [], + ], + 'jm' => ['*' => [], + ], + 'jo' => ['com' => [], + 'org' => [], + 'net' => [], + 'edu' => [], + 'sch' => [], + 'gov' => [], + 'mil' => [], + 'name' => [], + ], + 'jobs' => [], + 'jp' => ['ac' => [], + 'ad' => [], + 'co' => [], + 'ed' => [], + 'go' => [], + 'gr' => [], + 'lg' => [], + 'ne' => [], + 'or' => [], + 'aichi' => ['aisai' => [], + 'ama' => [], + 'anjo' => [], + 'asuke' => [], + 'chiryu' => [], + 'chita' => [], + 'fuso' => [], + 'gamagori' => [], + 'handa' => [], + 'hazu' => [], + 'hekinan' => [], + 'higashiura' => [], + 'ichinomiya' => [], + 'inazawa' => [], + 'inuyama' => [], + 'isshiki' => [], + 'iwakura' => [], + 'kanie' => [], + 'kariya' => [], + 'kasugai' => [], + 'kira' => [], + 'kiyosu' => [], + 'komaki' => [], + 'konan' => [], + 'kota' => [], + 'mihama' => [], + 'miyoshi' => [], + 'nagakute' => [], + 'nishio' => [], + 'nisshin' => [], + 'obu' => [], + 'oguchi' => [], + 'oharu' => [], + 'okazaki' => [], + 'owariasahi' => [], + 'seto' => [], + 'shikatsu' => [], + 'shinshiro' => [], + 'shitara' => [], + 'tahara' => [], + 'takahama' => [], + 'tobishima' => [], + 'toei' => [], + 'togo' => [], + 'tokai' => [], + 'tokoname' => [], + 'toyoake' => [], + 'toyohashi' => [], + 'toyokawa' => [], + 'toyone' => [], + 'toyota' => [], + 'tsushima' => [], + 'yatomi' => [], + ], + 'akita' => ['akita' => [], + 'daisen' => [], + 'fujisato' => [], + 'gojome' => [], + 'hachirogata' => [], + 'happou' => [], + 'higashinaruse' => [], + 'honjo' => [], + 'honjyo' => [], + 'ikawa' => [], + 'kamikoani' => [], + 'kamioka' => [], + 'katagami' => [], + 'kazuno' => [], + 'kitaakita' => [], + 'kosaka' => [], + 'kyowa' => [], + 'misato' => [], + 'mitane' => [], + 'moriyoshi' => [], + 'nikaho' => [], + 'noshiro' => [], + 'odate' => [], + 'oga' => [], + 'ogata' => [], + 'semboku' => [], + 'yokote' => [], + 'yurihonjo' => [], + ], + 'aomori' => ['aomori' => [], + 'gonohe' => [], + 'hachinohe' => [], + 'hashikami' => [], + 'hiranai' => [], + 'hirosaki' => [], + 'itayanagi' => [], + 'kuroishi' => [], + 'misawa' => [], + 'mutsu' => [], + 'nakadomari' => [], + 'noheji' => [], + 'oirase' => [], + 'owani' => [], + 'rokunohe' => [], + 'sannohe' => [], + 'shichinohe' => [], + 'shingo' => [], + 'takko' => [], + 'towada' => [], + 'tsugaru' => [], + 'tsuruta' => [], + ], + 'chiba' => ['abiko' => [], + 'asahi' => [], + 'chonan' => [], + 'chosei' => [], + 'choshi' => [], + 'chuo' => [], + 'funabashi' => [], + 'futtsu' => [], + 'hanamigawa' => [], + 'ichihara' => [], + 'ichikawa' => [], + 'ichinomiya' => [], + 'inzai' => [], + 'isumi' => [], + 'kamagaya' => [], + 'kamogawa' => [], + 'kashiwa' => [], + 'katori' => [], + 'katsuura' => [], + 'kimitsu' => [], + 'kisarazu' => [], + 'kozaki' => [], + 'kujukuri' => [], + 'kyonan' => [], + 'matsudo' => [], + 'midori' => [], + 'mihama' => [], + 'minamiboso' => [], + 'mobara' => [], + 'mutsuzawa' => [], + 'nagara' => [], + 'nagareyama' => [], + 'narashino' => [], + 'narita' => [], + 'noda' => [], + 'oamishirasato' => [], + 'omigawa' => [], + 'onjuku' => [], + 'otaki' => [], + 'sakae' => [], + 'sakura' => [], + 'shimofusa' => [], + 'shirako' => [], + 'shiroi' => [], + 'shisui' => [], + 'sodegaura' => [], + 'sosa' => [], + 'tako' => [], + 'tateyama' => [], + 'togane' => [], + 'tohnosho' => [], + 'tomisato' => [], + 'urayasu' => [], + 'yachimata' => [], + 'yachiyo' => [], + 'yokaichiba' => [], + 'yokoshibahikari' => [], + 'yotsukaido' => [], + ], + 'ehime' => ['ainan' => [], + 'honai' => [], + 'ikata' => [], + 'imabari' => [], + 'iyo' => [], + 'kamijima' => [], + 'kihoku' => [], + 'kumakogen' => [], + 'masaki' => [], + 'matsuno' => [], + 'matsuyama' => [], + 'namikata' => [], + 'niihama' => [], + 'ozu' => [], + 'saijo' => [], + 'seiyo' => [], + 'shikokuchuo' => [], + 'tobe' => [], + 'toon' => [], + 'uchiko' => [], + 'uwajima' => [], + 'yawatahama' => [], + ], + 'fukui' => ['echizen' => [], + 'eiheiji' => [], + 'fukui' => [], + 'ikeda' => [], + 'katsuyama' => [], + 'mihama' => [], + 'minamiechizen' => [], + 'obama' => [], + 'ohi' => [], + 'ono' => [], + 'sabae' => [], + 'sakai' => [], + 'takahama' => [], + 'tsuruga' => [], + 'wakasa' => [], + ], + 'fukuoka' => ['ashiya' => [], + 'buzen' => [], + 'chikugo' => [], + 'chikuho' => [], + 'chikujo' => [], + 'chikushino' => [], + 'chikuzen' => [], + 'chuo' => [], + 'dazaifu' => [], + 'fukuchi' => [], + 'hakata' => [], + 'higashi' => [], + 'hirokawa' => [], + 'hisayama' => [], + 'iizuka' => [], + 'inatsuki' => [], + 'kaho' => [], + 'kasuga' => [], + 'kasuya' => [], + 'kawara' => [], + 'keisen' => [], + 'koga' => [], + 'kurate' => [], + 'kurogi' => [], + 'kurume' => [], + 'minami' => [], + 'miyako' => [], + 'miyama' => [], + 'miyawaka' => [], + 'mizumaki' => [], + 'munakata' => [], + 'nakagawa' => [], + 'nakama' => [], + 'nishi' => [], + 'nogata' => [], + 'ogori' => [], + 'okagaki' => [], + 'okawa' => [], + 'oki' => [], + 'omuta' => [], + 'onga' => [], + 'onojo' => [], + 'oto' => [], + 'saigawa' => [], + 'sasaguri' => [], + 'shingu' => [], + 'shinyoshitomi' => [], + 'shonai' => [], + 'soeda' => [], + 'sue' => [], + 'tachiarai' => [], + 'tagawa' => [], + 'takata' => [], + 'toho' => [], + 'toyotsu' => [], + 'tsuiki' => [], + 'ukiha' => [], + 'umi' => [], + 'usui' => [], + 'yamada' => [], + 'yame' => [], + 'yanagawa' => [], + 'yukuhashi' => [], + ], + 'fukushima' => ['aizubange' => [], + 'aizumisato' => [], + 'aizuwakamatsu' => [], + 'asakawa' => [], + 'bandai' => [], + 'date' => [], + 'fukushima' => [], + 'furudono' => [], + 'futaba' => [], + 'hanawa' => [], + 'higashi' => [], + 'hirata' => [], + 'hirono' => [], + 'iitate' => [], + 'inawashiro' => [], + 'ishikawa' => [], + 'iwaki' => [], + 'izumizaki' => [], + 'kagamiishi' => [], + 'kaneyama' => [], + 'kawamata' => [], + 'kitakata' => [], + 'kitashiobara' => [], + 'koori' => [], + 'koriyama' => [], + 'kunimi' => [], + 'miharu' => [], + 'mishima' => [], + 'namie' => [], + 'nango' => [], + 'nishiaizu' => [], + 'nishigo' => [], + 'okuma' => [], + 'omotego' => [], + 'ono' => [], + 'otama' => [], + 'samegawa' => [], + 'shimogo' => [], + 'shirakawa' => [], + 'showa' => [], + 'soma' => [], + 'sukagawa' => [], + 'taishin' => [], + 'tamakawa' => [], + 'tanagura' => [], + 'tenei' => [], + 'yabuki' => [], + 'yamato' => [], + 'yamatsuri' => [], + 'yanaizu' => [], + 'yugawa' => [], + ], + 'gifu' => ['anpachi' => [], + 'ena' => [], + 'gifu' => [], + 'ginan' => [], + 'godo' => [], + 'gujo' => [], + 'hashima' => [], + 'hichiso' => [], + 'hida' => [], + 'higashishirakawa' => [], + 'ibigawa' => [], + 'ikeda' => [], + 'kakamigahara' => [], + 'kani' => [], + 'kasahara' => [], + 'kasamatsu' => [], + 'kawaue' => [], + 'kitagata' => [], + 'mino' => [], + 'minokamo' => [], + 'mitake' => [], + 'mizunami' => [], + 'motosu' => [], + 'nakatsugawa' => [], + 'ogaki' => [], + 'sakahogi' => [], + 'seki' => [], + 'sekigahara' => [], + 'shirakawa' => [], + 'tajimi' => [], + 'takayama' => [], + 'tarui' => [], + 'toki' => [], + 'tomika' => [], + 'wanouchi' => [], + 'yamagata' => [], + 'yaotsu' => [], + 'yoro' => [], + ], + 'gunma' => ['annaka' => [], + 'chiyoda' => [], + 'fujioka' => [], + 'higashiagatsuma' => [], + 'isesaki' => [], + 'itakura' => [], + 'kanna' => [], + 'kanra' => [], + 'katashina' => [], + 'kawaba' => [], + 'kiryu' => [], + 'kusatsu' => [], + 'maebashi' => [], + 'meiwa' => [], + 'midori' => [], + 'minakami' => [], + 'naganohara' => [], + 'nakanojo' => [], + 'nanmoku' => [], + 'numata' => [], + 'oizumi' => [], + 'ora' => [], + 'ota' => [], + 'shibukawa' => [], + 'shimonita' => [], + 'shinto' => [], + 'showa' => [], + 'takasaki' => [], + 'takayama' => [], + 'tamamura' => [], + 'tatebayashi' => [], + 'tomioka' => [], + 'tsukiyono' => [], + 'tsumagoi' => [], + 'ueno' => [], + 'yoshioka' => [], + ], + 'hiroshima' => ['asaminami' => [], + 'daiwa' => [], + 'etajima' => [], + 'fuchu' => [], + 'fukuyama' => [], + 'hatsukaichi' => [], + 'higashihiroshima' => [], + 'hongo' => [], + 'jinsekikogen' => [], + 'kaita' => [], + 'kui' => [], + 'kumano' => [], + 'kure' => [], + 'mihara' => [], + 'miyoshi' => [], + 'naka' => [], + 'onomichi' => [], + 'osakikamijima' => [], + 'otake' => [], + 'saka' => [], + 'sera' => [], + 'seranishi' => [], + 'shinichi' => [], + 'shobara' => [], + 'takehara' => [], + ], + 'hokkaido' => ['abashiri' => [], + 'abira' => [], + 'aibetsu' => [], + 'akabira' => [], + 'akkeshi' => [], + 'asahikawa' => [], + 'ashibetsu' => [], + 'ashoro' => [], + 'assabu' => [], + 'atsuma' => [], + 'bibai' => [], + 'biei' => [], + 'bifuka' => [], + 'bihoro' => [], + 'biratori' => [], + 'chippubetsu' => [], + 'chitose' => [], + 'date' => [], + 'ebetsu' => [], + 'embetsu' => [], + 'eniwa' => [], + 'erimo' => [], + 'esan' => [], + 'esashi' => [], + 'fukagawa' => [], + 'fukushima' => [], + 'furano' => [], + 'furubira' => [], + 'haboro' => [], + 'hakodate' => [], + 'hamatonbetsu' => [], + 'hidaka' => [], + 'higashikagura' => [], + 'higashikawa' => [], + 'hiroo' => [], + 'hokuryu' => [], + 'hokuto' => [], + 'honbetsu' => [], + 'horokanai' => [], + 'horonobe' => [], + 'ikeda' => [], + 'imakane' => [], + 'ishikari' => [], + 'iwamizawa' => [], + 'iwanai' => [], + 'kamifurano' => [], + 'kamikawa' => [], + 'kamishihoro' => [], + 'kamisunagawa' => [], + 'kamoenai' => [], + 'kayabe' => [], + 'kembuchi' => [], + 'kikonai' => [], + 'kimobetsu' => [], + 'kitahiroshima' => [], + 'kitami' => [], + 'kiyosato' => [], + 'koshimizu' => [], + 'kunneppu' => [], + 'kuriyama' => [], + 'kuromatsunai' => [], + 'kushiro' => [], + 'kutchan' => [], + 'kyowa' => [], + 'mashike' => [], + 'matsumae' => [], + 'mikasa' => [], + 'minamifurano' => [], + 'mombetsu' => [], + 'moseushi' => [], + 'mukawa' => [], + 'muroran' => [], + 'naie' => [], + 'nakagawa' => [], + 'nakasatsunai' => [], + 'nakatombetsu' => [], + 'nanae' => [], + 'nanporo' => [], + 'nayoro' => [], + 'nemuro' => [], + 'niikappu' => [], + 'niki' => [], + 'nishiokoppe' => [], + 'noboribetsu' => [], + 'numata' => [], + 'obihiro' => [], + 'obira' => [], + 'oketo' => [], + 'okoppe' => [], + 'otaru' => [], + 'otobe' => [], + 'otofuke' => [], + 'otoineppu' => [], + 'oumu' => [], + 'ozora' => [], + 'pippu' => [], + 'rankoshi' => [], + 'rebun' => [], + 'rikubetsu' => [], + 'rishiri' => [], + 'rishirifuji' => [], + 'saroma' => [], + 'sarufutsu' => [], + 'shakotan' => [], + 'shari' => [], + 'shibecha' => [], + 'shibetsu' => [], + 'shikabe' => [], + 'shikaoi' => [], + 'shimamaki' => [], + 'shimizu' => [], + 'shimokawa' => [], + 'shinshinotsu' => [], + 'shintoku' => [], + 'shiranuka' => [], + 'shiraoi' => [], + 'shiriuchi' => [], + 'sobetsu' => [], + 'sunagawa' => [], + 'taiki' => [], + 'takasu' => [], + 'takikawa' => [], + 'takinoue' => [], + 'teshikaga' => [], + 'tobetsu' => [], + 'tohma' => [], + 'tomakomai' => [], + 'tomari' => [], + 'toya' => [], + 'toyako' => [], + 'toyotomi' => [], + 'toyoura' => [], + 'tsubetsu' => [], + 'tsukigata' => [], + 'urakawa' => [], + 'urausu' => [], + 'uryu' => [], + 'utashinai' => [], + 'wakkanai' => [], + 'wassamu' => [], + 'yakumo' => [], + 'yoichi' => [], + ], + 'hyogo' => ['aioi' => [], + 'akashi' => [], + 'ako' => [], + 'amagasaki' => [], + 'aogaki' => [], + 'asago' => [], + 'ashiya' => [], + 'awaji' => [], + 'fukusaki' => [], + 'goshiki' => [], + 'harima' => [], + 'himeji' => [], + 'ichikawa' => [], + 'inagawa' => [], + 'itami' => [], + 'kakogawa' => [], + 'kamigori' => [], + 'kamikawa' => [], + 'kasai' => [], + 'kasuga' => [], + 'kawanishi' => [], + 'miki' => [], + 'minamiawaji' => [], + 'nishinomiya' => [], + 'nishiwaki' => [], + 'ono' => [], + 'sanda' => [], + 'sannan' => [], + 'sasayama' => [], + 'sayo' => [], + 'shingu' => [], + 'shinonsen' => [], + 'shiso' => [], + 'sumoto' => [], + 'taishi' => [], + 'taka' => [], + 'takarazuka' => [], + 'takasago' => [], + 'takino' => [], + 'tamba' => [], + 'tatsuno' => [], + 'toyooka' => [], + 'yabu' => [], + 'yashiro' => [], + 'yoka' => [], + 'yokawa' => [], + ], + 'ibaraki' => ['ami' => [], + 'asahi' => [], + 'bando' => [], + 'chikusei' => [], + 'daigo' => [], + 'fujishiro' => [], + 'hitachi' => [], + 'hitachinaka' => [], + 'hitachiomiya' => [], + 'hitachiota' => [], + 'ibaraki' => [], + 'ina' => [], + 'inashiki' => [], + 'itako' => [], + 'iwama' => [], + 'joso' => [], + 'kamisu' => [], + 'kasama' => [], + 'kashima' => [], + 'kasumigaura' => [], + 'koga' => [], + 'miho' => [], + 'mito' => [], + 'moriya' => [], + 'naka' => [], + 'namegata' => [], + 'oarai' => [], + 'ogawa' => [], + 'omitama' => [], + 'ryugasaki' => [], + 'sakai' => [], + 'sakuragawa' => [], + 'shimodate' => [], + 'shimotsuma' => [], + 'shirosato' => [], + 'sowa' => [], + 'suifu' => [], + 'takahagi' => [], + 'tamatsukuri' => [], + 'tokai' => [], + 'tomobe' => [], + 'tone' => [], + 'toride' => [], + 'tsuchiura' => [], + 'tsukuba' => [], + 'uchihara' => [], + 'ushiku' => [], + 'yachiyo' => [], + 'yamagata' => [], + 'yawara' => [], + 'yuki' => [], + ], + 'ishikawa' => ['anamizu' => [], + 'hakui' => [], + 'hakusan' => [], + 'kaga' => [], + 'kahoku' => [], + 'kanazawa' => [], + 'kawakita' => [], + 'komatsu' => [], + 'nakanoto' => [], + 'nanao' => [], + 'nomi' => [], + 'nonoichi' => [], + 'noto' => [], + 'shika' => [], + 'suzu' => [], + 'tsubata' => [], + 'tsurugi' => [], + 'uchinada' => [], + 'wajima' => [], + ], + 'iwate' => ['fudai' => [], + 'fujisawa' => [], + 'hanamaki' => [], + 'hiraizumi' => [], + 'hirono' => [], + 'ichinohe' => [], + 'ichinoseki' => [], + 'iwaizumi' => [], + 'iwate' => [], + 'joboji' => [], + 'kamaishi' => [], + 'kanegasaki' => [], + 'karumai' => [], + 'kawai' => [], + 'kitakami' => [], + 'kuji' => [], + 'kunohe' => [], + 'kuzumaki' => [], + 'miyako' => [], + 'mizusawa' => [], + 'morioka' => [], + 'ninohe' => [], + 'noda' => [], + 'ofunato' => [], + 'oshu' => [], + 'otsuchi' => [], + 'rikuzentakata' => [], + 'shiwa' => [], + 'shizukuishi' => [], + 'sumita' => [], + 'takizawa' => [], + 'tanohata' => [], + 'tono' => [], + 'yahaba' => [], + 'yamada' => [], + ], + 'kagawa' => ['ayagawa' => [], + 'higashikagawa' => [], + 'kanonji' => [], + 'kotohira' => [], + 'manno' => [], + 'marugame' => [], + 'mitoyo' => [], + 'naoshima' => [], + 'sanuki' => [], + 'tadotsu' => [], + 'takamatsu' => [], + 'tonosho' => [], + 'uchinomi' => [], + 'utazu' => [], + 'zentsuji' => [], + ], + 'kagoshima' => ['akune' => [], + 'amami' => [], + 'hioki' => [], + 'isa' => [], + 'isen' => [], + 'izumi' => [], + 'kagoshima' => [], + 'kanoya' => [], + 'kawanabe' => [], + 'kinko' => [], + 'kouyama' => [], + 'makurazaki' => [], + 'matsumoto' => [], + 'minamitane' => [], + 'nakatane' => [], + 'nishinoomote' => [], + 'satsumasendai' => [], + 'soo' => [], + 'tarumizu' => [], + 'yusui' => [], + ], + 'kanagawa' => ['aikawa' => [], + 'atsugi' => [], + 'ayase' => [], + 'chigasaki' => [], + 'ebina' => [], + 'fujisawa' => [], + 'hadano' => [], + 'hakone' => [], + 'hiratsuka' => [], + 'isehara' => [], + 'kaisei' => [], + 'kamakura' => [], + 'kiyokawa' => [], + 'matsuda' => [], + 'minamiashigara' => [], + 'miura' => [], + 'nakai' => [], + 'ninomiya' => [], + 'odawara' => [], + 'oi' => [], + 'oiso' => [], + 'sagamihara' => [], + 'samukawa' => [], + 'tsukui' => [], + 'yamakita' => [], + 'yamato' => [], + 'yokosuka' => [], + 'yugawara' => [], + 'zama' => [], + 'zushi' => [], + ], + 'kochi' => ['aki' => [], + 'geisei' => [], + 'hidaka' => [], + 'higashitsuno' => [], + 'ino' => [], + 'kagami' => [], + 'kami' => [], + 'kitagawa' => [], + 'kochi' => [], + 'mihara' => [], + 'motoyama' => [], + 'muroto' => [], + 'nahari' => [], + 'nakamura' => [], + 'nankoku' => [], + 'nishitosa' => [], + 'niyodogawa' => [], + 'ochi' => [], + 'okawa' => [], + 'otoyo' => [], + 'otsuki' => [], + 'sakawa' => [], + 'sukumo' => [], + 'susaki' => [], + 'tosa' => [], + 'tosashimizu' => [], + 'toyo' => [], + 'tsuno' => [], + 'umaji' => [], + 'yasuda' => [], + 'yusuhara' => [], + ], + 'kumamoto' => ['amakusa' => [], + 'arao' => [], + 'aso' => [], + 'choyo' => [], + 'gyokuto' => [], + 'hitoyoshi' => [], + 'kamiamakusa' => [], + 'kashima' => [], + 'kikuchi' => [], + 'kosa' => [], + 'kumamoto' => [], + 'mashiki' => [], + 'mifune' => [], + 'minamata' => [], + 'minamioguni' => [], + 'nagasu' => [], + 'nishihara' => [], + 'oguni' => [], + 'ozu' => [], + 'sumoto' => [], + 'takamori' => [], + 'uki' => [], + 'uto' => [], + 'yamaga' => [], + 'yamato' => [], + 'yatsushiro' => [], + ], + 'kyoto' => ['ayabe' => [], + 'fukuchiyama' => [], + 'higashiyama' => [], + 'ide' => [], + 'ine' => [], + 'joyo' => [], + 'kameoka' => [], + 'kamo' => [], + 'kita' => [], + 'kizu' => [], + 'kumiyama' => [], + 'kyotamba' => [], + 'kyotanabe' => [], + 'kyotango' => [], + 'maizuru' => [], + 'minami' => [], + 'minamiyamashiro' => [], + 'miyazu' => [], + 'muko' => [], + 'nagaokakyo' => [], + 'nakagyo' => [], + 'nantan' => [], + 'oyamazaki' => [], + 'sakyo' => [], + 'seika' => [], + 'tanabe' => [], + 'uji' => [], + 'ujitawara' => [], + 'wazuka' => [], + 'yamashina' => [], + 'yawata' => [], + ], + 'mie' => ['asahi' => [], + 'inabe' => [], + 'ise' => [], + 'kameyama' => [], + 'kawagoe' => [], + 'kiho' => [], + 'kisosaki' => [], + 'kiwa' => [], + 'komono' => [], + 'kumano' => [], + 'kuwana' => [], + 'matsusaka' => [], + 'meiwa' => [], + 'mihama' => [], + 'minamiise' => [], + 'misugi' => [], + 'miyama' => [], + 'nabari' => [], + 'shima' => [], + 'suzuka' => [], + 'tado' => [], + 'taiki' => [], + 'taki' => [], + 'tamaki' => [], + 'toba' => [], + 'tsu' => [], + 'udono' => [], + 'ureshino' => [], + 'watarai' => [], + 'yokkaichi' => [], + ], + 'miyagi' => ['furukawa' => [], + 'higashimatsushima' => [], + 'ishinomaki' => [], + 'iwanuma' => [], + 'kakuda' => [], + 'kami' => [], + 'kawasaki' => [], + 'kesennuma' => [], + 'marumori' => [], + 'matsushima' => [], + 'minamisanriku' => [], + 'misato' => [], + 'murata' => [], + 'natori' => [], + 'ogawara' => [], + 'ohira' => [], + 'onagawa' => [], + 'osaki' => [], + 'rifu' => [], + 'semine' => [], + 'shibata' => [], + 'shichikashuku' => [], + 'shikama' => [], + 'shiogama' => [], + 'shiroishi' => [], + 'tagajo' => [], + 'taiwa' => [], + 'tome' => [], + 'tomiya' => [], + 'wakuya' => [], + 'watari' => [], + 'yamamoto' => [], + 'zao' => [], + ], + 'miyazaki' => ['aya' => [], + 'ebino' => [], + 'gokase' => [], + 'hyuga' => [], + 'kadogawa' => [], + 'kawaminami' => [], + 'kijo' => [], + 'kitagawa' => [], + 'kitakata' => [], + 'kitaura' => [], + 'kobayashi' => [], + 'kunitomi' => [], + 'kushima' => [], + 'mimata' => [], + 'miyakonojo' => [], + 'miyazaki' => [], + 'morotsuka' => [], + 'nichinan' => [], + 'nishimera' => [], + 'nobeoka' => [], + 'saito' => [], + 'shiiba' => [], + 'shintomi' => [], + 'takaharu' => [], + 'takanabe' => [], + 'takazaki' => [], + 'tsuno' => [], + ], + 'nagano' => ['achi' => [], + 'agematsu' => [], + 'anan' => [], + 'aoki' => [], + 'asahi' => [], + 'azumino' => [], + 'chikuhoku' => [], + 'chikuma' => [], + 'chino' => [], + 'fujimi' => [], + 'hakuba' => [], + 'hara' => [], + 'hiraya' => [], + 'iida' => [], + 'iijima' => [], + 'iiyama' => [], + 'iizuna' => [], + 'ikeda' => [], + 'ikusaka' => [], + 'ina' => [], + 'karuizawa' => [], + 'kawakami' => [], + 'kiso' => [], + 'kisofukushima' => [], + 'kitaaiki' => [], + 'komagane' => [], + 'komoro' => [], + 'matsukawa' => [], + 'matsumoto' => [], + 'miasa' => [], + 'minamiaiki' => [], + 'minamimaki' => [], + 'minamiminowa' => [], + 'minowa' => [], + 'miyada' => [], + 'miyota' => [], + 'mochizuki' => [], + 'nagano' => [], + 'nagawa' => [], + 'nagiso' => [], + 'nakagawa' => [], + 'nakano' => [], + 'nozawaonsen' => [], + 'obuse' => [], + 'ogawa' => [], + 'okaya' => [], + 'omachi' => [], + 'omi' => [], + 'ookuwa' => [], + 'ooshika' => [], + 'otaki' => [], + 'otari' => [], + 'sakae' => [], + 'sakaki' => [], + 'saku' => [], + 'sakuho' => [], + 'shimosuwa' => [], + 'shinanomachi' => [], + 'shiojiri' => [], + 'suwa' => [], + 'suzaka' => [], + 'takagi' => [], + 'takamori' => [], + 'takayama' => [], + 'tateshina' => [], + 'tatsuno' => [], + 'togakushi' => [], + 'togura' => [], + 'tomi' => [], + 'ueda' => [], + 'wada' => [], + 'yamagata' => [], + 'yamanouchi' => [], + 'yasaka' => [], + 'yasuoka' => [], + ], + 'nagasaki' => ['chijiwa' => [], + 'futsu' => [], + 'goto' => [], + 'hasami' => [], + 'hirado' => [], + 'iki' => [], + 'isahaya' => [], + 'kawatana' => [], + 'kuchinotsu' => [], + 'matsuura' => [], + 'nagasaki' => [], + 'obama' => [], + 'omura' => [], + 'oseto' => [], + 'saikai' => [], + 'sasebo' => [], + 'seihi' => [], + 'shimabara' => [], + 'shinkamigoto' => [], + 'togitsu' => [], + 'tsushima' => [], + 'unzen' => [], + ], + 'nara' => ['ando' => [], + 'gose' => [], + 'heguri' => [], + 'higashiyoshino' => [], + 'ikaruga' => [], + 'ikoma' => [], + 'kamikitayama' => [], + 'kanmaki' => [], + 'kashiba' => [], + 'kashihara' => [], + 'katsuragi' => [], + 'kawai' => [], + 'kawakami' => [], + 'kawanishi' => [], + 'koryo' => [], + 'kurotaki' => [], + 'mitsue' => [], + 'miyake' => [], + 'nara' => [], + 'nosegawa' => [], + 'oji' => [], + 'ouda' => [], + 'oyodo' => [], + 'sakurai' => [], + 'sango' => [], + 'shimoichi' => [], + 'shimokitayama' => [], + 'shinjo' => [], + 'soni' => [], + 'takatori' => [], + 'tawaramoto' => [], + 'tenkawa' => [], + 'tenri' => [], + 'uda' => [], + 'yamatokoriyama' => [], + 'yamatotakada' => [], + 'yamazoe' => [], + 'yoshino' => [], + ], + 'niigata' => ['aga' => [], + 'agano' => [], + 'gosen' => [], + 'itoigawa' => [], + 'izumozaki' => [], + 'joetsu' => [], + 'kamo' => [], + 'kariwa' => [], + 'kashiwazaki' => [], + 'minamiuonuma' => [], + 'mitsuke' => [], + 'muika' => [], + 'murakami' => [], + 'myoko' => [], + 'nagaoka' => [], + 'niigata' => [], + 'ojiya' => [], + 'omi' => [], + 'sado' => [], + 'sanjo' => [], + 'seiro' => [], + 'seirou' => [], + 'sekikawa' => [], + 'shibata' => [], + 'tagami' => [], + 'tainai' => [], + 'tochio' => [], + 'tokamachi' => [], + 'tsubame' => [], + 'tsunan' => [], + 'uonuma' => [], + 'yahiko' => [], + 'yoita' => [], + 'yuzawa' => [], + ], + 'oita' => ['beppu' => [], + 'bungoono' => [], + 'bungotakada' => [], + 'hasama' => [], + 'hiji' => [], + 'himeshima' => [], + 'hita' => [], + 'kamitsue' => [], + 'kokonoe' => [], + 'kuju' => [], + 'kunisaki' => [], + 'kusu' => [], + 'oita' => [], + 'saiki' => [], + 'taketa' => [], + 'tsukumi' => [], + 'usa' => [], + 'usuki' => [], + 'yufu' => [], + ], + 'okayama' => ['akaiwa' => [], + 'asakuchi' => [], + 'bizen' => [], + 'hayashima' => [], + 'ibara' => [], + 'kagamino' => [], + 'kasaoka' => [], + 'kibichuo' => [], + 'kumenan' => [], + 'kurashiki' => [], + 'maniwa' => [], + 'misaki' => [], + 'nagi' => [], + 'niimi' => [], + 'nishiawakura' => [], + 'okayama' => [], + 'satosho' => [], + 'setouchi' => [], + 'shinjo' => [], + 'shoo' => [], + 'soja' => [], + 'takahashi' => [], + 'tamano' => [], + 'tsuyama' => [], + 'wake' => [], + 'yakage' => [], + ], + 'okinawa' => ['aguni' => [], + 'ginowan' => [], + 'ginoza' => [], + 'gushikami' => [], + 'haebaru' => [], + 'higashi' => [], + 'hirara' => [], + 'iheya' => [], + 'ishigaki' => [], + 'ishikawa' => [], + 'itoman' => [], + 'izena' => [], + 'kadena' => [], + 'kin' => [], + 'kitadaito' => [], + 'kitanakagusuku' => [], + 'kumejima' => [], + 'kunigami' => [], + 'minamidaito' => [], + 'motobu' => [], + 'nago' => [], + 'naha' => [], + 'nakagusuku' => [], + 'nakijin' => [], + 'nanjo' => [], + 'nishihara' => [], + 'ogimi' => [], + 'okinawa' => [], + 'onna' => [], + 'shimoji' => [], + 'taketomi' => [], + 'tarama' => [], + 'tokashiki' => [], + 'tomigusuku' => [], + 'tonaki' => [], + 'urasoe' => [], + 'uruma' => [], + 'yaese' => [], + 'yomitan' => [], + 'yonabaru' => [], + 'yonaguni' => [], + 'zamami' => [], + ], + 'osaka' => ['abeno' => [], + 'chihayaakasaka' => [], + 'chuo' => [], + 'daito' => [], + 'fujiidera' => [], + 'habikino' => [], + 'hannan' => [], + 'higashiosaka' => [], + 'higashisumiyoshi' => [], + 'higashiyodogawa' => [], + 'hirakata' => [], + 'ibaraki' => [], + 'ikeda' => [], + 'izumi' => [], + 'izumiotsu' => [], + 'izumisano' => [], + 'kadoma' => [], + 'kaizuka' => [], + 'kanan' => [], + 'kashiwara' => [], + 'katano' => [], + 'kawachinagano' => [], + 'kishiwada' => [], + 'kita' => [], + 'kumatori' => [], + 'matsubara' => [], + 'minato' => [], + 'minoh' => [], + 'misaki' => [], + 'moriguchi' => [], + 'neyagawa' => [], + 'nishi' => [], + 'nose' => [], + 'osakasayama' => [], + 'sakai' => [], + 'sayama' => [], + 'sennan' => [], + 'settsu' => [], + 'shijonawate' => [], + 'shimamoto' => [], + 'suita' => [], + 'tadaoka' => [], + 'taishi' => [], + 'tajiri' => [], + 'takaishi' => [], + 'takatsuki' => [], + 'tondabayashi' => [], + 'toyonaka' => [], + 'toyono' => [], + 'yao' => [], + ], + 'saga' => ['ariake' => [], + 'arita' => [], + 'fukudomi' => [], + 'genkai' => [], + 'hamatama' => [], + 'hizen' => [], + 'imari' => [], + 'kamimine' => [], + 'kanzaki' => [], + 'karatsu' => [], + 'kashima' => [], + 'kitagata' => [], + 'kitahata' => [], + 'kiyama' => [], + 'kouhoku' => [], + 'kyuragi' => [], + 'nishiarita' => [], + 'ogi' => [], + 'omachi' => [], + 'ouchi' => [], + 'saga' => [], + 'shiroishi' => [], + 'taku' => [], + 'tara' => [], + 'tosu' => [], + 'yoshinogari' => [], + ], + 'saitama' => ['arakawa' => [], + 'asaka' => [], + 'chichibu' => [], + 'fujimi' => [], + 'fujimino' => [], + 'fukaya' => [], + 'hanno' => [], + 'hanyu' => [], + 'hasuda' => [], + 'hatogaya' => [], + 'hatoyama' => [], + 'hidaka' => [], + 'higashichichibu' => [], + 'higashimatsuyama' => [], + 'honjo' => [], + 'ina' => [], + 'iruma' => [], + 'iwatsuki' => [], + 'kamiizumi' => [], + 'kamikawa' => [], + 'kamisato' => [], + 'kasukabe' => [], + 'kawagoe' => [], + 'kawaguchi' => [], + 'kawajima' => [], + 'kazo' => [], + 'kitamoto' => [], + 'koshigaya' => [], + 'kounosu' => [], + 'kuki' => [], + 'kumagaya' => [], + 'matsubushi' => [], + 'minano' => [], + 'misato' => [], + 'miyashiro' => [], + 'miyoshi' => [], + 'moroyama' => [], + 'nagatoro' => [], + 'namegawa' => [], + 'niiza' => [], + 'ogano' => [], + 'ogawa' => [], + 'ogose' => [], + 'okegawa' => [], + 'omiya' => [], + 'otaki' => [], + 'ranzan' => [], + 'ryokami' => [], + 'saitama' => [], + 'sakado' => [], + 'satte' => [], + 'sayama' => [], + 'shiki' => [], + 'shiraoka' => [], + 'soka' => [], + 'sugito' => [], + 'toda' => [], + 'tokigawa' => [], + 'tokorozawa' => [], + 'tsurugashima' => [], + 'urawa' => [], + 'warabi' => [], + 'yashio' => [], + 'yokoze' => [], + 'yono' => [], + 'yorii' => [], + 'yoshida' => [], + 'yoshikawa' => [], + 'yoshimi' => [], + ], + 'shiga' => ['aisho' => [], + 'gamo' => [], + 'higashiomi' => [], + 'hikone' => [], + 'koka' => [], + 'konan' => [], + 'kosei' => [], + 'koto' => [], + 'kusatsu' => [], + 'maibara' => [], + 'moriyama' => [], + 'nagahama' => [], + 'nishiazai' => [], + 'notogawa' => [], + 'omihachiman' => [], + 'otsu' => [], + 'ritto' => [], + 'ryuoh' => [], + 'takashima' => [], + 'takatsuki' => [], + 'torahime' => [], + 'toyosato' => [], + 'yasu' => [], + ], + 'shimane' => ['akagi' => [], + 'ama' => [], + 'gotsu' => [], + 'hamada' => [], + 'higashiizumo' => [], + 'hikawa' => [], + 'hikimi' => [], + 'izumo' => [], + 'kakinoki' => [], + 'masuda' => [], + 'matsue' => [], + 'misato' => [], + 'nishinoshima' => [], + 'ohda' => [], + 'okinoshima' => [], + 'okuizumo' => [], + 'shimane' => [], + 'tamayu' => [], + 'tsuwano' => [], + 'unnan' => [], + 'yakumo' => [], + 'yasugi' => [], + 'yatsuka' => [], + ], + 'shizuoka' => ['arai' => [], + 'atami' => [], + 'fuji' => [], + 'fujieda' => [], + 'fujikawa' => [], + 'fujinomiya' => [], + 'fukuroi' => [], + 'gotemba' => [], + 'haibara' => [], + 'hamamatsu' => [], + 'higashiizu' => [], + 'ito' => [], + 'iwata' => [], + 'izu' => [], + 'izunokuni' => [], + 'kakegawa' => [], + 'kannami' => [], + 'kawanehon' => [], + 'kawazu' => [], + 'kikugawa' => [], + 'kosai' => [], + 'makinohara' => [], + 'matsuzaki' => [], + 'minamiizu' => [], + 'mishima' => [], + 'morimachi' => [], + 'nishiizu' => [], + 'numazu' => [], + 'omaezaki' => [], + 'shimada' => [], + 'shimizu' => [], + 'shimoda' => [], + 'shizuoka' => [], + 'susono' => [], + 'yaizu' => [], + 'yoshida' => [], + ], + 'tochigi' => ['ashikaga' => [], + 'bato' => [], + 'haga' => [], + 'ichikai' => [], + 'iwafune' => [], + 'kaminokawa' => [], + 'kanuma' => [], + 'karasuyama' => [], + 'kuroiso' => [], + 'mashiko' => [], + 'mibu' => [], + 'moka' => [], + 'motegi' => [], + 'nasu' => [], + 'nasushiobara' => [], + 'nikko' => [], + 'nishikata' => [], + 'nogi' => [], + 'ohira' => [], + 'ohtawara' => [], + 'oyama' => [], + 'sakura' => [], + 'sano' => [], + 'shimotsuke' => [], + 'shioya' => [], + 'takanezawa' => [], + 'tochigi' => [], + 'tsuga' => [], + 'ujiie' => [], + 'utsunomiya' => [], + 'yaita' => [], + ], + 'tokushima' => ['aizumi' => [], + 'anan' => [], + 'ichiba' => [], + 'itano' => [], + 'kainan' => [], + 'komatsushima' => [], + 'matsushige' => [], + 'mima' => [], + 'minami' => [], + 'miyoshi' => [], + 'mugi' => [], + 'nakagawa' => [], + 'naruto' => [], + 'sanagochi' => [], + 'shishikui' => [], + 'tokushima' => [], + 'wajiki' => [], + ], + 'tokyo' => ['adachi' => [], + 'akiruno' => [], + 'akishima' => [], + 'aogashima' => [], + 'arakawa' => [], + 'bunkyo' => [], + 'chiyoda' => [], + 'chofu' => [], + 'chuo' => [], + 'edogawa' => [], + 'fuchu' => [], + 'fussa' => [], + 'hachijo' => [], + 'hachioji' => [], + 'hamura' => [], + 'higashikurume' => [], + 'higashimurayama' => [], + 'higashiyamato' => [], + 'hino' => [], + 'hinode' => [], + 'hinohara' => [], + 'inagi' => [], + 'itabashi' => [], + 'katsushika' => [], + 'kita' => [], + 'kiyose' => [], + 'kodaira' => [], + 'koganei' => [], + 'kokubunji' => [], + 'komae' => [], + 'koto' => [], + 'kouzushima' => [], + 'kunitachi' => [], + 'machida' => [], + 'meguro' => [], + 'minato' => [], + 'mitaka' => [], + 'mizuho' => [], + 'musashimurayama' => [], + 'musashino' => [], + 'nakano' => [], + 'nerima' => [], + 'ogasawara' => [], + 'okutama' => [], + 'ome' => [], + 'oshima' => [], + 'ota' => [], + 'setagaya' => [], + 'shibuya' => [], + 'shinagawa' => [], + 'shinjuku' => [], + 'suginami' => [], + 'sumida' => [], + 'tachikawa' => [], + 'taito' => [], + 'tama' => [], + 'toshima' => [], + ], + 'tottori' => ['chizu' => [], + 'hino' => [], + 'kawahara' => [], + 'koge' => [], + 'kotoura' => [], + 'misasa' => [], + 'nanbu' => [], + 'nichinan' => [], + 'sakaiminato' => [], + 'tottori' => [], + 'wakasa' => [], + 'yazu' => [], + 'yonago' => [], + ], + 'toyama' => ['asahi' => [], + 'fuchu' => [], + 'fukumitsu' => [], + 'funahashi' => [], + 'himi' => [], + 'imizu' => [], + 'inami' => [], + 'johana' => [], + 'kamiichi' => [], + 'kurobe' => [], + 'nakaniikawa' => [], + 'namerikawa' => [], + 'nanto' => [], + 'nyuzen' => [], + 'oyabe' => [], + 'taira' => [], + 'takaoka' => [], + 'tateyama' => [], + 'toga' => [], + 'tonami' => [], + 'toyama' => [], + 'unazuki' => [], + 'uozu' => [], + 'yamada' => [], + ], + 'wakayama' => ['arida' => [], + 'aridagawa' => [], + 'gobo' => [], + 'hashimoto' => [], + 'hidaka' => [], + 'hirogawa' => [], + 'inami' => [], + 'iwade' => [], + 'kainan' => [], + 'kamitonda' => [], + 'katsuragi' => [], + 'kimino' => [], + 'kinokawa' => [], + 'kitayama' => [], + 'koya' => [], + 'koza' => [], + 'kozagawa' => [], + 'kudoyama' => [], + 'kushimoto' => [], + 'mihama' => [], + 'misato' => [], + 'nachikatsuura' => [], + 'shingu' => [], + 'shirahama' => [], + 'taiji' => [], + 'tanabe' => [], + 'wakayama' => [], + 'yuasa' => [], + 'yura' => [], + ], + 'yamagata' => ['asahi' => [], + 'funagata' => [], + 'higashine' => [], + 'iide' => [], + 'kahoku' => [], + 'kaminoyama' => [], + 'kaneyama' => [], + 'kawanishi' => [], + 'mamurogawa' => [], + 'mikawa' => [], + 'murayama' => [], + 'nagai' => [], + 'nakayama' => [], + 'nanyo' => [], + 'nishikawa' => [], + 'obanazawa' => [], + 'oe' => [], + 'oguni' => [], + 'ohkura' => [], + 'oishida' => [], + 'sagae' => [], + 'sakata' => [], + 'sakegawa' => [], + 'shinjo' => [], + 'shirataka' => [], + 'shonai' => [], + 'takahata' => [], + 'tendo' => [], + 'tozawa' => [], + 'tsuruoka' => [], + 'yamagata' => [], + 'yamanobe' => [], + 'yonezawa' => [], + 'yuza' => [], + ], + 'yamaguchi' => ['abu' => [], + 'hagi' => [], + 'hikari' => [], + 'hofu' => [], + 'iwakuni' => [], + 'kudamatsu' => [], + 'mitou' => [], + 'nagato' => [], + 'oshima' => [], + 'shimonoseki' => [], + 'shunan' => [], + 'tabuse' => [], + 'tokuyama' => [], + 'toyota' => [], + 'ube' => [], + 'yuu' => [], + ], + 'yamanashi' => ['chuo' => [], + 'doshi' => [], + 'fuefuki' => [], + 'fujikawa' => [], + 'fujikawaguchiko' => [], + 'fujiyoshida' => [], + 'hayakawa' => [], + 'hokuto' => [], + 'ichikawamisato' => [], + 'kai' => [], + 'kofu' => [], + 'koshu' => [], + 'kosuge' => [], + 'minami-alps' => [], + 'minobu' => [], + 'nakamichi' => [], + 'nanbu' => [], + 'narusawa' => [], + 'nirasaki' => [], + 'nishikatsura' => [], + 'oshino' => [], + 'otsuki' => [], + 'showa' => [], + 'tabayama' => [], + 'tsuru' => [], + 'uenohara' => [], + 'yamanakako' => [], + 'yamanashi' => [], + ], + 'kawasaki' => ['*' => [], + 'city' => ['!' => '' + ], + ], + 'kitakyushu' => ['*' => [], + 'city' => ['!' => '' + ], + ], + 'kobe' => ['*' => [], + 'city' => ['!' => '' + ], + ], + 'nagoya' => ['*' => [], + 'city' => ['!' => '' + ], + ], + 'sapporo' => ['*' => [], + 'city' => ['!' => '' + ], + ], + 'sendai' => ['*' => [], + 'city' => ['!' => '' + ], + ], + 'yokohama' => ['*' => [], + 'city' => ['!' => '' + ], + ], + ], + 'ke' => ['*' => [], + ], + 'kg' => ['org' => [], + 'net' => [], + 'com' => [], + 'edu' => [], + 'gov' => [], + 'mil' => [], + ], + 'kh' => ['*' => [], + ], + 'ki' => ['edu' => [], + 'biz' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + 'info' => [], + 'com' => [], + ], + 'km' => ['org' => [], + 'nom' => [], + 'gov' => [], + 'prd' => [], + 'tm' => [], + 'edu' => [], + 'mil' => [], + 'ass' => [], + 'com' => [], + 'coop' => [], + 'asso' => [], + 'presse' => [], + 'medecin' => [], + 'notaires' => [], + 'pharmaciens' => [], + 'veterinaire' => [], + 'gouv' => [], + ], + 'kn' => ['net' => [], + 'org' => [], + 'edu' => [], + 'gov' => [], + ], + 'kp' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'org' => [], + 'rep' => [], + 'tra' => [], + ], + 'kr' => ['ac' => [], + 'co' => [], + 'es' => [], + 'go' => [], + 'hs' => [], + 'kg' => [], + 'mil' => [], + 'ms' => [], + 'ne' => [], + 'or' => [], + 'pe' => [], + 're' => [], + 'sc' => [], + 'busan' => [], + 'chungbuk' => [], + 'chungnam' => [], + 'daegu' => [], + 'daejeon' => [], + 'gangwon' => [], + 'gwangju' => [], + 'gyeongbuk' => [], + 'gyeonggi' => [], + 'gyeongnam' => [], + 'incheon' => [], + 'jeju' => [], + 'jeonbuk' => [], + 'jeonnam' => [], + 'seoul' => [], + 'ulsan' => [], + ], + 'kw' => ['*' => [], + ], + 'ky' => ['edu' => [], + 'gov' => [], + 'com' => [], + 'org' => [], + 'net' => [], + ], + 'kz' => ['org' => [], + 'edu' => [], + 'net' => [], + 'gov' => [], + 'mil' => [], + 'com' => [], + ], + 'la' => ['int' => [], + 'net' => [], + 'info' => [], + 'edu' => [], + 'gov' => [], + 'per' => [], + 'com' => [], + 'org' => [], + 'c' => [], + ], + 'lb' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'net' => [], + 'org' => [], + ], + 'lc' => ['com' => [], + 'net' => [], + 'co' => [], + 'org' => [], + 'edu' => [], + 'gov' => [], + ], + 'li' => [], + 'lk' => ['gov' => [], + 'sch' => [], + 'net' => [], + 'int' => [], + 'com' => [], + 'org' => [], + 'edu' => [], + 'ngo' => [], + 'soc' => [], + 'web' => [], + 'ltd' => [], + 'assn' => [], + 'grp' => [], + 'hotel' => [], + ], + 'lr' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'org' => [], + 'net' => [], + ], + 'ls' => ['co' => [], + 'org' => [], + ], + 'lt' => ['gov' => [], + ], + 'lu' => [], + 'lv' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'org' => [], + 'mil' => [], + 'id' => [], + 'net' => [], + 'asn' => [], + 'conf' => [], + ], + 'ly' => ['com' => [], + 'net' => [], + 'gov' => [], + 'plc' => [], + 'edu' => [], + 'sch' => [], + 'med' => [], + 'org' => [], + 'id' => [], + ], + 'ma' => ['co' => [], + 'net' => [], + 'gov' => [], + 'org' => [], + 'ac' => [], + 'press' => [], + ], + 'mc' => ['tm' => [], + 'asso' => [], + ], + 'md' => [], + 'me' => ['co' => [], + 'net' => [], + 'org' => [], + 'edu' => [], + 'ac' => [], + 'gov' => [], + 'its' => [], + 'priv' => [], + ], + 'mg' => ['org' => [], + 'nom' => [], + 'gov' => [], + 'prd' => [], + 'tm' => [], + 'edu' => [], + 'mil' => [], + 'com' => [], + ], + 'mh' => [], + 'mil' => [], + 'mk' => ['com' => [], + 'org' => [], + 'net' => [], + 'edu' => [], + 'gov' => [], + 'inf' => [], + 'name' => [], + ], + 'ml' => ['com' => [], + 'edu' => [], + 'gouv' => [], + 'gov' => [], + 'net' => [], + 'org' => [], + 'presse' => [], + ], + 'mm' => ['*' => [], + ], + 'mn' => ['gov' => [], + 'edu' => [], + 'org' => [], + ], + 'mo' => ['com' => [], + 'net' => [], + 'org' => [], + 'edu' => [], + 'gov' => [], + ], + 'mobi' => [], + 'mp' => [], + 'mq' => [], + 'mr' => ['gov' => [], + ], + 'ms' => [], + 'mt' => ['*' => [], + ], + 'mu' => ['com' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + 'ac' => [], + 'co' => [], + 'or' => [], + ], + 'museum' => ['academy' => [], + 'agriculture' => [], + 'air' => [], + 'airguard' => [], + 'alabama' => [], + 'alaska' => [], + 'amber' => [], + 'ambulance' => [], + 'american' => [], + 'americana' => [], + 'americanantiques' => [], + 'americanart' => [], + 'amsterdam' => [], + 'and' => [], + 'annefrank' => [], + 'anthro' => [], + 'anthropology' => [], + 'antiques' => [], + 'aquarium' => [], + 'arboretum' => [], + 'archaeological' => [], + 'archaeology' => [], + 'architecture' => [], + 'art' => [], + 'artanddesign' => [], + 'artcenter' => [], + 'artdeco' => [], + 'arteducation' => [], + 'artgallery' => [], + 'arts' => [], + 'artsandcrafts' => [], + 'asmatart' => [], + 'assassination' => [], + 'assisi' => [], + 'association' => [], + 'astronomy' => [], + 'atlanta' => [], + 'austin' => [], + 'australia' => [], + 'automotive' => [], + 'aviation' => [], + 'axis' => [], + 'badajoz' => [], + 'baghdad' => [], + 'bahn' => [], + 'bale' => [], + 'baltimore' => [], + 'barcelona' => [], + 'baseball' => [], + 'basel' => [], + 'baths' => [], + 'bauern' => [], + 'beauxarts' => [], + 'beeldengeluid' => [], + 'bellevue' => [], + 'bergbau' => [], + 'berkeley' => [], + 'berlin' => [], + 'bern' => [], + 'bible' => [], + 'bilbao' => [], + 'bill' => [], + 'birdart' => [], + 'birthplace' => [], + 'bonn' => [], + 'boston' => [], + 'botanical' => [], + 'botanicalgarden' => [], + 'botanicgarden' => [], + 'botany' => [], + 'brandywinevalley' => [], + 'brasil' => [], + 'bristol' => [], + 'british' => [], + 'britishcolumbia' => [], + 'broadcast' => [], + 'brunel' => [], + 'brussel' => [], + 'brussels' => [], + 'bruxelles' => [], + 'building' => [], + 'burghof' => [], + 'bus' => [], + 'bushey' => [], + 'cadaques' => [], + 'california' => [], + 'cambridge' => [], + 'can' => [], + 'canada' => [], + 'capebreton' => [], + 'carrier' => [], + 'cartoonart' => [], + 'casadelamoneda' => [], + 'castle' => [], + 'castres' => [], + 'celtic' => [], + 'center' => [], + 'chattanooga' => [], + 'cheltenham' => [], + 'chesapeakebay' => [], + 'chicago' => [], + 'children' => [], + 'childrens' => [], + 'childrensgarden' => [], + 'chiropractic' => [], + 'chocolate' => [], + 'christiansburg' => [], + 'cincinnati' => [], + 'cinema' => [], + 'circus' => [], + 'civilisation' => [], + 'civilization' => [], + 'civilwar' => [], + 'clinton' => [], + 'clock' => [], + 'coal' => [], + 'coastaldefence' => [], + 'cody' => [], + 'coldwar' => [], + 'collection' => [], + 'colonialwilliamsburg' => [], + 'coloradoplateau' => [], + 'columbia' => [], + 'columbus' => [], + 'communication' => [], + 'communications' => [], + 'community' => [], + 'computer' => [], + 'computerhistory' => [], + 'comunicações' => [], + 'contemporary' => [], + 'contemporaryart' => [], + 'convent' => [], + 'copenhagen' => [], + 'corporation' => [], + 'correios-e-telecomunicações' => [], + 'corvette' => [], + 'costume' => [], + 'countryestate' => [], + 'county' => [], + 'crafts' => [], + 'cranbrook' => [], + 'creation' => [], + 'cultural' => [], + 'culturalcenter' => [], + 'culture' => [], + 'cyber' => [], + 'cymru' => [], + 'dali' => [], + 'dallas' => [], + 'database' => [], + 'ddr' => [], + 'decorativearts' => [], + 'delaware' => [], + 'delmenhorst' => [], + 'denmark' => [], + 'depot' => [], + 'design' => [], + 'detroit' => [], + 'dinosaur' => [], + 'discovery' => [], + 'dolls' => [], + 'donostia' => [], + 'durham' => [], + 'eastafrica' => [], + 'eastcoast' => [], + 'education' => [], + 'educational' => [], + 'egyptian' => [], + 'eisenbahn' => [], + 'elburg' => [], + 'elvendrell' => [], + 'embroidery' => [], + 'encyclopedic' => [], + 'england' => [], + 'entomology' => [], + 'environment' => [], + 'environmentalconservation' => [], + 'epilepsy' => [], + 'essex' => [], + 'estate' => [], + 'ethnology' => [], + 'exeter' => [], + 'exhibition' => [], + 'family' => [], + 'farm' => [], + 'farmequipment' => [], + 'farmers' => [], + 'farmstead' => [], + 'field' => [], + 'figueres' => [], + 'filatelia' => [], + 'film' => [], + 'fineart' => [], + 'finearts' => [], + 'finland' => [], + 'flanders' => [], + 'florida' => [], + 'force' => [], + 'fortmissoula' => [], + 'fortworth' => [], + 'foundation' => [], + 'francaise' => [], + 'frankfurt' => [], + 'franziskaner' => [], + 'freemasonry' => [], + 'freiburg' => [], + 'fribourg' => [], + 'frog' => [], + 'fundacio' => [], + 'furniture' => [], + 'gallery' => [], + 'garden' => [], + 'gateway' => [], + 'geelvinck' => [], + 'gemological' => [], + 'geology' => [], + 'georgia' => [], + 'giessen' => [], + 'glas' => [], + 'glass' => [], + 'gorge' => [], + 'grandrapids' => [], + 'graz' => [], + 'guernsey' => [], + 'halloffame' => [], + 'hamburg' => [], + 'handson' => [], + 'harvestcelebration' => [], + 'hawaii' => [], + 'health' => [], + 'heimatunduhren' => [], + 'hellas' => [], + 'helsinki' => [], + 'hembygdsforbund' => [], + 'heritage' => [], + 'histoire' => [], + 'historical' => [], + 'historicalsociety' => [], + 'historichouses' => [], + 'historisch' => [], + 'historisches' => [], + 'history' => [], + 'historyofscience' => [], + 'horology' => [], + 'house' => [], + 'humanities' => [], + 'illustration' => [], + 'imageandsound' => [], + 'indian' => [], + 'indiana' => [], + 'indianapolis' => [], + 'indianmarket' => [], + 'intelligence' => [], + 'interactive' => [], + 'iraq' => [], + 'iron' => [], + 'isleofman' => [], + 'jamison' => [], + 'jefferson' => [], + 'jerusalem' => [], + 'jewelry' => [], + 'jewish' => [], + 'jewishart' => [], + 'jfk' => [], + 'journalism' => [], + 'judaica' => [], + 'judygarland' => [], + 'juedisches' => [], + 'juif' => [], + 'karate' => [], + 'karikatur' => [], + 'kids' => [], + 'koebenhavn' => [], + 'koeln' => [], + 'kunst' => [], + 'kunstsammlung' => [], + 'kunstunddesign' => [], + 'labor' => [], + 'labour' => [], + 'lajolla' => [], + 'lancashire' => [], + 'landes' => [], + 'lans' => [], + 'läns' => [], + 'larsson' => [], + 'lewismiller' => [], + 'lincoln' => [], + 'linz' => [], + 'living' => [], + 'livinghistory' => [], + 'localhistory' => [], + 'london' => [], + 'losangeles' => [], + 'louvre' => [], + 'loyalist' => [], + 'lucerne' => [], + 'luxembourg' => [], + 'luzern' => [], + 'mad' => [], + 'madrid' => [], + 'mallorca' => [], + 'manchester' => [], + 'mansion' => [], + 'mansions' => [], + 'manx' => [], + 'marburg' => [], + 'maritime' => [], + 'maritimo' => [], + 'maryland' => [], + 'marylhurst' => [], + 'media' => [], + 'medical' => [], + 'medizinhistorisches' => [], + 'meeres' => [], + 'memorial' => [], + 'mesaverde' => [], + 'michigan' => [], + 'midatlantic' => [], + 'military' => [], + 'mill' => [], + 'miners' => [], + 'mining' => [], + 'minnesota' => [], + 'missile' => [], + 'missoula' => [], + 'modern' => [], + 'moma' => [], + 'money' => [], + 'monmouth' => [], + 'monticello' => [], + 'montreal' => [], + 'moscow' => [], + 'motorcycle' => [], + 'muenchen' => [], + 'muenster' => [], + 'mulhouse' => [], + 'muncie' => [], + 'museet' => [], + 'museumcenter' => [], + 'museumvereniging' => [], + 'music' => [], + 'national' => [], + 'nationalfirearms' => [], + 'nationalheritage' => [], + 'nativeamerican' => [], + 'naturalhistory' => [], + 'naturalhistorymuseum' => [], + 'naturalsciences' => [], + 'nature' => [], + 'naturhistorisches' => [], + 'natuurwetenschappen' => [], + 'naumburg' => [], + 'naval' => [], + 'nebraska' => [], + 'neues' => [], + 'newhampshire' => [], + 'newjersey' => [], + 'newmexico' => [], + 'newport' => [], + 'newspaper' => [], + 'newyork' => [], + 'niepce' => [], + 'norfolk' => [], + 'north' => [], + 'nrw' => [], + 'nuernberg' => [], + 'nuremberg' => [], + 'nyc' => [], + 'nyny' => [], + 'oceanographic' => [], + 'oceanographique' => [], + 'omaha' => [], + 'online' => [], + 'ontario' => [], + 'openair' => [], + 'oregon' => [], + 'oregontrail' => [], + 'otago' => [], + 'oxford' => [], + 'pacific' => [], + 'paderborn' => [], + 'palace' => [], + 'paleo' => [], + 'palmsprings' => [], + 'panama' => [], + 'paris' => [], + 'pasadena' => [], + 'pharmacy' => [], + 'philadelphia' => [], + 'philadelphiaarea' => [], + 'philately' => [], + 'phoenix' => [], + 'photography' => [], + 'pilots' => [], + 'pittsburgh' => [], + 'planetarium' => [], + 'plantation' => [], + 'plants' => [], + 'plaza' => [], + 'portal' => [], + 'portland' => [], + 'portlligat' => [], + 'posts-and-telecommunications' => [], + 'preservation' => [], + 'presidio' => [], + 'press' => [], + 'project' => [], + 'public' => [], + 'pubol' => [], + 'quebec' => [], + 'railroad' => [], + 'railway' => [], + 'research' => [], + 'resistance' => [], + 'riodejaneiro' => [], + 'rochester' => [], + 'rockart' => [], + 'roma' => [], + 'russia' => [], + 'saintlouis' => [], + 'salem' => [], + 'salvadordali' => [], + 'salzburg' => [], + 'sandiego' => [], + 'sanfrancisco' => [], + 'santabarbara' => [], + 'santacruz' => [], + 'santafe' => [], + 'saskatchewan' => [], + 'satx' => [], + 'savannahga' => [], + 'schlesisches' => [], + 'schoenbrunn' => [], + 'schokoladen' => [], + 'school' => [], + 'schweiz' => [], + 'science' => [], + 'scienceandhistory' => [], + 'scienceandindustry' => [], + 'sciencecenter' => [], + 'sciencecenters' => [], + 'science-fiction' => [], + 'sciencehistory' => [], + 'sciences' => [], + 'sciencesnaturelles' => [], + 'scotland' => [], + 'seaport' => [], + 'settlement' => [], + 'settlers' => [], + 'shell' => [], + 'sherbrooke' => [], + 'sibenik' => [], + 'silk' => [], + 'ski' => [], + 'skole' => [], + 'society' => [], + 'sologne' => [], + 'soundandvision' => [], + 'southcarolina' => [], + 'southwest' => [], + 'space' => [], + 'spy' => [], + 'square' => [], + 'stadt' => [], + 'stalbans' => [], + 'starnberg' => [], + 'state' => [], + 'stateofdelaware' => [], + 'station' => [], + 'steam' => [], + 'steiermark' => [], + 'stjohn' => [], + 'stockholm' => [], + 'stpetersburg' => [], + 'stuttgart' => [], + 'suisse' => [], + 'surgeonshall' => [], + 'surrey' => [], + 'svizzera' => [], + 'sweden' => [], + 'sydney' => [], + 'tank' => [], + 'tcm' => [], + 'technology' => [], + 'telekommunikation' => [], + 'television' => [], + 'texas' => [], + 'textile' => [], + 'theater' => [], + 'time' => [], + 'timekeeping' => [], + 'topology' => [], + 'torino' => [], + 'touch' => [], + 'town' => [], + 'transport' => [], + 'tree' => [], + 'trolley' => [], + 'trust' => [], + 'trustee' => [], + 'uhren' => [], + 'ulm' => [], + 'undersea' => [], + 'university' => [], + 'usa' => [], + 'usantiques' => [], + 'usarts' => [], + 'uscountryestate' => [], + 'usculture' => [], + 'usdecorativearts' => [], + 'usgarden' => [], + 'ushistory' => [], + 'ushuaia' => [], + 'uslivinghistory' => [], + 'utah' => [], + 'uvic' => [], + 'valley' => [], + 'vantaa' => [], + 'versailles' => [], + 'viking' => [], + 'village' => [], + 'virginia' => [], + 'virtual' => [], + 'virtuel' => [], + 'vlaanderen' => [], + 'volkenkunde' => [], + 'wales' => [], + 'wallonie' => [], + 'war' => [], + 'washingtondc' => [], + 'watchandclock' => [], + 'watch-and-clock' => [], + 'western' => [], + 'westfalen' => [], + 'whaling' => [], + 'wildlife' => [], + 'williamsburg' => [], + 'windmill' => [], + 'workshop' => [], + 'york' => [], + 'yorkshire' => [], + 'yosemite' => [], + 'youth' => [], + 'zoological' => [], + 'zoology' => [], + 'ירושלים' => [], + 'иком' => [], + ], + 'mv' => ['aero' => [], + 'biz' => [], + 'com' => [], + 'coop' => [], + 'edu' => [], + 'gov' => [], + 'info' => [], + 'int' => [], + 'mil' => [], + 'museum' => [], + 'name' => [], + 'net' => [], + 'org' => [], + 'pro' => [], + ], + 'mw' => ['ac' => [], + 'biz' => [], + 'co' => [], + 'com' => [], + 'coop' => [], + 'edu' => [], + 'gov' => [], + 'int' => [], + 'museum' => [], + 'net' => [], + 'org' => [], + ], + 'mx' => ['com' => [], + 'org' => [], + 'gob' => [], + 'edu' => [], + 'net' => [], + ], + 'my' => ['com' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + 'edu' => [], + 'mil' => [], + 'name' => [], + ], + 'mz' => ['*' => [], + ], + 'na' => ['info' => [], + 'pro' => [], + 'name' => [], + 'school' => [], + 'or' => [], + 'dr' => [], + 'us' => [], + 'mx' => [], + 'ca' => [], + 'in' => [], + 'cc' => [], + 'tv' => [], + 'ws' => [], + 'mobi' => [], + 'co' => [], + 'com' => [], + 'org' => [], + ], + 'name' => ['her' => ['forgot' => [], + ], + 'his' => ['forgot' => [], + ], + ], + 'nc' => ['asso' => [], + ], + 'ne' => [], + 'net' => ['gb' => [], + 'hu' => [], + 'jp' => [], + 'se' => [], + 'uk' => [], + 'za' => [], + 'at-band-camp' => [], + 'blogdns' => [], + 'broke-it' => [], + 'buyshouses' => [], + 'dnsalias' => [], + 'dnsdojo' => [], + 'does-it' => [], + 'dontexist' => [], + 'dynalias' => [], + 'dynathome' => [], + 'endofinternet' => [], + 'from-az' => [], + 'from-co' => [], + 'from-la' => [], + 'from-ny' => [], + 'gets-it' => [], + 'ham-radio-op' => [], + 'homeftp' => [], + 'homeip' => [], + 'homelinux' => [], + 'homeunix' => [], + 'in-the-band' => [], + 'is-a-chef' => [], + 'is-a-geek' => [], + 'isa-geek' => [], + 'kicks-ass' => [], + 'office-on-the' => [], + 'podzone' => [], + 'scrapper-site' => [], + 'selfip' => [], + 'sells-it' => [], + 'servebbs' => [], + 'serveftp' => [], + 'thruhere' => [], + 'webhop' => [], + ], + 'nf' => ['com' => [], + 'net' => [], + 'per' => [], + 'rec' => [], + 'web' => [], + 'arts' => [], + 'firm' => [], + 'info' => [], + 'other' => [], + 'store' => [], + ], + 'ng' => ['ac' => [], + 'com' => [], + 'edu' => [], + 'gov' => [], + 'net' => [], + 'org' => [], + ], + 'ni' => ['*' => [], + ], + 'nl' => ['bv' => [], + 'co' => [], + ], + 'no' => ['fhs' => [], + 'vgs' => [], + 'fylkesbibl' => [], + 'folkebibl' => [], + 'museum' => [], + 'idrett' => [], + 'priv' => [], + 'mil' => [], + 'stat' => [], + 'dep' => [], + 'kommune' => [], + 'herad' => [], + 'aa' => ['gs' => [], + ], + 'ah' => ['gs' => [], + ], + 'bu' => ['gs' => [], + ], + 'fm' => ['gs' => [], + ], + 'hl' => ['gs' => [], + ], + 'hm' => ['gs' => [], + ], + 'jan-mayen' => ['gs' => [], + ], + 'mr' => ['gs' => [], + ], + 'nl' => ['gs' => [], + ], + 'nt' => ['gs' => [], + ], + 'of' => ['gs' => [], + ], + 'ol' => ['gs' => [], + ], + 'oslo' => ['gs' => [], + ], + 'rl' => ['gs' => [], + ], + 'sf' => ['gs' => [], + ], + 'st' => ['gs' => [], + ], + 'svalbard' => ['gs' => [], + ], + 'tm' => ['gs' => [], + ], + 'tr' => ['gs' => [], + ], + 'va' => ['gs' => [], + ], + 'vf' => ['gs' => [], + ], + 'akrehamn' => [], + 'åkrehamn' => [], + 'algard' => [], + 'ålgård' => [], + 'arna' => [], + 'brumunddal' => [], + 'bryne' => [], + 'bronnoysund' => [], + 'brønnøysund' => [], + 'drobak' => [], + 'drøbak' => [], + 'egersund' => [], + 'fetsund' => [], + 'floro' => [], + 'florø' => [], + 'fredrikstad' => [], + 'hokksund' => [], + 'honefoss' => [], + 'hønefoss' => [], + 'jessheim' => [], + 'jorpeland' => [], + 'jørpeland' => [], + 'kirkenes' => [], + 'kopervik' => [], + 'krokstadelva' => [], + 'langevag' => [], + 'langevåg' => [], + 'leirvik' => [], + 'mjondalen' => [], + 'mjøndalen' => [], + 'mo-i-rana' => [], + 'mosjoen' => [], + 'mosjøen' => [], + 'nesoddtangen' => [], + 'orkanger' => [], + 'osoyro' => [], + 'osøyro' => [], + 'raholt' => [], + 'råholt' => [], + 'sandnessjoen' => [], + 'sandnessjøen' => [], + 'skedsmokorset' => [], + 'slattum' => [], + 'spjelkavik' => [], + 'stathelle' => [], + 'stavern' => [], + 'stjordalshalsen' => [], + 'stjørdalshalsen' => [], + 'tananger' => [], + 'tranby' => [], + 'vossevangen' => [], + 'afjord' => [], + 'åfjord' => [], + 'agdenes' => [], + 'al' => [], + 'ål' => [], + 'alesund' => [], + 'ålesund' => [], + 'alstahaug' => [], + 'alta' => [], + 'áltá' => [], + 'alaheadju' => [], + 'álaheadju' => [], + 'alvdal' => [], + 'amli' => [], + 'åmli' => [], + 'amot' => [], + 'åmot' => [], + 'andebu' => [], + 'andoy' => [], + 'andøy' => [], + 'andasuolo' => [], + 'ardal' => [], + 'årdal' => [], + 'aremark' => [], + 'arendal' => [], + 'ås' => [], + 'aseral' => [], + 'åseral' => [], + 'asker' => [], + 'askim' => [], + 'askvoll' => [], + 'askoy' => [], + 'askøy' => [], + 'asnes' => [], + 'åsnes' => [], + 'audnedaln' => [], + 'aukra' => [], + 'aure' => [], + 'aurland' => [], + 'aurskog-holand' => [], + 'aurskog-høland' => [], + 'austevoll' => [], + 'austrheim' => [], + 'averoy' => [], + 'averøy' => [], + 'balestrand' => [], + 'ballangen' => [], + 'balat' => [], + 'bálát' => [], + 'balsfjord' => [], + 'bahccavuotna' => [], + 'báhccavuotna' => [], + 'bamble' => [], + 'bardu' => [], + 'beardu' => [], + 'beiarn' => [], + 'bajddar' => [], + 'bájddar' => [], + 'baidar' => [], + 'báidár' => [], + 'berg' => [], + 'bergen' => [], + 'berlevag' => [], + 'berlevåg' => [], + 'bearalvahki' => [], + 'bearalváhki' => [], + 'bindal' => [], + 'birkenes' => [], + 'bjarkoy' => [], + 'bjarkøy' => [], + 'bjerkreim' => [], + 'bjugn' => [], + 'bodo' => [], + 'bodø' => [], + 'badaddja' => [], + 'bådåddjå' => [], + 'budejju' => [], + 'bokn' => [], + 'bremanger' => [], + 'bronnoy' => [], + 'brønnøy' => [], + 'bygland' => [], + 'bykle' => [], + 'barum' => [], + 'bærum' => [], + 'telemark' => ['bo' => [], + 'bø' => [], + ], + 'nordland' => ['bo' => [], + 'bø' => [], + 'heroy' => [], + 'herøy' => [], + ], + 'bievat' => [], + 'bievát' => [], + 'bomlo' => [], + 'bømlo' => [], + 'batsfjord' => [], + 'båtsfjord' => [], + 'bahcavuotna' => [], + 'báhcavuotna' => [], + 'dovre' => [], + 'drammen' => [], + 'drangedal' => [], + 'dyroy' => [], + 'dyrøy' => [], + 'donna' => [], + 'dønna' => [], + 'eid' => [], + 'eidfjord' => [], + 'eidsberg' => [], + 'eidskog' => [], + 'eidsvoll' => [], + 'eigersund' => [], + 'elverum' => [], + 'enebakk' => [], + 'engerdal' => [], + 'etne' => [], + 'etnedal' => [], + 'evenes' => [], + 'evenassi' => [], + 'evenášši' => [], + 'evje-og-hornnes' => [], + 'farsund' => [], + 'fauske' => [], + 'fuossko' => [], + 'fuoisku' => [], + 'fedje' => [], + 'fet' => [], + 'finnoy' => [], + 'finnøy' => [], + 'fitjar' => [], + 'fjaler' => [], + 'fjell' => [], + 'flakstad' => [], + 'flatanger' => [], + 'flekkefjord' => [], + 'flesberg' => [], + 'flora' => [], + 'fla' => [], + 'flå' => [], + 'folldal' => [], + 'forsand' => [], + 'fosnes' => [], + 'frei' => [], + 'frogn' => [], + 'froland' => [], + 'frosta' => [], + 'frana' => [], + 'fræna' => [], + 'froya' => [], + 'frøya' => [], + 'fusa' => [], + 'fyresdal' => [], + 'forde' => [], + 'førde' => [], + 'gamvik' => [], + 'gangaviika' => [], + 'gáŋgaviika' => [], + 'gaular' => [], + 'gausdal' => [], + 'gildeskal' => [], + 'gildeskål' => [], + 'giske' => [], + 'gjemnes' => [], + 'gjerdrum' => [], + 'gjerstad' => [], + 'gjesdal' => [], + 'gjovik' => [], + 'gjøvik' => [], + 'gloppen' => [], + 'gol' => [], + 'gran' => [], + 'grane' => [], + 'granvin' => [], + 'gratangen' => [], + 'grimstad' => [], + 'grong' => [], + 'kraanghke' => [], + 'kråanghke' => [], + 'grue' => [], + 'gulen' => [], + 'hadsel' => [], + 'halden' => [], + 'halsa' => [], + 'hamar' => [], + 'hamaroy' => [], + 'habmer' => [], + 'hábmer' => [], + 'hapmir' => [], + 'hápmir' => [], + 'hammerfest' => [], + 'hammarfeasta' => [], + 'hámmárfeasta' => [], + 'haram' => [], + 'hareid' => [], + 'harstad' => [], + 'hasvik' => [], + 'aknoluokta' => [], + 'ákŋoluokta' => [], + 'hattfjelldal' => [], + 'aarborte' => [], + 'haugesund' => [], + 'hemne' => [], + 'hemnes' => [], + 'hemsedal' => [], + 'more-og-romsdal' => ['heroy' => [], + 'sande' => [], + ], + 'møre-og-romsdal' => ['herøy' => [], + 'sande' => [], + ], + 'hitra' => [], + 'hjartdal' => [], + 'hjelmeland' => [], + 'hobol' => [], + 'hobøl' => [], + 'hof' => [], + 'hol' => [], + 'hole' => [], + 'holmestrand' => [], + 'holtalen' => [], + 'holtålen' => [], + 'hornindal' => [], + 'horten' => [], + 'hurdal' => [], + 'hurum' => [], + 'hvaler' => [], + 'hyllestad' => [], + 'hagebostad' => [], + 'hægebostad' => [], + 'hoyanger' => [], + 'høyanger' => [], + 'hoylandet' => [], + 'høylandet' => [], + 'ha' => [], + 'hå' => [], + 'ibestad' => [], + 'inderoy' => [], + 'inderøy' => [], + 'iveland' => [], + 'jevnaker' => [], + 'jondal' => [], + 'jolster' => [], + 'jølster' => [], + 'karasjok' => [], + 'karasjohka' => [], + 'kárášjohka' => [], + 'karlsoy' => [], + 'galsa' => [], + 'gálsá' => [], + 'karmoy' => [], + 'karmøy' => [], + 'kautokeino' => [], + 'guovdageaidnu' => [], + 'klepp' => [], + 'klabu' => [], + 'klæbu' => [], + 'kongsberg' => [], + 'kongsvinger' => [], + 'kragero' => [], + 'kragerø' => [], + 'kristiansand' => [], + 'kristiansund' => [], + 'krodsherad' => [], + 'krødsherad' => [], + 'kvalsund' => [], + 'rahkkeravju' => [], + 'ráhkkerávju' => [], + 'kvam' => [], + 'kvinesdal' => [], + 'kvinnherad' => [], + 'kviteseid' => [], + 'kvitsoy' => [], + 'kvitsøy' => [], + 'kvafjord' => [], + 'kvæfjord' => [], + 'giehtavuoatna' => [], + 'kvanangen' => [], + 'kvænangen' => [], + 'navuotna' => [], + 'návuotna' => [], + 'kafjord' => [], + 'kåfjord' => [], + 'gaivuotna' => [], + 'gáivuotna' => [], + 'larvik' => [], + 'lavangen' => [], + 'lavagis' => [], + 'loabat' => [], + 'loabát' => [], + 'lebesby' => [], + 'davvesiida' => [], + 'leikanger' => [], + 'leirfjord' => [], + 'leka' => [], + 'leksvik' => [], + 'lenvik' => [], + 'leangaviika' => [], + 'leaŋgaviika' => [], + 'lesja' => [], + 'levanger' => [], + 'lier' => [], + 'lierne' => [], + 'lillehammer' => [], + 'lillesand' => [], + 'lindesnes' => [], + 'lindas' => [], + 'lindås' => [], + 'lom' => [], + 'loppa' => [], + 'lahppi' => [], + 'láhppi' => [], + 'lund' => [], + 'lunner' => [], + 'luroy' => [], + 'lurøy' => [], + 'luster' => [], + 'lyngdal' => [], + 'lyngen' => [], + 'ivgu' => [], + 'lardal' => [], + 'lerdal' => [], + 'lærdal' => [], + 'lodingen' => [], + 'lødingen' => [], + 'lorenskog' => [], + 'lørenskog' => [], + 'loten' => [], + 'løten' => [], + 'malvik' => [], + 'masoy' => [], + 'måsøy' => [], + 'muosat' => [], + 'muosát' => [], + 'mandal' => [], + 'marker' => [], + 'marnardal' => [], + 'masfjorden' => [], + 'meland' => [], + 'meldal' => [], + 'melhus' => [], + 'meloy' => [], + 'meløy' => [], + 'meraker' => [], + 'meråker' => [], + 'moareke' => [], + 'moåreke' => [], + 'midsund' => [], + 'midtre-gauldal' => [], + 'modalen' => [], + 'modum' => [], + 'molde' => [], + 'moskenes' => [], + 'moss' => [], + 'mosvik' => [], + 'malselv' => [], + 'målselv' => [], + 'malatvuopmi' => [], + 'málatvuopmi' => [], + 'namdalseid' => [], + 'aejrie' => [], + 'namsos' => [], + 'namsskogan' => [], + 'naamesjevuemie' => [], + 'nååmesjevuemie' => [], + 'laakesvuemie' => [], + 'nannestad' => [], + 'narvik' => [], + 'narviika' => [], + 'naustdal' => [], + 'nedre-eiker' => [], + 'akershus' => ['nes' => [], + ], + 'buskerud' => ['nes' => [], + ], + 'nesna' => [], + 'nesodden' => [], + 'nesseby' => [], + 'unjarga' => [], + 'unjárga' => [], + 'nesset' => [], + 'nissedal' => [], + 'nittedal' => [], + 'nord-aurdal' => [], + 'nord-fron' => [], + 'nord-odal' => [], + 'norddal' => [], + 'nordkapp' => [], + 'davvenjarga' => [], + 'davvenjárga' => [], + 'nordre-land' => [], + 'nordreisa' => [], + 'raisa' => [], + 'ráisa' => [], + 'nore-og-uvdal' => [], + 'notodden' => [], + 'naroy' => [], + 'nærøy' => [], + 'notteroy' => [], + 'nøtterøy' => [], + 'odda' => [], + 'oksnes' => [], + 'øksnes' => [], + 'oppdal' => [], + 'oppegard' => [], + 'oppegård' => [], + 'orkdal' => [], + 'orland' => [], + 'ørland' => [], + 'orskog' => [], + 'ørskog' => [], + 'orsta' => [], + 'ørsta' => [], + 'hedmark' => ['os' => [], + 'valer' => [], + 'våler' => [], + ], + 'hordaland' => ['os' => [], + ], + 'osen' => [], + 'osteroy' => [], + 'osterøy' => [], + 'ostre-toten' => [], + 'østre-toten' => [], + 'overhalla' => [], + 'ovre-eiker' => [], + 'øvre-eiker' => [], + 'oyer' => [], + 'øyer' => [], + 'oygarden' => [], + 'øygarden' => [], + 'oystre-slidre' => [], + 'øystre-slidre' => [], + 'porsanger' => [], + 'porsangu' => [], + 'porsáŋgu' => [], + 'porsgrunn' => [], + 'radoy' => [], + 'radøy' => [], + 'rakkestad' => [], + 'rana' => [], + 'ruovat' => [], + 'randaberg' => [], + 'rauma' => [], + 'rendalen' => [], + 'rennebu' => [], + 'rennesoy' => [], + 'rennesøy' => [], + 'rindal' => [], + 'ringebu' => [], + 'ringerike' => [], + 'ringsaker' => [], + 'rissa' => [], + 'risor' => [], + 'risør' => [], + 'roan' => [], + 'rollag' => [], + 'rygge' => [], + 'ralingen' => [], + 'rælingen' => [], + 'rodoy' => [], + 'rødøy' => [], + 'romskog' => [], + 'rømskog' => [], + 'roros' => [], + 'røros' => [], + 'rost' => [], + 'røst' => [], + 'royken' => [], + 'røyken' => [], + 'royrvik' => [], + 'røyrvik' => [], + 'rade' => [], + 'råde' => [], + 'salangen' => [], + 'siellak' => [], + 'saltdal' => [], + 'salat' => [], + 'sálát' => [], + 'sálat' => [], + 'samnanger' => [], + 'vestfold' => ['sande' => [], + ], + 'sandefjord' => [], + 'sandnes' => [], + 'sandoy' => [], + 'sandøy' => [], + 'sarpsborg' => [], + 'sauda' => [], + 'sauherad' => [], + 'sel' => [], + 'selbu' => [], + 'selje' => [], + 'seljord' => [], + 'sigdal' => [], + 'siljan' => [], + 'sirdal' => [], + 'skaun' => [], + 'skedsmo' => [], + 'ski' => [], + 'skien' => [], + 'skiptvet' => [], + 'skjervoy' => [], + 'skjervøy' => [], + 'skierva' => [], + 'skiervá' => [], + 'skjak' => [], + 'skjåk' => [], + 'skodje' => [], + 'skanland' => [], + 'skånland' => [], + 'skanit' => [], + 'skánit' => [], + 'smola' => [], + 'smøla' => [], + 'snillfjord' => [], + 'snasa' => [], + 'snåsa' => [], + 'snoasa' => [], + 'snaase' => [], + 'snåase' => [], + 'sogndal' => [], + 'sokndal' => [], + 'sola' => [], + 'solund' => [], + 'songdalen' => [], + 'sortland' => [], + 'spydeberg' => [], + 'stange' => [], + 'stavanger' => [], + 'steigen' => [], + 'steinkjer' => [], + 'stjordal' => [], + 'stjørdal' => [], + 'stokke' => [], + 'stor-elvdal' => [], + 'stord' => [], + 'stordal' => [], + 'storfjord' => [], + 'omasvuotna' => [], + 'strand' => [], + 'stranda' => [], + 'stryn' => [], + 'sula' => [], + 'suldal' => [], + 'sund' => [], + 'sunndal' => [], + 'surnadal' => [], + 'sveio' => [], + 'svelvik' => [], + 'sykkylven' => [], + 'sogne' => [], + 'søgne' => [], + 'somna' => [], + 'sømna' => [], + 'sondre-land' => [], + 'søndre-land' => [], + 'sor-aurdal' => [], + 'sør-aurdal' => [], + 'sor-fron' => [], + 'sør-fron' => [], + 'sor-odal' => [], + 'sør-odal' => [], + 'sor-varanger' => [], + 'sør-varanger' => [], + 'matta-varjjat' => [], + 'mátta-várjjat' => [], + 'sorfold' => [], + 'sørfold' => [], + 'sorreisa' => [], + 'sørreisa' => [], + 'sorum' => [], + 'sørum' => [], + 'tana' => [], + 'deatnu' => [], + 'time' => [], + 'tingvoll' => [], + 'tinn' => [], + 'tjeldsund' => [], + 'dielddanuorri' => [], + 'tjome' => [], + 'tjøme' => [], + 'tokke' => [], + 'tolga' => [], + 'torsken' => [], + 'tranoy' => [], + 'tranøy' => [], + 'tromso' => [], + 'tromsø' => [], + 'tromsa' => [], + 'romsa' => [], + 'trondheim' => [], + 'troandin' => [], + 'trysil' => [], + 'trana' => [], + 'træna' => [], + 'trogstad' => [], + 'trøgstad' => [], + 'tvedestrand' => [], + 'tydal' => [], + 'tynset' => [], + 'tysfjord' => [], + 'divtasvuodna' => [], + 'divttasvuotna' => [], + 'tysnes' => [], + 'tysvar' => [], + 'tysvær' => [], + 'tonsberg' => [], + 'tønsberg' => [], + 'ullensaker' => [], + 'ullensvang' => [], + 'ulvik' => [], + 'utsira' => [], + 'vadso' => [], + 'vadsø' => [], + 'cahcesuolo' => [], + 'čáhcesuolo' => [], + 'vaksdal' => [], + 'valle' => [], + 'vang' => [], + 'vanylven' => [], + 'vardo' => [], + 'vardø' => [], + 'varggat' => [], + 'várggát' => [], + 'vefsn' => [], + 'vaapste' => [], + 'vega' => [], + 'vegarshei' => [], + 'vegårshei' => [], + 'vennesla' => [], + 'verdal' => [], + 'verran' => [], + 'vestby' => [], + 'vestnes' => [], + 'vestre-slidre' => [], + 'vestre-toten' => [], + 'vestvagoy' => [], + 'vestvågøy' => [], + 'vevelstad' => [], + 'vik' => [], + 'vikna' => [], + 'vindafjord' => [], + 'volda' => [], + 'voss' => [], + 'varoy' => [], + 'værøy' => [], + 'vagan' => [], + 'vågan' => [], + 'voagat' => [], + 'vagsoy' => [], + 'vågsøy' => [], + 'vaga' => [], + 'vågå' => [], + 'ostfold' => ['valer' => [], + ], + 'østfold' => ['våler' => [], + ], + 'co' => [], + ], + 'np' => ['*' => [], + ], + 'nr' => ['biz' => [], + 'info' => [], + 'gov' => [], + 'edu' => [], + 'org' => [], + 'net' => [], + 'com' => [], + ], + 'nu' => ['merseine' => [], + 'mine' => [], + 'shacknet' => [], + ], + 'nz' => ['*' => [], + ], + 'om' => ['*' => [], + 'mediaphone' => ['!' => '' + ], + 'nawrastelecom' => ['!' => '' + ], + 'nawras' => ['!' => '' + ], + 'omanmobile' => ['!' => '' + ], + 'omanpost' => ['!' => '' + ], + 'omantel' => ['!' => '' + ], + 'rakpetroleum' => ['!' => '' + ], + 'siemens' => ['!' => '' + ], + 'songfest' => ['!' => '' + ], + 'statecouncil' => ['!' => '' + ], + ], + 'org' => ['ae' => [], + 'us' => [], + 'za' => [], + 'dyndns' => ['go' => [], + 'home' => [], + ], + 'blogdns' => [], + 'blogsite' => [], + 'boldlygoingnowhere' => [], + 'dnsalias' => [], + 'dnsdojo' => [], + 'doesntexist' => [], + 'dontexist' => [], + 'doomdns' => [], + 'dvrdns' => [], + 'dynalias' => [], + 'endofinternet' => [], + 'endoftheinternet' => [], + 'from-me' => [], + 'game-host' => [], + 'gotdns' => [], + 'hobby-site' => [], + 'homedns' => [], + 'homeftp' => [], + 'homelinux' => [], + 'homeunix' => [], + 'is-a-bruinsfan' => [], + 'is-a-candidate' => [], + 'is-a-celticsfan' => [], + 'is-a-chef' => [], + 'is-a-geek' => [], + 'is-a-knight' => [], + 'is-a-linux-user' => [], + 'is-a-patsfan' => [], + 'is-a-soxfan' => [], + 'is-found' => [], + 'is-lost' => [], + 'is-saved' => [], + 'is-very-bad' => [], + 'is-very-evil' => [], + 'is-very-good' => [], + 'is-very-nice' => [], + 'is-very-sweet' => [], + 'isa-geek' => [], + 'kicks-ass' => [], + 'misconfused' => [], + 'podzone' => [], + 'readmyblog' => [], + 'selfip' => [], + 'sellsyourhome' => [], + 'servebbs' => [], + 'serveftp' => [], + 'servegame' => [], + 'stuff-4-sale' => [], + 'webhop' => [], + ], + 'pa' => ['ac' => [], + 'gob' => [], + 'com' => [], + 'org' => [], + 'sld' => [], + 'edu' => [], + 'net' => [], + 'ing' => [], + 'abo' => [], + 'med' => [], + 'nom' => [], + ], + 'pe' => ['edu' => [], + 'gob' => [], + 'nom' => [], + 'mil' => [], + 'org' => [], + 'com' => [], + 'net' => [], + ], + 'pf' => ['com' => [], + 'org' => [], + 'edu' => [], + ], + 'pg' => ['*' => [], + ], + 'ph' => ['com' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + 'edu' => [], + 'ngo' => [], + 'mil' => [], + 'i' => [], + ], + 'pk' => ['com' => [], + 'net' => [], + 'edu' => [], + 'org' => [], + 'fam' => [], + 'biz' => [], + 'web' => [], + 'gov' => [], + 'gob' => [], + 'gok' => [], + 'gon' => [], + 'gop' => [], + 'gos' => [], + 'info' => [], + ], + 'pl' => ['aid' => [], + 'agro' => [], + 'atm' => [], + 'auto' => [], + 'biz' => [], + 'com' => [], + 'edu' => [], + 'gmina' => [], + 'gsm' => [], + 'info' => [], + 'mail' => [], + 'miasta' => [], + 'media' => [], + 'mil' => [], + 'net' => [], + 'nieruchomosci' => [], + 'nom' => [], + 'org' => [], + 'pc' => [], + 'powiat' => [], + 'priv' => [], + 'realestate' => [], + 'rel' => [], + 'sex' => [], + 'shop' => [], + 'sklep' => [], + 'sos' => [], + 'szkola' => [], + 'targi' => [], + 'tm' => [], + 'tourism' => [], + 'travel' => [], + 'turystyka' => [], + '6bone' => [], + 'art' => [], + 'mbone' => [], + 'gov' => ['uw' => [], + 'um' => [], + 'ug' => [], + 'upow' => [], + 'starostwo' => [], + 'so' => [], + 'sr' => [], + 'po' => [], + 'pa' => [], + ], + 'ngo' => [], + 'irc' => [], + 'usenet' => [], + 'augustow' => [], + 'babia-gora' => [], + 'bedzin' => [], + 'beskidy' => [], + 'bialowieza' => [], + 'bialystok' => [], + 'bielawa' => [], + 'bieszczady' => [], + 'boleslawiec' => [], + 'bydgoszcz' => [], + 'bytom' => [], + 'cieszyn' => [], + 'czeladz' => [], + 'czest' => [], + 'dlugoleka' => [], + 'elblag' => [], + 'elk' => [], + 'glogow' => [], + 'gniezno' => [], + 'gorlice' => [], + 'grajewo' => [], + 'ilawa' => [], + 'jaworzno' => [], + 'jelenia-gora' => [], + 'jgora' => [], + 'kalisz' => [], + 'kazimierz-dolny' => [], + 'karpacz' => [], + 'kartuzy' => [], + 'kaszuby' => [], + 'katowice' => [], + 'kepno' => [], + 'ketrzyn' => [], + 'klodzko' => [], + 'kobierzyce' => [], + 'kolobrzeg' => [], + 'konin' => [], + 'konskowola' => [], + 'kutno' => [], + 'lapy' => [], + 'lebork' => [], + 'legnica' => [], + 'lezajsk' => [], + 'limanowa' => [], + 'lomza' => [], + 'lowicz' => [], + 'lubin' => [], + 'lukow' => [], + 'malbork' => [], + 'malopolska' => [], + 'mazowsze' => [], + 'mazury' => [], + 'mielec' => [], + 'mielno' => [], + 'mragowo' => [], + 'naklo' => [], + 'nowaruda' => [], + 'nysa' => [], + 'olawa' => [], + 'olecko' => [], + 'olkusz' => [], + 'olsztyn' => [], + 'opoczno' => [], + 'opole' => [], + 'ostroda' => [], + 'ostroleka' => [], + 'ostrowiec' => [], + 'ostrowwlkp' => [], + 'pila' => [], + 'pisz' => [], + 'podhale' => [], + 'podlasie' => [], + 'polkowice' => [], + 'pomorze' => [], + 'pomorskie' => [], + 'prochowice' => [], + 'pruszkow' => [], + 'przeworsk' => [], + 'pulawy' => [], + 'radom' => [], + 'rawa-maz' => [], + 'rybnik' => [], + 'rzeszow' => [], + 'sanok' => [], + 'sejny' => [], + 'siedlce' => [], + 'slask' => [], + 'slupsk' => [], + 'sosnowiec' => [], + 'stalowa-wola' => [], + 'skoczow' => [], + 'starachowice' => [], + 'stargard' => [], + 'suwalki' => [], + 'swidnica' => [], + 'swiebodzin' => [], + 'swinoujscie' => [], + 'szczecin' => [], + 'szczytno' => [], + 'tarnobrzeg' => [], + 'tgory' => [], + 'turek' => [], + 'tychy' => [], + 'ustka' => [], + 'walbrzych' => [], + 'warmia' => [], + 'warszawa' => [], + 'waw' => [], + 'wegrow' => [], + 'wielun' => [], + 'wlocl' => [], + 'wloclawek' => [], + 'wodzislaw' => [], + 'wolomin' => [], + 'wroclaw' => [], + 'zachpomor' => [], + 'zagan' => [], + 'zarow' => [], + 'zgora' => [], + 'zgorzelec' => [], + 'gda' => [], + 'gdansk' => [], + 'gdynia' => [], + 'med' => [], + 'sopot' => [], + 'gliwice' => [], + 'krakow' => [], + 'poznan' => [], + 'wroc' => [], + 'zakopane' => [], + 'co' => [], + ], + 'pm' => [], + 'pn' => ['gov' => [], + 'co' => [], + 'org' => [], + 'edu' => [], + 'net' => [], + ], + 'pr' => ['com' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + 'edu' => [], + 'isla' => [], + 'pro' => [], + 'biz' => [], + 'info' => [], + 'name' => [], + 'est' => [], + 'prof' => [], + 'ac' => [], + ], + 'pro' => ['aca' => [], + 'bar' => [], + 'cpa' => [], + 'jur' => [], + 'law' => [], + 'med' => [], + 'eng' => [], + ], + 'ps' => ['edu' => [], + 'gov' => [], + 'sec' => [], + 'plo' => [], + 'com' => [], + 'org' => [], + 'net' => [], + ], + 'pt' => ['net' => [], + 'gov' => [], + 'org' => [], + 'edu' => [], + 'int' => [], + 'publ' => [], + 'com' => [], + 'nome' => [], + ], + 'pw' => ['co' => [], + 'ne' => [], + 'or' => [], + 'ed' => [], + 'go' => [], + 'belau' => [], + ], + 'py' => ['*' => [], + ], + 'qa' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'mil' => [], + 'name' => [], + 'net' => [], + 'org' => [], + 'sch' => [], + ], + 're' => ['com' => [], + 'asso' => [], + 'nom' => [], + ], + 'ro' => ['com' => [], + 'org' => [], + 'tm' => [], + 'nt' => [], + 'nom' => [], + 'info' => [], + 'rec' => [], + 'arts' => [], + 'firm' => [], + 'store' => [], + 'www' => [], + ], + 'rs' => ['co' => [], + 'org' => [], + 'edu' => [], + 'ac' => [], + 'gov' => [], + 'in' => [], + ], + 'ru' => ['ac' => [], + 'com' => [], + 'edu' => [], + 'int' => [], + 'net' => [], + 'org' => [], + 'pp' => [], + 'adygeya' => [], + 'altai' => [], + 'amur' => [], + 'arkhangelsk' => [], + 'astrakhan' => [], + 'bashkiria' => [], + 'belgorod' => [], + 'bir' => [], + 'bryansk' => [], + 'buryatia' => [], + 'cbg' => [], + 'chel' => [], + 'chelyabinsk' => [], + 'chita' => [], + 'chukotka' => [], + 'chuvashia' => [], + 'dagestan' => [], + 'dudinka' => [], + 'e-burg' => [], + 'grozny' => [], + 'irkutsk' => [], + 'ivanovo' => [], + 'izhevsk' => [], + 'jar' => [], + 'joshkar-ola' => [], + 'kalmykia' => [], + 'kaluga' => [], + 'kamchatka' => [], + 'karelia' => [], + 'kazan' => [], + 'kchr' => [], + 'kemerovo' => [], + 'khabarovsk' => [], + 'khakassia' => [], + 'khv' => [], + 'kirov' => [], + 'koenig' => [], + 'komi' => [], + 'kostroma' => [], + 'krasnoyarsk' => [], + 'kuban' => [], + 'kurgan' => [], + 'kursk' => [], + 'lipetsk' => [], + 'magadan' => [], + 'mari' => [], + 'mari-el' => [], + 'marine' => [], + 'mordovia' => [], + 'mosreg' => [], + 'msk' => [], + 'murmansk' => [], + 'nalchik' => [], + 'nnov' => [], + 'nov' => [], + 'novosibirsk' => [], + 'nsk' => [], + 'omsk' => [], + 'orenburg' => [], + 'oryol' => [], + 'palana' => [], + 'penza' => [], + 'perm' => [], + 'pskov' => [], + 'ptz' => [], + 'rnd' => [], + 'ryazan' => [], + 'sakhalin' => [], + 'samara' => [], + 'saratov' => [], + 'simbirsk' => [], + 'smolensk' => [], + 'spb' => [], + 'stavropol' => [], + 'stv' => [], + 'surgut' => [], + 'tambov' => [], + 'tatarstan' => [], + 'tom' => [], + 'tomsk' => [], + 'tsaritsyn' => [], + 'tsk' => [], + 'tula' => [], + 'tuva' => [], + 'tver' => [], + 'tyumen' => [], + 'udm' => [], + 'udmurtia' => [], + 'ulan-ude' => [], + 'vladikavkaz' => [], + 'vladimir' => [], + 'vladivostok' => [], + 'volgograd' => [], + 'vologda' => [], + 'voronezh' => [], + 'vrn' => [], + 'vyatka' => [], + 'yakutia' => [], + 'yamal' => [], + 'yaroslavl' => [], + 'yekaterinburg' => [], + 'yuzhno-sakhalinsk' => [], + 'amursk' => [], + 'baikal' => [], + 'cmw' => [], + 'fareast' => [], + 'jamal' => [], + 'kms' => [], + 'k-uralsk' => [], + 'kustanai' => [], + 'kuzbass' => [], + 'magnitka' => [], + 'mytis' => [], + 'nakhodka' => [], + 'nkz' => [], + 'norilsk' => [], + 'oskol' => [], + 'pyatigorsk' => [], + 'rubtsovsk' => [], + 'snz' => [], + 'syzran' => [], + 'vdonsk' => [], + 'zgrad' => [], + 'gov' => [], + 'mil' => [], + 'test' => [], + ], + 'rw' => ['gov' => [], + 'net' => [], + 'edu' => [], + 'ac' => [], + 'com' => [], + 'co' => [], + 'int' => [], + 'mil' => [], + 'gouv' => [], + ], + 'sa' => ['com' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + 'med' => [], + 'pub' => [], + 'edu' => [], + 'sch' => [], + ], + 'sb' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'net' => [], + 'org' => [], + ], + 'sc' => ['com' => [], + 'gov' => [], + 'net' => [], + 'org' => [], + 'edu' => [], + ], + 'sd' => ['com' => [], + 'net' => [], + 'org' => [], + 'edu' => [], + 'med' => [], + 'tv' => [], + 'gov' => [], + 'info' => [], + ], + 'se' => ['a' => [], + 'ac' => [], + 'b' => [], + 'bd' => [], + 'brand' => [], + 'c' => [], + 'd' => [], + 'e' => [], + 'f' => [], + 'fh' => [], + 'fhsk' => [], + 'fhv' => [], + 'g' => [], + 'h' => [], + 'i' => [], + 'k' => [], + 'komforb' => [], + 'kommunalforbund' => [], + 'komvux' => [], + 'l' => [], + 'lanbib' => [], + 'm' => [], + 'n' => [], + 'naturbruksgymn' => [], + 'o' => [], + 'org' => [], + 'p' => [], + 'parti' => [], + 'pp' => [], + 'press' => [], + 'r' => [], + 's' => [], + 'sshn' => [], + 't' => [], + 'tm' => [], + 'u' => [], + 'w' => [], + 'x' => [], + 'y' => [], + 'z' => [], + ], + 'sg' => ['com' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + 'edu' => [], + 'per' => [], + ], + 'sh' => ['com' => [], + 'net' => [], + 'gov' => [], + 'org' => [], + 'mil' => [], + ], + 'si' => [], + 'sk' => [], + 'sl' => ['com' => [], + 'net' => [], + 'edu' => [], + 'gov' => [], + 'org' => [], + ], + 'sm' => [], + 'sn' => ['art' => [], + 'com' => [], + 'edu' => [], + 'gouv' => [], + 'org' => [], + 'perso' => [], + 'univ' => [], + ], + 'so' => ['com' => [], + 'net' => [], + 'org' => [], + ], + 'sr' => [], + 'st' => ['co' => [], + 'com' => [], + 'consulado' => [], + 'edu' => [], + 'embaixada' => [], + 'gov' => [], + 'mil' => [], + 'net' => [], + 'org' => [], + 'principe' => [], + 'saotome' => [], + 'store' => [], + ], + 'su' => [], + 'sv' => ['*' => [], + ], + 'sx' => ['gov' => [], + ], + 'sy' => ['edu' => [], + 'gov' => [], + 'net' => [], + 'mil' => [], + 'com' => [], + 'org' => [], + ], + 'sz' => ['co' => [], + 'ac' => [], + 'org' => [], + ], + 'tc' => [], + 'td' => [], + 'tel' => [], + 'tf' => [], + 'tg' => [], + 'th' => ['ac' => [], + 'co' => [], + 'go' => [], + 'in' => [], + 'mi' => [], + 'net' => [], + 'or' => [], + ], + 'tj' => ['ac' => [], + 'biz' => [], + 'co' => [], + 'com' => [], + 'edu' => [], + 'go' => [], + 'gov' => [], + 'int' => [], + 'mil' => [], + 'name' => [], + 'net' => [], + 'nic' => [], + 'org' => [], + 'test' => [], + 'web' => [], + ], + 'tk' => [], + 'tl' => ['gov' => [], + ], + 'tm' => ['com' => [], + 'co' => [], + 'org' => [], + 'net' => [], + 'nom' => [], + 'gov' => [], + 'mil' => [], + 'edu' => [], + ], + 'tn' => ['com' => [], + 'ens' => [], + 'fin' => [], + 'gov' => [], + 'ind' => [], + 'intl' => [], + 'nat' => [], + 'net' => [], + 'org' => [], + 'info' => [], + 'perso' => [], + 'tourism' => [], + 'edunet' => [], + 'rnrt' => [], + 'rns' => [], + 'rnu' => [], + 'mincom' => [], + 'agrinet' => [], + 'defense' => [], + 'turen' => [], + ], + 'to' => ['com' => [], + 'gov' => [], + 'net' => [], + 'org' => [], + 'edu' => [], + 'mil' => [], + ], + 'tr' => ['*' => [], + 'nic' => ['!' => '' + ], + 'nc' => ['gov' => [], + ], + ], + 'travel' => [], + 'tt' => ['co' => [], + 'com' => [], + 'org' => [], + 'net' => [], + 'biz' => [], + 'info' => [], + 'pro' => [], + 'int' => [], + 'coop' => [], + 'jobs' => [], + 'mobi' => [], + 'travel' => [], + 'museum' => [], + 'aero' => [], + 'name' => [], + 'gov' => [], + 'edu' => [], + ], + 'tv' => ['dyndns' => [], + 'better-than' => [], + 'on-the-web' => [], + 'worse-than' => [], + ], + 'tw' => ['edu' => [], + 'gov' => [], + 'mil' => [], + 'com' => [], + 'net' => [], + 'org' => [], + 'idv' => [], + 'game' => [], + 'ebiz' => [], + 'club' => [], + '網路' => [], + '組織' => [], + '商業' => [], + ], + 'tz' => ['ac' => [], + 'co' => [], + 'go' => [], + 'mil' => [], + 'ne' => [], + 'or' => [], + 'sc' => [], + ], + 'ua' => ['com' => [], + 'edu' => [], + 'gov' => [], + 'in' => [], + 'net' => [], + 'org' => [], + 'cherkassy' => [], + 'cherkasy' => [], + 'chernigov' => [], + 'chernihiv' => [], + 'chernivtsi' => [], + 'chernovtsy' => [], + 'ck' => [], + 'cn' => [], + 'cr' => [], + 'crimea' => [], + 'cv' => [], + 'dn' => [], + 'dnepropetrovsk' => [], + 'dnipropetrovsk' => [], + 'dominic' => [], + 'donetsk' => [], + 'dp' => [], + 'if' => [], + 'ivano-frankivsk' => [], + 'kh' => [], + 'kharkiv' => [], + 'kharkov' => [], + 'kherson' => [], + 'khmelnitskiy' => [], + 'khmelnytskyi' => [], + 'kiev' => [], + 'kirovograd' => [], + 'km' => [], + 'kr' => [], + 'krym' => [], + 'ks' => [], + 'kv' => [], + 'kyiv' => [], + 'lg' => [], + 'lt' => [], + 'lugansk' => [], + 'lutsk' => [], + 'lv' => [], + 'lviv' => [], + 'mk' => [], + 'mykolaiv' => [], + 'nikolaev' => [], + 'od' => [], + 'odesa' => [], + 'odessa' => [], + 'pl' => [], + 'poltava' => [], + 'rivne' => [], + 'rovno' => [], + 'rv' => [], + 'sb' => [], + 'sebastopol' => [], + 'sevastopol' => [], + 'sm' => [], + 'sumy' => [], + 'te' => [], + 'ternopil' => [], + 'uz' => [], + 'uzhgorod' => [], + 'vinnica' => [], + 'vinnytsia' => [], + 'vn' => [], + 'volyn' => [], + 'yalta' => [], + 'zaporizhzhe' => [], + 'zaporizhzhia' => [], + 'zhitomir' => [], + 'zhytomyr' => [], + 'zp' => [], + 'zt' => [], + 'co' => [], + 'pp' => [], + ], + 'ug' => ['co' => [], + 'or' => [], + 'ac' => [], + 'sc' => [], + 'go' => [], + 'ne' => [], + 'com' => [], + 'org' => [], + ], + 'uk' => ['*' => [], + 'nhs' => ['*' => [], + ], + 'police' => ['*' => [], + ], + 'sch' => ['*' => [], + ], + 'bl' => ['!' => '' + ], + 'british-library' => ['!' => '' + ], + 'jet' => ['!' => '' + ], + 'mod' => ['!' => '' + ], + 'national-library-scotland' => ['!' => '' + ], + 'nel' => ['!' => '' + ], + 'nic' => ['!' => '' + ], + 'nls' => ['!' => '' + ], + 'parliament' => ['!' => '' + ], + ], + 'us' => ['dni' => [], + 'fed' => [], + 'isa' => [], + 'kids' => [], + 'nsn' => [], + 'ak' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'al' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ar' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'as' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'az' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ca' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'co' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ct' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'dc' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'de' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'fl' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ga' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'gu' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'hi' => ['cc' => [], + 'lib' => [], + ], + 'ia' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'id' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'il' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'in' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ks' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ky' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'la' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ma' => ['k12' => ['pvt' => [], + 'chtr' => [], + 'paroch' => [], + ], + 'cc' => [], + 'lib' => [], + ], + 'md' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'me' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'mi' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'mn' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'mo' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ms' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'mt' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'nc' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'nd' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ne' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'nh' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'nj' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'nm' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'nv' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ny' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'oh' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ok' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'or' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'pa' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'pr' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ri' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'sc' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'sd' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'tn' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'tx' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'ut' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'vi' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'vt' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'va' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'wa' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'wi' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'wv' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'wy' => ['k12' => [], + 'cc' => [], + 'lib' => [], + ], + 'is-by' => [], + 'land-4-sale' => [], + 'stuff-4-sale' => [], + ], + 'uy' => ['com' => [], + 'edu' => [], + 'gub' => [], + 'mil' => [], + 'net' => [], + 'org' => [], + ], + 'uz' => ['co' => [], + 'com' => [], + 'net' => [], + 'org' => [], + ], + 'va' => [], + 'vc' => ['com' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + 'mil' => [], + 'edu' => [], + ], + 've' => ['co' => [], + 'com' => [], + 'e12' => [], + 'edu' => [], + 'gov' => [], + 'info' => [], + 'mil' => [], + 'net' => [], + 'org' => [], + 'web' => [], + ], + 'vg' => [], + 'vi' => ['co' => [], + 'com' => [], + 'k12' => [], + 'net' => [], + 'org' => [], + ], + 'vn' => ['com' => [], + 'net' => [], + 'org' => [], + 'edu' => [], + 'gov' => [], + 'int' => [], + 'ac' => [], + 'biz' => [], + 'info' => [], + 'name' => [], + 'pro' => [], + 'health' => [], + ], + 'vu' => [], + 'wf' => [], + 'ws' => ['com' => [], + 'net' => [], + 'org' => [], + 'gov' => [], + 'edu' => [], + 'dyndns' => [], + 'mypets' => [], + ], + 'yt' => [], + 'امارات' => [], + 'বাংলা' => [], + '中国' => [], + '中國' => [], + 'الجزائر' => [], + 'مصر' => [], + 'გე' => [], + '香港' => [], + 'भारत' => [], + 'بھارت' => [], + 'భారత్' => [], + 'ભારત' => [], + 'ਭਾਰਤ' => [], + 'ভারত' => [], + 'இந்தியா' => [], + 'ایران' => [], + 'ايران' => [], + 'الاردن' => [], + '한국' => [], + 'ලංකා' => [], + 'இலங்கை' => [], + 'المغرب' => [], + 'عمان' => [], + 'فلسطين' => [], + 'срб' => [], + 'рф' => [], + 'قطر' => [], + 'السعودية' => [], + 'السعودیة' => [], + 'السعودیۃ' => [], + 'السعوديه' => [], + 'سورية' => [], + 'سوريا' => [], + '新加坡' => [], + 'சிங்கப்பூர்' => [], + 'ไทย' => [], + 'تونس' => [], + '台灣' => [], + '台湾' => [], + '臺灣' => [], + 'укр' => [], + 'اليمن' => [], + 'xxx' => [], + 'ye' => ['*' => [], + ], + 'za' => ['*' => [], + ], + 'zm' => ['*' => [], + ], + 'zw' => ['*' => [], + ], +]; return $tldTree; From 564f69f656d5cb3fd1572abef32311402752a203 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 10:12:21 -0400 Subject: [PATCH 12/31] cosmetics, compatibility --- README.md | 2 +- composer.json | 4 ++-- phpunit.xml.dist | 34 +++++++++++++---------------- tests/unit/PublicSuffixListTest.php | 6 ++--- tests/unit/RegisteredDomainTest.php | 20 ++++++++++++----- 5 files changed, 35 insertions(+), 31 deletions(-) diff --git a/README.md b/README.md index d38c5f1..84eafd2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ the list, please see [publicsuffix.org](https://publicsuffix.org/) # Installation -> composer require geekwright/regdom +> composer require xoops/regdom # Usage diff --git a/composer.json b/composer.json index bee3046..a560714 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "geekwright/regdom", + "name": "xoops/regdom", "description": "OO adaptation of Florian Sager's regdom library for querying Mozilla Public Suffix List", "version": "1.0.10", "keywords": [ @@ -22,7 +22,7 @@ "symfony/polyfill-mbstring": "^1.29.0" }, "require-dev": { - "phpunit/phpunit": "^9.6|^11.2.1" + "phpunit/phpunit": "^9.6|^11.2.2" }, "autoload": { "psr-4": { diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 203f42a..6cf45a3 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,21 +1,17 @@ - - - - ./tests/unit - - - - - - ./src - - - - - - + + + + ./src + + + + + + + + ./tests/unit + + + diff --git a/tests/unit/PublicSuffixListTest.php b/tests/unit/PublicSuffixListTest.php index b14e604..bde93aa 100644 --- a/tests/unit/PublicSuffixListTest.php +++ b/tests/unit/PublicSuffixListTest.php @@ -14,7 +14,7 @@ class PublicSuffixListTest extends TestCase * Sets up the fixture, for example, opens a network connection. * This method is called before a test is executed. */ - protected function setUp() + protected function setUp(): void { $this->object = new PublicSuffixList(); } @@ -23,13 +23,13 @@ protected function setUp() * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ - protected function tearDown() + protected function tearDown(): void { } public function testContracts() { - $this->assertInstanceOf('\Xoops\RegDom\PublicSuffixList', $this->object); + $this->assertInstanceOf(PublicSuffixList::class, $this->object); } public function testGetSet() diff --git a/tests/unit/RegisteredDomainTest.php b/tests/unit/RegisteredDomainTest.php index 92c5611..acd1057 100644 --- a/tests/unit/RegisteredDomainTest.php +++ b/tests/unit/RegisteredDomainTest.php @@ -1,7 +1,12 @@ object = new RegisteredDomain(); } @@ -35,20 +40,22 @@ protected function setUp() * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ - protected function tearDown() + protected function tearDown(): void { } public function testContracts() { $object = new RegisteredDomain(); - $this->assertInstanceOf('\Xoops\RegDom\RegisteredDomain', $object); + $this->assertInstanceOf(RegisteredDomain::class, $object); } + +// #[dataProvider('domainsProvider')] //PHP 8 /** * @dataProvider domainsProvider */ - public function testGetRegisteredDomain($url, $regdom) + public function testGetRegisteredDomain($url = '', $regdom = '') { $object = new RegisteredDomain(); $this->assertEquals($regdom, $object->getRegisteredDomain($url)); @@ -57,7 +64,7 @@ public function testGetRegisteredDomain($url, $regdom) /** * @return array */ - public function domainsProvider() + public static function domainsProvider() { $provider = [ [null, null], @@ -154,6 +161,7 @@ public function domainsProvider() return $provider; } +// #[\PHPUnit\Framework\Attributes\DataProvider('punycodeProvider')] //PHP 8 /** * @dataProvider punycodeProvider */ @@ -166,7 +174,7 @@ public function testDecodePunycode($punycode, $decoded) /** * @return array */ - public function punycodeProvider() + public static function punycodeProvider() { $provider = [ [null, null], From f491ac611ddaae0da3440dcc3c75702be6c84cdf Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 10:14:16 -0400 Subject: [PATCH 13/31] code improvements --- src/RegisteredDomain.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/RegisteredDomain.php b/src/RegisteredDomain.php index b2be520..a7da586 100644 --- a/src/RegisteredDomain.php +++ b/src/RegisteredDomain.php @@ -40,8 +40,13 @@ public function __construct(PublicSuffixList $psl = null) */ protected function normalizeHost($url) { - $host = (false!==strpos($url, '/')) ? parse_url($url, PHP_URL_HOST) : $url; - $parts = explode('.', $host); + if ($url === null) { + return ''; + } + $host = (false !== strpos($url, '/')) ? parse_url($url, PHP_URL_HOST) : $url; + + $parts = $host !== null ? explode('.', $host) : []; + $utf8Host = ''; foreach ($parts as $part) { $utf8Host = $utf8Host . (($utf8Host === '') ? '' : '.') . $this->convertPunycode($part); @@ -89,7 +94,7 @@ protected function decodePunycode($encoded) $skew = 38; $damp = 700; - if (strpos($encoded, $prefix) !== 0 || strlen(trim(str_replace($prefix, '', $encoded))) == 0) { + if ($encoded === null || strpos($encoded, $prefix) !== 0 || strlen(trim(str_replace($prefix, '', $encoded))) == 0) { return $encoded; } @@ -209,9 +214,7 @@ protected function findRegisteredDomain($remainingSigningDomainParts, &$treeNode $result = null; if (isset($treeNode['!'])) { return ''; - } - - if (is_array($treeNode) && array_key_exists($sub, $treeNode)) { + } elseif (is_array($treeNode) && array_key_exists($sub, $treeNode)) { $result = $this->findRegisteredDomain($remainingSigningDomainParts, $treeNode[$sub]); } elseif (is_array($treeNode) && array_key_exists('*', $treeNode)) { $result = $this->findRegisteredDomain($remainingSigningDomainParts, $treeNode['*']); @@ -221,9 +224,7 @@ protected function findRegisteredDomain($remainingSigningDomainParts, &$treeNode if ($result === '') { return $sub; - } - - if (is_string($result) && strlen($result) > 0) { + } elseif ($result !== null && strlen($result) > 0) { return $result . '.' . $sub; } return null; From 2c43cf9c3f5709f367a7fd8aadc45ff2c8c0e8d8 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 10:16:00 -0400 Subject: [PATCH 14/31] data updates --- data/cached_1273351598b0a7510ff4c1d2ea53e039 | 2 +- data/public_suffix_list.dat | 6463 +++++++++++------- 2 files changed, 4113 insertions(+), 2352 deletions(-) diff --git a/data/cached_1273351598b0a7510ff4c1d2ea53e039 b/data/cached_1273351598b0a7510ff4c1d2ea53e039 index c08ed32..63455f5 100644 --- a/data/cached_1273351598b0a7510ff4c1d2ea53e039 +++ b/data/cached_1273351598b0a7510ff4c1d2ea53e039 @@ -1 +1 @@ -a:1495:{s:2:"ac";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"mil";a:0:{}s:3:"org";a:0:{}s:3:"drr";a:0:{}}s:2:"ad";a:1:{s:3:"nom";a:0:{}}s:2:"ae";a:8:{s:2:"co";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}s:2:"ac";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:8:"blogspot";a:0:{}}s:4:"aero";a:86:{s:22:"accident-investigation";a:0:{}s:19:"accident-prevention";a:0:{}s:9:"aerobatic";a:0:{}s:8:"aeroclub";a:0:{}s:9:"aerodrome";a:0:{}s:6:"agents";a:0:{}s:8:"aircraft";a:0:{}s:7:"airline";a:0:{}s:7:"airport";a:0:{}s:16:"air-surveillance";a:0:{}s:10:"airtraffic";a:0:{}s:19:"air-traffic-control";a:0:{}s:9:"ambulance";a:0:{}s:9:"amusement";a:0:{}s:11:"association";a:0:{}s:6:"author";a:0:{}s:10:"ballooning";a:0:{}s:6:"broker";a:0:{}s:3:"caa";a:0:{}s:5:"cargo";a:0:{}s:8:"catering";a:0:{}s:13:"certification";a:0:{}s:12:"championship";a:0:{}s:7:"charter";a:0:{}s:13:"civilaviation";a:0:{}s:4:"club";a:0:{}s:10:"conference";a:0:{}s:10:"consultant";a:0:{}s:10:"consulting";a:0:{}s:7:"control";a:0:{}s:7:"council";a:0:{}s:4:"crew";a:0:{}s:6:"design";a:0:{}s:4:"dgca";a:0:{}s:8:"educator";a:0:{}s:9:"emergency";a:0:{}s:6:"engine";a:0:{}s:8:"engineer";a:0:{}s:13:"entertainment";a:0:{}s:9:"equipment";a:0:{}s:8:"exchange";a:0:{}s:7:"express";a:0:{}s:10:"federation";a:0:{}s:6:"flight";a:0:{}s:4:"fuel";a:0:{}s:7:"gliding";a:0:{}s:10:"government";a:0:{}s:14:"groundhandling";a:0:{}s:5:"group";a:0:{}s:11:"hanggliding";a:0:{}s:9:"homebuilt";a:0:{}s:9:"insurance";a:0:{}s:7:"journal";a:0:{}s:10:"journalist";a:0:{}s:7:"leasing";a:0:{}s:9:"logistics";a:0:{}s:8:"magazine";a:0:{}s:11:"maintenance";a:0:{}s:5:"media";a:0:{}s:10:"microlight";a:0:{}s:9:"modelling";a:0:{}s:10:"navigation";a:0:{}s:11:"parachuting";a:0:{}s:11:"paragliding";a:0:{}s:21:"passenger-association";a:0:{}s:5:"pilot";a:0:{}s:5:"press";a:0:{}s:10:"production";a:0:{}s:10:"recreation";a:0:{}s:7:"repbody";a:0:{}s:3:"res";a:0:{}s:8:"research";a:0:{}s:10:"rotorcraft";a:0:{}s:6:"safety";a:0:{}s:9:"scientist";a:0:{}s:8:"services";a:0:{}s:4:"show";a:0:{}s:9:"skydiving";a:0:{}s:8:"software";a:0:{}s:7:"student";a:0:{}s:6:"trader";a:0:{}s:7:"trading";a:0:{}s:7:"trainer";a:0:{}s:5:"union";a:0:{}s:12:"workinggroup";a:0:{}s:5:"works";a:0:{}}s:2:"af";a:5:{s:3:"gov";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"edu";a:0:{}}s:2:"ag";a:5:{s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:2:"co";a:0:{}s:3:"nom";a:0:{}}s:2:"ai";a:5:{s:3:"off";a:0:{}s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"uwu";a:0:{}}s:2:"al";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:8:"blogspot";a:0:{}}s:2:"am";a:9:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:7:"commune";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:5:"radio";a:0:{}s:8:"blogspot";a:0:{}s:4:"neko";a:0:{}s:4:"nyaa";a:0:{}}s:2:"ao";a:6:{s:2:"ed";a:0:{}s:2:"gv";a:0:{}s:2:"og";a:0:{}s:2:"co";a:0:{}s:2:"pb";a:0:{}s:2:"it";a:0:{}}s:2:"aq";a:0:{}s:2:"ar";a:14:{s:3:"bet";a:0:{}s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:4:"coop";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"gov";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:6:"musica";a:0:{}s:6:"mutual";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:6:"senasa";a:0:{}s:3:"tur";a:0:{}}s:4:"arpa";a:6:{s:4:"e164";a:0:{}s:7:"in-addr";a:0:{}s:3:"ip6";a:0:{}s:4:"iris";a:0:{}s:3:"uri";a:0:{}s:3:"urn";a:0:{}}s:2:"as";a:1:{s:3:"gov";a:0:{}}s:4:"asia";a:1:{s:7:"cloudns";a:0:{}}s:2:"at";a:17:{s:2:"ac";a:1:{s:3:"sth";a:0:{}}s:2:"co";a:1:{s:8:"blogspot";a:0:{}}s:2:"gv";a:0:{}s:2:"or";a:0:{}s:9:"funkfeuer";a:1:{s:4:"wien";a:0:{}}s:9:"futurecms";a:3:{s:1:"*";a:0:{}s:2:"ex";a:1:{s:1:"*";a:0:{}}s:2:"in";a:1:{s:1:"*";a:0:{}}}s:13:"futurehosting";a:0:{}s:13:"futuremailing";a:0:{}s:8:"ortsinfo";a:2:{s:2:"ex";a:1:{s:1:"*";a:0:{}}s:6:"kunden";a:1:{s:1:"*";a:0:{}}}s:3:"biz";a:0:{}s:4:"info";a:0:{}s:4:"priv";a:0:{}s:12:"myspreadshop";a:0:{}s:4:"12hp";a:0:{}s:3:"2ix";a:0:{}s:5:"4lima";a:0:{}s:9:"lima-city";a:0:{}}s:2:"au";a:18:{s:3:"com";a:3:{s:8:"blogspot";a:0:{}s:9:"cloudlets";a:1:{s:3:"mel";a:0:{}}s:12:"myspreadshop";a:0:{}}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:9:{s:3:"act";a:0:{}s:8:"catholic";a:0:{}s:3:"nsw";a:1:{s:7:"schools";a:0:{}}s:2:"nt";a:0:{}s:3:"qld";a:0:{}s:2:"sa";a:0:{}s:3:"tas";a:0:{}s:3:"vic";a:0:{}s:2:"wa";a:0:{}}s:3:"gov";a:5:{s:3:"qld";a:0:{}s:2:"sa";a:0:{}s:3:"tas";a:0:{}s:3:"vic";a:0:{}s:2:"wa";a:0:{}}s:3:"asn";a:0:{}s:2:"id";a:0:{}s:4:"info";a:0:{}s:4:"conf";a:0:{}s:2:"oz";a:0:{}s:3:"act";a:0:{}s:3:"nsw";a:0:{}s:2:"nt";a:0:{}s:3:"qld";a:0:{}s:2:"sa";a:0:{}s:3:"tas";a:0:{}s:3:"vic";a:0:{}s:2:"wa";a:0:{}}s:2:"aw";a:1:{s:3:"com";a:0:{}}s:2:"ax";a:8:{s:2:"be";a:0:{}s:3:"cat";a:0:{}s:2:"es";a:0:{}s:2:"eu";a:0:{}s:2:"gg";a:0:{}s:2:"mc";a:0:{}s:2:"us";a:0:{}s:2:"xy";a:0:{}}s:2:"az";a:12:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"int";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:4:"info";a:0:{}s:2:"pp";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"pro";a:0:{}s:3:"biz";a:0:{}}s:2:"ba";a:8:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"rs";a:0:{}s:8:"blogspot";a:0:{}}s:2:"bb";a:10:{s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:5:"store";a:0:{}s:2:"tv";a:0:{}}s:2:"bd";a:1:{s:1:"*";a:0:{}}s:2:"be";a:7:{s:2:"ac";a:0:{}s:10:"webhosting";a:0:{}s:8:"blogspot";a:0:{}s:18:"interhostsolutions";a:1:{s:5:"cloud";a:0:{}}s:8:"kuleuven";a:1:{s:7:"ezproxy";a:0:{}}s:12:"myspreadshop";a:0:{}s:8:"transurl";a:1:{s:1:"*";a:0:{}}}s:2:"bf";a:1:{s:3:"gov";a:0:{}}s:2:"bg";a:38:{s:1:"a";a:0:{}s:1:"b";a:0:{}s:1:"c";a:0:{}s:1:"d";a:0:{}s:1:"e";a:0:{}s:1:"f";a:0:{}s:1:"g";a:0:{}s:1:"h";a:0:{}s:1:"i";a:0:{}s:1:"j";a:0:{}s:1:"k";a:0:{}s:1:"l";a:0:{}s:1:"m";a:0:{}s:1:"n";a:0:{}s:1:"o";a:0:{}s:1:"p";a:0:{}s:1:"q";a:0:{}s:1:"r";a:0:{}s:1:"s";a:0:{}s:1:"t";a:0:{}s:1:"u";a:0:{}s:1:"v";a:0:{}s:1:"w";a:0:{}s:1:"x";a:0:{}s:1:"y";a:0:{}s:1:"z";a:0:{}i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}s:8:"blogspot";a:0:{}s:5:"barsy";a:0:{}}s:2:"bh";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}}s:2:"bi";a:5:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:2:"or";a:0:{}s:3:"org";a:0:{}}s:3:"biz";a:14:{s:7:"cloudns";a:0:{}s:4:"jozi";a:0:{}s:6:"dyndns";a:0:{}s:10:"for-better";a:0:{}s:8:"for-more";a:0:{}s:8:"for-some";a:0:{}s:7:"for-the";a:0:{}s:6:"selfip";a:0:{}s:6:"webhop";a:0:{}s:3:"orx";a:0:{}s:6:"mmafan";a:0:{}s:5:"myftp";a:0:{}s:5:"no-ip";a:0:{}s:7:"dscloud";a:0:{}}s:2:"bj";a:4:{s:4:"asso";a:0:{}s:7:"barreau";a:0:{}s:4:"gouv";a:0:{}s:8:"blogspot";a:0:{}}s:2:"bm";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"bn";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"co";a:0:{}}s:2:"bo";a:41:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"int";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"mil";a:0:{}s:2:"tv";a:0:{}s:3:"web";a:0:{}s:8:"academia";a:0:{}s:4:"agro";a:0:{}s:4:"arte";a:0:{}s:4:"blog";a:0:{}s:7:"bolivia";a:0:{}s:7:"ciencia";a:0:{}s:11:"cooperativa";a:0:{}s:10:"democracia";a:0:{}s:7:"deporte";a:0:{}s:8:"ecologia";a:0:{}s:8:"economia";a:0:{}s:7:"empresa";a:0:{}s:8:"indigena";a:0:{}s:9:"industria";a:0:{}s:4:"info";a:0:{}s:8:"medicina";a:0:{}s:10:"movimiento";a:0:{}s:6:"musica";a:0:{}s:7:"natural";a:0:{}s:6:"nombre";a:0:{}s:8:"noticias";a:0:{}s:6:"patria";a:0:{}s:8:"politica";a:0:{}s:11:"profesional";a:0:{}s:13:"plurinacional";a:0:{}s:6:"pueblo";a:0:{}s:7:"revista";a:0:{}s:5:"salud";a:0:{}s:10:"tecnologia";a:0:{}s:5:"tksat";a:0:{}s:10:"transporte";a:0:{}s:4:"wiki";a:0:{}}s:2:"br";a:141:{s:6:"9guacu";a:0:{}s:3:"abc";a:0:{}s:3:"adm";a:0:{}s:3:"adv";a:0:{}s:3:"agr";a:0:{}s:3:"aju";a:0:{}s:2:"am";a:0:{}s:5:"anani";a:0:{}s:9:"aparecida";a:0:{}s:3:"app";a:0:{}s:3:"arq";a:0:{}s:3:"art";a:0:{}s:3:"ato";a:0:{}s:1:"b";a:0:{}s:7:"barueri";a:0:{}s:5:"belem";a:0:{}s:3:"bhz";a:0:{}s:3:"bib";a:0:{}s:3:"bio";a:0:{}s:4:"blog";a:0:{}s:3:"bmd";a:0:{}s:8:"boavista";a:0:{}s:3:"bsb";a:0:{}s:13:"campinagrande";a:0:{}s:8:"campinas";a:0:{}s:6:"caxias";a:0:{}s:3:"cim";a:0:{}s:3:"cng";a:0:{}s:3:"cnt";a:0:{}s:3:"com";a:2:{s:8:"blogspot";a:0:{}s:12:"virtualcloud";a:1:{s:5:"scale";a:1:{s:5:"users";a:0:{}}}}s:8:"contagem";a:0:{}s:4:"coop";a:0:{}s:3:"coz";a:0:{}s:3:"cri";a:0:{}s:6:"cuiaba";a:0:{}s:8:"curitiba";a:0:{}s:3:"def";a:0:{}s:3:"des";a:0:{}s:3:"det";a:0:{}s:3:"dev";a:0:{}s:3:"ecn";a:0:{}s:3:"eco";a:0:{}s:3:"edu";a:0:{}s:3:"emp";a:0:{}s:3:"enf";a:0:{}s:3:"eng";a:0:{}s:3:"esp";a:0:{}s:3:"etc";a:0:{}s:3:"eti";a:0:{}s:3:"far";a:0:{}s:5:"feira";a:0:{}s:4:"flog";a:0:{}s:7:"floripa";a:0:{}s:2:"fm";a:0:{}s:3:"fnd";a:0:{}s:6:"fortal";a:0:{}s:3:"fot";a:0:{}s:3:"foz";a:0:{}s:3:"fst";a:0:{}s:3:"g12";a:0:{}s:3:"geo";a:0:{}s:3:"ggf";a:0:{}s:7:"goiania";a:0:{}s:3:"gov";a:27:{s:2:"ac";a:0:{}s:2:"al";a:0:{}s:2:"am";a:0:{}s:2:"ap";a:0:{}s:2:"ba";a:0:{}s:2:"ce";a:0:{}s:2:"df";a:0:{}s:2:"es";a:0:{}s:2:"go";a:0:{}s:2:"ma";a:0:{}s:2:"mg";a:0:{}s:2:"ms";a:0:{}s:2:"mt";a:0:{}s:2:"pa";a:0:{}s:2:"pb";a:0:{}s:2:"pe";a:0:{}s:2:"pi";a:0:{}s:2:"pr";a:0:{}s:2:"rj";a:0:{}s:2:"rn";a:0:{}s:2:"ro";a:0:{}s:2:"rr";a:0:{}s:2:"rs";a:0:{}s:2:"sc";a:0:{}s:2:"se";a:0:{}s:2:"sp";a:0:{}s:2:"to";a:0:{}}s:3:"gru";a:0:{}s:3:"imb";a:0:{}s:3:"ind";a:0:{}s:3:"inf";a:0:{}s:3:"jab";a:0:{}s:5:"jampa";a:0:{}s:3:"jdf";a:0:{}s:9:"joinville";a:0:{}s:3:"jor";a:0:{}s:3:"jus";a:0:{}s:3:"leg";a:27:{s:2:"ac";a:0:{}s:2:"al";a:0:{}s:2:"am";a:0:{}s:2:"ap";a:0:{}s:2:"ba";a:0:{}s:2:"ce";a:0:{}s:2:"df";a:0:{}s:2:"es";a:0:{}s:2:"go";a:0:{}s:2:"ma";a:0:{}s:2:"mg";a:0:{}s:2:"ms";a:0:{}s:2:"mt";a:0:{}s:2:"pa";a:0:{}s:2:"pb";a:0:{}s:2:"pe";a:0:{}s:2:"pi";a:0:{}s:2:"pr";a:0:{}s:2:"rj";a:0:{}s:2:"rn";a:0:{}s:2:"ro";a:0:{}s:2:"rr";a:0:{}s:2:"rs";a:0:{}s:2:"sc";a:0:{}s:2:"se";a:0:{}s:2:"sp";a:0:{}s:2:"to";a:0:{}}s:3:"lel";a:0:{}s:3:"log";a:0:{}s:8:"londrina";a:0:{}s:6:"macapa";a:0:{}s:6:"maceio";a:0:{}s:6:"manaus";a:0:{}s:7:"maringa";a:0:{}s:3:"mat";a:0:{}s:3:"med";a:0:{}s:3:"mil";a:0:{}s:6:"morena";a:0:{}s:2:"mp";a:0:{}s:3:"mus";a:0:{}s:5:"natal";a:0:{}s:3:"net";a:0:{}s:7:"niteroi";a:0:{}s:3:"nom";a:1:{s:1:"*";a:0:{}}s:3:"not";a:0:{}s:3:"ntr";a:0:{}s:3:"odo";a:0:{}s:3:"ong";a:0:{}s:3:"org";a:0:{}s:6:"osasco";a:0:{}s:6:"palmas";a:0:{}s:3:"poa";a:0:{}s:3:"ppg";a:0:{}s:3:"pro";a:0:{}s:3:"psc";a:0:{}s:3:"psi";a:0:{}s:3:"pvh";a:0:{}s:3:"qsl";a:0:{}s:5:"radio";a:0:{}s:3:"rec";a:0:{}s:6:"recife";a:0:{}s:3:"rep";a:0:{}s:8:"ribeirao";a:0:{}s:3:"rio";a:0:{}s:9:"riobranco";a:0:{}s:8:"riopreto";a:0:{}s:8:"salvador";a:0:{}s:5:"sampa";a:0:{}s:10:"santamaria";a:0:{}s:10:"santoandre";a:0:{}s:11:"saobernardo";a:0:{}s:8:"saogonca";a:0:{}s:3:"seg";a:0:{}s:3:"sjc";a:0:{}s:3:"slg";a:0:{}s:3:"slz";a:0:{}s:8:"sorocaba";a:0:{}s:3:"srv";a:0:{}s:4:"taxi";a:0:{}s:2:"tc";a:0:{}s:3:"tec";a:0:{}s:3:"teo";a:0:{}s:3:"the";a:0:{}s:3:"tmp";a:0:{}s:3:"trd";a:0:{}s:3:"tur";a:0:{}s:2:"tv";a:0:{}s:3:"udi";a:0:{}s:3:"vet";a:0:{}s:3:"vix";a:0:{}s:4:"vlog";a:0:{}s:4:"wiki";a:0:{}s:3:"zlg";a:0:{}}s:2:"bs";a:6:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"we";a:0:{}}s:2:"bt";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"bv";a:0:{}s:2:"bw";a:2:{s:2:"co";a:0:{}s:3:"org";a:0:{}}s:2:"by";a:6:{s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:2:"of";a:0:{}s:7:"mycloud";a:0:{}s:9:"mediatech";a:0:{}}s:2:"bz";a:7:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"za";a:0:{}s:3:"gsj";a:0:{}}s:2:"ca";a:21:{s:2:"ab";a:0:{}s:2:"bc";a:0:{}s:2:"mb";a:0:{}s:2:"nb";a:0:{}s:2:"nf";a:0:{}s:2:"nl";a:0:{}s:2:"ns";a:0:{}s:2:"nt";a:0:{}s:2:"nu";a:0:{}s:2:"on";a:0:{}s:2:"pe";a:0:{}s:2:"qc";a:0:{}s:2:"sk";a:0:{}s:2:"yk";a:0:{}s:2:"gc";a:0:{}s:5:"barsy";a:0:{}s:5:"awdev";a:1:{s:1:"*";a:0:{}}s:2:"co";a:0:{}s:8:"blogspot";a:0:{}s:5:"no-ip";a:0:{}s:12:"myspreadshop";a:0:{}}s:3:"cat";a:0:{}s:2:"cc";a:9:{s:7:"cloudns";a:0:{}s:9:"ftpaccess";a:0:{}s:11:"game-server";a:0:{}s:8:"myphotos";a:0:{}s:9:"scrapping";a:0:{}s:6:"twmail";a:0:{}s:3:"csx";a:0:{}s:13:"fantasyleague";a:0:{}s:5:"spawn";a:1:{s:9:"instances";a:0:{}}}s:2:"cd";a:1:{s:3:"gov";a:0:{}}s:2:"cf";a:1:{s:8:"blogspot";a:0:{}}s:2:"cg";a:0:{}s:2:"ch";a:12:{s:7:"square7";a:0:{}s:8:"blogspot";a:0:{}s:4:"flow";a:2:{s:2:"ae";a:1:{s:4:"alp1";a:0:{}}s:9:"appengine";a:0:{}}s:14:"linkyard-cloud";a:0:{}s:7:"dnsking";a:0:{}s:6:"gotdns";a:0:{}s:12:"myspreadshop";a:0:{}s:7:"firenet";a:2:{s:1:"*";a:0:{}s:3:"svc";a:1:{s:1:"*";a:0:{}}}s:4:"12hp";a:0:{}s:3:"2ix";a:0:{}s:5:"4lima";a:0:{}s:9:"lima-city";a:0:{}}s:2:"ci";a:17:{s:3:"org";a:0:{}s:2:"or";a:0:{}s:3:"com";a:0:{}s:2:"co";a:0:{}s:3:"edu";a:0:{}s:2:"ed";a:0:{}s:2:"ac";a:0:{}s:3:"net";a:0:{}s:2:"go";a:0:{}s:4:"asso";a:0:{}s:9:"aéroport";a:0:{}s:3:"int";a:0:{}s:6:"presse";a:0:{}s:2:"md";a:0:{}s:4:"gouv";a:0:{}s:3:"fin";a:0:{}s:2:"nl";a:0:{}}s:2:"ck";a:2:{s:1:"*";a:0:{}s:3:"www";a:1:{s:1:"!";s:0:"";}}s:2:"cl";a:5:{s:2:"co";a:0:{}s:3:"gob";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:8:"blogspot";a:0:{}}s:2:"cm";a:4:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}}s:2:"cn";a:46:{s:2:"ac";a:0:{}s:3:"com";a:1:{s:9:"amazonaws";a:4:{s:7:"compute";a:1:{s:1:"*";a:0:{}}s:2:"eb";a:2:{s:10:"cn-north-1";a:0:{}s:14:"cn-northwest-1";a:0:{}}s:3:"elb";a:1:{s:1:"*";a:0:{}}s:10:"cn-north-1";a:1:{s:2:"s3";a:0:{}}}}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"mil";a:0:{}s:6:"公司";a:0:{}s:6:"网络";a:0:{}s:6:"網絡";a:0:{}s:2:"ah";a:0:{}s:2:"bj";a:0:{}s:2:"cq";a:0:{}s:2:"fj";a:0:{}s:2:"gd";a:0:{}s:2:"gs";a:0:{}s:2:"gz";a:0:{}s:2:"gx";a:0:{}s:2:"ha";a:0:{}s:2:"hb";a:0:{}s:2:"he";a:0:{}s:2:"hi";a:0:{}s:2:"hl";a:0:{}s:2:"hn";a:0:{}s:2:"jl";a:0:{}s:2:"js";a:0:{}s:2:"jx";a:0:{}s:2:"ln";a:0:{}s:2:"nm";a:0:{}s:2:"nx";a:0:{}s:2:"qh";a:0:{}s:2:"sc";a:0:{}s:2:"sd";a:0:{}s:2:"sh";a:0:{}s:2:"sn";a:0:{}s:2:"sx";a:0:{}s:2:"tj";a:0:{}s:2:"xj";a:0:{}s:2:"xz";a:0:{}s:2:"yn";a:0:{}s:2:"zj";a:0:{}s:2:"hk";a:0:{}s:2:"mo";a:0:{}s:2:"tw";a:0:{}s:12:"instantcloud";a:0:{}s:12:"quickconnect";a:1:{s:6:"direct";a:0:{}}}s:2:"co";a:22:{s:4:"arts";a:0:{}s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:4:"firm";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"nom";a:0:{}s:3:"org";a:0:{}s:3:"rec";a:0:{}s:3:"web";a:0:{}s:5:"carrd";a:0:{}s:3:"crd";a:0:{}s:4:"otap";a:1:{s:1:"*";a:0:{}}s:9:"leadpages";a:0:{}s:6:"lpages";a:0:{}s:4:"mypi";a:0:{}s:3:"n4t";a:0:{}s:4:"repl";a:1:{s:2:"id";a:0:{}}s:8:"supabase";a:0:{}}s:3:"com";a:391:{s:13:"devcdnaccesso";a:1:{s:1:"*";a:0:{}}s:13:"adobeaemcloud";a:1:{s:3:"dev";a:1:{s:1:"*";a:0:{}}}s:10:"airkitapps";a:0:{}s:13:"airkitapps-au";a:0:{}s:10:"aivencloud";a:0:{}s:9:"kasserver";a:0:{}s:9:"amazonaws";a:42:{s:7:"compute";a:1:{s:1:"*";a:0:{}}s:9:"compute-1";a:1:{s:1:"*";a:0:{}}s:9:"us-east-1";a:1:{s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}}s:3:"elb";a:1:{s:1:"*";a:0:{}}s:2:"s3";a:0:{}s:17:"s3-ap-northeast-1";a:0:{}s:17:"s3-ap-northeast-2";a:0:{}s:13:"s3-ap-south-1";a:0:{}s:17:"s3-ap-southeast-1";a:0:{}s:17:"s3-ap-southeast-2";a:0:{}s:15:"s3-ca-central-1";a:0:{}s:15:"s3-eu-central-1";a:0:{}s:12:"s3-eu-west-1";a:0:{}s:12:"s3-eu-west-2";a:0:{}s:12:"s3-eu-west-3";a:0:{}s:13:"s3-external-1";a:0:{}s:21:"s3-fips-us-gov-west-1";a:0:{}s:12:"s3-sa-east-1";a:0:{}s:16:"s3-us-gov-west-1";a:0:{}s:12:"s3-us-east-2";a:0:{}s:12:"s3-us-west-1";a:0:{}s:12:"s3-us-west-2";a:0:{}s:14:"ap-northeast-2";a:3:{s:2:"s3";a:0:{}s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}s:10:"s3-website";a:0:{}}s:10:"ap-south-1";a:3:{s:2:"s3";a:0:{}s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}s:10:"s3-website";a:0:{}}s:12:"ca-central-1";a:3:{s:2:"s3";a:0:{}s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}s:10:"s3-website";a:0:{}}s:12:"eu-central-1";a:3:{s:2:"s3";a:0:{}s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}s:10:"s3-website";a:0:{}}s:9:"eu-west-2";a:3:{s:2:"s3";a:0:{}s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}s:10:"s3-website";a:0:{}}s:9:"eu-west-3";a:3:{s:2:"s3";a:0:{}s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}s:10:"s3-website";a:0:{}}s:9:"us-east-2";a:3:{s:2:"s3";a:0:{}s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}s:10:"s3-website";a:0:{}}s:14:"ap-northeast-1";a:1:{s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}}s:14:"ap-southeast-1";a:1:{s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}}s:14:"ap-southeast-2";a:1:{s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}}s:9:"eu-west-1";a:1:{s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}}s:9:"sa-east-1";a:1:{s:9:"dualstack";a:1:{s:2:"s3";a:0:{}}}s:20:"s3-website-us-east-1";a:0:{}s:20:"s3-website-us-west-1";a:0:{}s:20:"s3-website-us-west-2";a:0:{}s:25:"s3-website-ap-northeast-1";a:0:{}s:25:"s3-website-ap-southeast-1";a:0:{}s:25:"s3-website-ap-southeast-2";a:0:{}s:20:"s3-website-eu-west-1";a:0:{}s:20:"s3-website-sa-east-1";a:0:{}}s:16:"elasticbeanstalk";a:17:{s:14:"ap-northeast-1";a:0:{}s:14:"ap-northeast-2";a:0:{}s:14:"ap-northeast-3";a:0:{}s:10:"ap-south-1";a:0:{}s:14:"ap-southeast-1";a:0:{}s:14:"ap-southeast-2";a:0:{}s:12:"ca-central-1";a:0:{}s:12:"eu-central-1";a:0:{}s:9:"eu-west-1";a:0:{}s:9:"eu-west-2";a:0:{}s:9:"eu-west-3";a:0:{}s:9:"sa-east-1";a:0:{}s:9:"us-east-1";a:0:{}s:9:"us-east-2";a:0:{}s:13:"us-gov-west-1";a:0:{}s:9:"us-west-1";a:0:{}s:9:"us-west-2";a:0:{}}s:20:"awsglobalaccelerator";a:0:{}s:7:"siiites";a:0:{}s:14:"appspacehosted";a:0:{}s:19:"appspaceusercontent";a:0:{}s:10:"on-aptible";a:0:{}s:9:"myasustor";a:0:{}s:14:"balena-devices";a:0:{}s:10:"betainabox";a:0:{}s:6:"boutir";a:0:{}s:7:"bplaced";a:0:{}s:5:"cafjs";a:0:{}s:2:"br";a:0:{}s:2:"cn";a:0:{}s:2:"de";a:0:{}s:2:"eu";a:0:{}s:3:"jpn";a:0:{}s:3:"mex";a:0:{}s:2:"ru";a:0:{}s:2:"sa";a:0:{}s:2:"uk";a:0:{}s:2:"us";a:0:{}s:2:"za";a:0:{}s:2:"ar";a:0:{}s:2:"hu";a:0:{}s:2:"kr";a:0:{}s:2:"no";a:0:{}s:2:"qc";a:0:{}s:2:"uy";a:0:{}s:6:"africa";a:0:{}s:2:"gr";a:0:{}s:2:"co";a:0:{}s:9:"jdevcloud";a:0:{}s:10:"wpdevcloud";a:0:{}s:15:"cloudcontrolled";a:0:{}s:15:"cloudcontrolapp";a:0:{}s:13:"trycloudflare";a:0:{}s:12:"customer-oci";a:4:{s:1:"*";a:0:{}s:3:"oci";a:1:{s:1:"*";a:0:{}}s:3:"ocp";a:1:{s:1:"*";a:0:{}}s:3:"ocs";a:1:{s:1:"*";a:0:{}}}s:10:"dattolocal";a:0:{}s:10:"dattorelay";a:0:{}s:8:"dattoweb";a:0:{}s:7:"mydatto";a:0:{}s:13:"builtwithdark";a:0:{}s:10:"datadetect";a:2:{s:4:"demo";a:0:{}s:8:"instance";a:0:{}}s:5:"ddns5";a:0:{}s:11:"discordsays";a:0:{}s:10:"discordsez";a:0:{}s:8:"drayddns";a:0:{}s:12:"dreamhosters";a:0:{}s:7:"mydrobo";a:0:{}s:14:"dyndns-at-home";a:0:{}s:14:"dyndns-at-work";a:0:{}s:11:"dyndns-blog";a:0:{}s:11:"dyndns-free";a:0:{}s:11:"dyndns-home";a:0:{}s:9:"dyndns-ip";a:0:{}s:11:"dyndns-mail";a:0:{}s:13:"dyndns-office";a:0:{}s:11:"dyndns-pics";a:0:{}s:13:"dyndns-remote";a:0:{}s:13:"dyndns-server";a:0:{}s:10:"dyndns-web";a:0:{}s:11:"dyndns-wiki";a:0:{}s:11:"dyndns-work";a:0:{}s:7:"blogdns";a:0:{}s:7:"cechire";a:0:{}s:8:"dnsalias";a:0:{}s:7:"dnsdojo";a:0:{}s:11:"doesntexist";a:0:{}s:9:"dontexist";a:0:{}s:7:"doomdns";a:0:{}s:10:"dyn-o-saur";a:0:{}s:8:"dynalias";a:0:{}s:15:"est-a-la-maison";a:0:{}s:15:"est-a-la-masion";a:0:{}s:13:"est-le-patron";a:0:{}s:16:"est-mon-blogueur";a:0:{}s:7:"from-ak";a:0:{}s:7:"from-al";a:0:{}s:7:"from-ar";a:0:{}s:7:"from-ca";a:0:{}s:7:"from-ct";a:0:{}s:7:"from-dc";a:0:{}s:7:"from-de";a:0:{}s:7:"from-fl";a:0:{}s:7:"from-ga";a:0:{}s:7:"from-hi";a:0:{}s:7:"from-ia";a:0:{}s:7:"from-id";a:0:{}s:7:"from-il";a:0:{}s:7:"from-in";a:0:{}s:7:"from-ks";a:0:{}s:7:"from-ky";a:0:{}s:7:"from-ma";a:0:{}s:7:"from-md";a:0:{}s:7:"from-mi";a:0:{}s:7:"from-mn";a:0:{}s:7:"from-mo";a:0:{}s:7:"from-ms";a:0:{}s:7:"from-mt";a:0:{}s:7:"from-nc";a:0:{}s:7:"from-nd";a:0:{}s:7:"from-ne";a:0:{}s:7:"from-nh";a:0:{}s:7:"from-nj";a:0:{}s:7:"from-nm";a:0:{}s:7:"from-nv";a:0:{}s:7:"from-oh";a:0:{}s:7:"from-ok";a:0:{}s:7:"from-or";a:0:{}s:7:"from-pa";a:0:{}s:7:"from-pr";a:0:{}s:7:"from-ri";a:0:{}s:7:"from-sc";a:0:{}s:7:"from-sd";a:0:{}s:7:"from-tn";a:0:{}s:7:"from-tx";a:0:{}s:7:"from-ut";a:0:{}s:7:"from-va";a:0:{}s:7:"from-vt";a:0:{}s:7:"from-wa";a:0:{}s:7:"from-wi";a:0:{}s:7:"from-wv";a:0:{}s:7:"from-wy";a:0:{}s:7:"getmyip";a:0:{}s:6:"gotdns";a:0:{}s:10:"hobby-site";a:0:{}s:9:"homelinux";a:0:{}s:8:"homeunix";a:0:{}s:9:"iamallama";a:0:{}s:14:"is-a-anarchist";a:0:{}s:12:"is-a-blogger";a:0:{}s:15:"is-a-bookkeeper";a:0:{}s:14:"is-a-bulls-fan";a:0:{}s:12:"is-a-caterer";a:0:{}s:9:"is-a-chef";a:0:{}s:17:"is-a-conservative";a:0:{}s:8:"is-a-cpa";a:0:{}s:18:"is-a-cubicle-slave";a:0:{}s:13:"is-a-democrat";a:0:{}s:13:"is-a-designer";a:0:{}s:11:"is-a-doctor";a:0:{}s:21:"is-a-financialadvisor";a:0:{}s:9:"is-a-geek";a:0:{}s:10:"is-a-green";a:0:{}s:9:"is-a-guru";a:0:{}s:16:"is-a-hard-worker";a:0:{}s:11:"is-a-hunter";a:0:{}s:15:"is-a-landscaper";a:0:{}s:11:"is-a-lawyer";a:0:{}s:12:"is-a-liberal";a:0:{}s:16:"is-a-libertarian";a:0:{}s:10:"is-a-llama";a:0:{}s:13:"is-a-musician";a:0:{}s:14:"is-a-nascarfan";a:0:{}s:10:"is-a-nurse";a:0:{}s:12:"is-a-painter";a:0:{}s:20:"is-a-personaltrainer";a:0:{}s:17:"is-a-photographer";a:0:{}s:11:"is-a-player";a:0:{}s:15:"is-a-republican";a:0:{}s:13:"is-a-rockstar";a:0:{}s:14:"is-a-socialist";a:0:{}s:12:"is-a-student";a:0:{}s:12:"is-a-teacher";a:0:{}s:11:"is-a-techie";a:0:{}s:14:"is-a-therapist";a:0:{}s:16:"is-an-accountant";a:0:{}s:11:"is-an-actor";a:0:{}s:13:"is-an-actress";a:0:{}s:15:"is-an-anarchist";a:0:{}s:12:"is-an-artist";a:0:{}s:14:"is-an-engineer";a:0:{}s:17:"is-an-entertainer";a:0:{}s:12:"is-certified";a:0:{}s:7:"is-gone";a:0:{}s:13:"is-into-anime";a:0:{}s:12:"is-into-cars";a:0:{}s:16:"is-into-cartoons";a:0:{}s:13:"is-into-games";a:0:{}s:7:"is-leet";a:0:{}s:16:"is-not-certified";a:0:{}s:8:"is-slick";a:0:{}s:11:"is-uberleet";a:0:{}s:15:"is-with-theband";a:0:{}s:8:"isa-geek";a:0:{}s:13:"isa-hockeynut";a:0:{}s:16:"issmarterthanyou";a:0:{}s:9:"likes-pie";a:0:{}s:10:"likescandy";a:0:{}s:8:"neat-url";a:0:{}s:16:"saves-the-whales";a:0:{}s:6:"selfip";a:0:{}s:14:"sells-for-less";a:0:{}s:11:"sells-for-u";a:0:{}s:8:"servebbs";a:0:{}s:10:"simple-url";a:0:{}s:13:"space-to-rent";a:0:{}s:12:"teaches-yoga";a:0:{}s:14:"writesthisblog";a:0:{}s:18:"digitaloceanspaces";a:1:{s:1:"*";a:0:{}}s:8:"ddnsfree";a:0:{}s:8:"ddnsgeek";a:0:{}s:5:"giize";a:0:{}s:6:"gleeze";a:0:{}s:5:"kozow";a:0:{}s:10:"loseyourip";a:0:{}s:5:"ooguy";a:0:{}s:9:"theworkpc";a:0:{}s:8:"mytuleap";a:0:{}s:15:"tuleap-partners";a:0:{}s:9:"encoreapi";a:0:{}s:8:"evennode";a:8:{s:4:"eu-1";a:0:{}s:4:"eu-2";a:0:{}s:4:"eu-3";a:0:{}s:4:"eu-4";a:0:{}s:4:"us-1";a:0:{}s:4:"us-2";a:0:{}s:4:"us-3";a:0:{}s:4:"us-4";a:0:{}}s:9:"onfabrica";a:0:{}s:5:"fbsbx";a:1:{s:4:"apps";a:0:{}}s:16:"fastly-terrarium";a:0:{}s:14:"fastvps-server";a:0:{}s:8:"mydobiss";a:0:{}s:11:"firebaseapp";a:0:{}s:5:"fldrv";a:0:{}s:11:"forgeblocks";a:0:{}s:12:"framercanvas";a:0:{}s:10:"freebox-os";a:0:{}s:9:"freeboxos";a:0:{}s:8:"freemyip";a:0:{}s:8:"gentapps";a:0:{}s:12:"gentlentapis";a:0:{}s:17:"githubusercontent";a:0:{}s:4:"0emm";a:1:{s:1:"*";a:0:{}}s:7:"appspot";a:1:{s:1:"r";a:1:{s:1:"*";a:0:{}}}s:8:"codespot";a:0:{}s:10:"googleapis";a:0:{}s:10:"googlecode";a:0:{}s:18:"pagespeedmobilizer";a:0:{}s:12:"publishproxy";a:0:{}s:10:"withgoogle";a:0:{}s:11:"withyoutube";a:0:{}s:8:"blogspot";a:0:{}s:7:"awsmppl";a:0:{}s:9:"herokuapp";a:0:{}s:9:"herokussl";a:0:{}s:9:"myravendb";a:0:{}s:12:"impertrixcdn";a:0:{}s:9:"impertrix";a:0:{}s:8:"smushcdn";a:0:{}s:12:"wphostedmail";a:0:{}s:7:"wpmucdn";a:0:{}s:8:"pixolino";a:0:{}s:10:"amscompute";a:0:{}s:12:"clicketcloud";a:0:{}s:6:"dopaas";a:0:{}s:6:"hidora";a:0:{}s:18:"hosted-by-previder";a:1:{s:4:"paas";a:0:{}}s:7:"hosteur";a:2:{s:9:"rag-cloud";a:0:{}s:12:"rag-cloud-ch";a:0:{}}s:9:"ik-server";a:2:{s:6:"jcloud";a:0:{}s:14:"jcloud-ver-jpc";a:0:{}}s:8:"jelastic";a:1:{s:4:"demo";a:0:{}}s:9:"kilatiron";a:0:{}s:11:"massivegrid";a:1:{s:4:"paas";a:0:{}}s:10:"wafaicloud";a:3:{s:3:"jed";a:0:{}s:3:"lon";a:0:{}s:3:"ryd";a:0:{}}s:6:"joyent";a:1:{s:3:"cns";a:1:{s:1:"*";a:0:{}}}s:8:"ktistory";a:0:{}s:13:"lpusercontent";a:0:{}s:4:"lmpm";a:1:{s:3:"app";a:0:{}}s:6:"linode";a:2:{s:7:"members";a:0:{}s:12:"nodebalancer";a:1:{s:1:"*";a:0:{}}}s:13:"linodeobjects";a:1:{s:1:"*";a:0:{}}s:17:"linodeusercontent";a:1:{s:2:"ip";a:0:{}}s:11:"barsycenter";a:0:{}s:11:"barsyonline";a:0:{}s:8:"mazeplay";a:0:{}s:10:"miniserver";a:0:{}s:9:"meteorapp";a:1:{s:2:"eu";a:0:{}}s:8:"hostedpi";a:0:{}s:13:"mythic-beasts";a:11:{s:8:"customer";a:0:{}s:7:"caracal";a:0:{}s:8:"fentiger";a:0:{}s:4:"lynx";a:0:{}s:6:"ocelot";a:0:{}s:7:"oncilla";a:0:{}s:4:"onza";a:0:{}s:6:"sphinx";a:0:{}s:2:"vs";a:0:{}s:1:"x";a:0:{}s:4:"yali";a:0:{}}s:11:"nospamproxy";a:1:{s:5:"cloud";a:0:{}}s:2:"4u";a:0:{}s:7:"nfshost";a:0:{}s:6:"001www";a:0:{}s:8:"ddnslive";a:0:{}s:8:"myiphost";a:0:{}s:8:"blogsyte";a:0:{}s:10:"ciscofreak";a:0:{}s:10:"damnserver";a:0:{}s:11:"ditchyourip";a:0:{}s:10:"dnsiskinky";a:0:{}s:5:"dynns";a:0:{}s:10:"geekgalaxy";a:0:{}s:17:"health-carereform";a:0:{}s:15:"homesecuritymac";a:0:{}s:14:"homesecuritypc";a:0:{}s:17:"myactivedirectory";a:0:{}s:16:"mysecuritycamera";a:0:{}s:10:"net-freaks";a:0:{}s:9:"onthewifi";a:0:{}s:10:"point2this";a:0:{}s:10:"quicksytes";a:0:{}s:15:"securitytactics";a:0:{}s:13:"serveexchange";a:0:{}s:11:"servehumour";a:0:{}s:8:"servep2p";a:0:{}s:12:"servesarcasm";a:0:{}s:11:"stufftoread";a:0:{}s:13:"unusualperson";a:0:{}s:12:"workisboring";a:0:{}s:10:"3utilities";a:0:{}s:8:"ddnsking";a:0:{}s:5:"myvnc";a:0:{}s:9:"servebeer";a:0:{}s:18:"servecounterstrike";a:0:{}s:8:"serveftp";a:0:{}s:9:"servegame";a:0:{}s:13:"servehalflife";a:0:{}s:9:"servehttp";a:0:{}s:8:"serveirc";a:0:{}s:8:"servemp3";a:0:{}s:9:"servepics";a:0:{}s:10:"servequake";a:0:{}s:21:"observableusercontent";a:1:{s:6:"static";a:0:{}}s:7:"orsites";a:0:{}s:10:"operaunite";a:0:{}s:16:"authgear-staging";a:0:{}s:12:"authgearapps";a:0:{}s:10:"skygearapp";a:0:{}s:15:"outsystemscloud";a:0:{}s:11:"ownprovider";a:0:{}s:5:"pgfog";a:0:{}s:12:"pagefrontapp";a:0:{}s:6:"pagexl";a:0:{}s:8:"paywhirl";a:1:{s:1:"*";a:0:{}}s:11:"gotpantheon";a:0:{}s:11:"platter-app";a:0:{}s:7:"pleskns";a:0:{}s:12:"postman-echo";a:0:{}s:5:"prgmr";a:1:{s:3:"xen";a:0:{}}s:14:"pythonanywhere";a:1:{s:2:"eu";a:0:{}}s:11:"qualifioapp";a:0:{}s:6:"qbuser";a:0:{}s:3:"qa2";a:0:{}s:15:"dev-myqnapcloud";a:0:{}s:17:"alpha-myqnapcloud";a:0:{}s:11:"myqnapcloud";a:0:{}s:12:"quipelements";a:1:{s:1:"*";a:0:{}}s:8:"rackmaze";a:0:{}s:7:"rhcloud";a:0:{}s:6:"render";a:1:{s:3:"app";a:0:{}}s:8:"onrender";a:0:{}s:6:"logoip";a:0:{}s:7:"scrysec";a:0:{}s:16:"firewall-gateway";a:0:{}s:12:"myshopblocks";a:0:{}s:9:"myshopify";a:0:{}s:10:"shopitsite";a:0:{}s:5:"1kapp";a:0:{}s:8:"appchizi";a:0:{}s:8:"applinzi";a:0:{}s:7:"sinaapp";a:0:{}s:10:"vipsinaapp";a:0:{}s:11:"bounty-full";a:2:{s:5:"alpha";a:0:{}s:4:"beta";a:0:{}}s:12:"try-snowplow";a:0:{}s:17:"stackhero-network";a:0:{}s:17:"playstation-cloud";a:0:{}s:12:"myspreadshop";a:0:{}s:6:"stdlib";a:1:{s:3:"api";a:0:{}}s:8:"temp-dns";a:0:{}s:7:"dsmynas";a:0:{}s:8:"familyds";a:0:{}s:10:"tb-hosting";a:1:{s:4:"site";a:0:{}}s:7:"reservd";a:0:{}s:13:"thingdustdata";a:0:{}s:7:"bloxcms";a:0:{}s:16:"townnews-staging";a:0:{}s:8:"typeform";a:1:{s:3:"pro";a:0:{}}s:2:"hk";a:0:{}s:12:"vultrobjects";a:1:{s:1:"*";a:0:{}}s:10:"wafflecell";a:0:{}s:14:"reserve-online";a:0:{}s:15:"hotelwithflight";a:0:{}s:8:"remotewd";a:0:{}s:8:"wiardweb";a:1:{s:5:"pages";a:0:{}}s:11:"messwithdns";a:0:{}s:12:"woltlab-demo";a:0:{}s:15:"wpenginepowered";a:1:{s:2:"js";a:0:{}}s:7:"wixsite";a:0:{}s:5:"xnbay";a:2:{s:2:"u2";a:0:{}s:8:"u2-local";a:0:{}}s:8:"yolasite";a:0:{}}s:4:"coop";a:0:{}s:2:"cr";a:7:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:2:"ed";a:0:{}s:2:"fi";a:0:{}s:2:"go";a:0:{}s:2:"or";a:0:{}s:2:"sa";a:0:{}}s:2:"cu";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"inf";a:0:{}}s:2:"cv";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"int";a:0:{}s:4:"nome";a:0:{}s:3:"org";a:0:{}s:8:"blogspot";a:0:{}}s:2:"cw";a:4:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"cx";a:3:{s:3:"gov";a:0:{}s:3:"ath";a:0:{}s:4:"info";a:0:{}}s:2:"cy";a:12:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:3:"com";a:2:{s:8:"blogspot";a:0:{}s:10:"scaleforce";a:1:{s:1:"j";a:0:{}}}s:7:"ekloges";a:0:{}s:3:"gov";a:0:{}s:3:"ltd";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:5:"press";a:0:{}s:3:"pro";a:0:{}s:2:"tm";a:0:{}}s:2:"cz";a:6:{s:2:"co";a:0:{}s:5:"realm";a:0:{}s:2:"e4";a:0:{}s:8:"blogspot";a:0:{}s:11:"metacentrum";a:2:{s:5:"cloud";a:1:{s:1:"*";a:0:{}}s:6:"custom";a:0:{}}s:4:"muni";a:1:{s:5:"cloud";a:2:{s:3:"flt";a:0:{}s:3:"usr";a:0:{}}}}s:2:"de";a:68:{s:7:"bplaced";a:0:{}s:7:"square7";a:0:{}s:3:"com";a:0:{}s:7:"cosidns";a:1:{s:3:"dyn";a:0:{}}s:15:"dynamisches-dns";a:0:{}s:10:"dnsupdater";a:0:{}s:12:"internet-dns";a:0:{}s:9:"l-o-g-i-n";a:0:{}s:7:"dnshome";a:0:{}s:15:"fuettertdasnetz";a:0:{}s:10:"isteingeek";a:0:{}s:7:"istmein";a:0:{}s:10:"lebtimnetz";a:0:{}s:10:"leitungsen";a:0:{}s:13:"traeumtgerade";a:0:{}s:5:"ddnss";a:2:{s:3:"dyn";a:0:{}s:6:"dyndns";a:0:{}}s:7:"dyndns1";a:0:{}s:8:"dyn-ip24";a:0:{}s:14:"home-webserver";a:1:{s:3:"dyn";a:0:{}}s:13:"myhome-server";a:0:{}s:6:"frusky";a:1:{s:1:"*";a:0:{}}s:4:"goip";a:0:{}s:8:"blogspot";a:0:{}s:17:"günstigbestellen";a:0:{}s:15:"günstigliefern";a:0:{}s:12:"hs-heilbronn";a:1:{s:2:"it";a:1:{s:5:"pages";a:0:{}}}s:10:"dyn-berlin";a:0:{}s:9:"in-berlin";a:0:{}s:6:"in-brb";a:0:{}s:9:"in-butter";a:0:{}s:6:"in-dsl";a:0:{}s:6:"in-vpn";a:0:{}s:10:"mein-iserv";a:0:{}s:11:"schulserver";a:0:{}s:10:"test-iserv";a:0:{}s:10:"keymachine";a:0:{}s:9:"git-repos";a:0:{}s:12:"lcube-server";a:0:{}s:9:"svn-repos";a:0:{}s:5:"barsy";a:0:{}s:6:"logoip";a:0:{}s:16:"firewall-gateway";a:0:{}s:10:"my-gateway";a:0:{}s:9:"my-router";a:0:{}s:5:"spdns";a:0:{}s:12:"speedpartner";a:1:{s:8:"customer";a:0:{}}s:12:"myspreadshop";a:0:{}s:10:"taifun-dns";a:0:{}s:4:"12hp";a:0:{}s:3:"2ix";a:0:{}s:5:"4lima";a:0:{}s:9:"lima-city";a:0:{}s:6:"dd-dns";a:0:{}s:8:"dray-dns";a:0:{}s:7:"draydns";a:0:{}s:7:"dyn-vpn";a:0:{}s:6:"dynvpn";a:0:{}s:10:"mein-vigor";a:0:{}s:8:"my-vigor";a:0:{}s:6:"my-wan";a:0:{}s:7:"syno-ds";a:0:{}s:20:"synology-diskstation";a:0:{}s:11:"synology-ds";a:0:{}s:9:"uberspace";a:1:{s:1:"*";a:0:{}}s:11:"virtualuser";a:0:{}s:12:"virtual-user";a:0:{}s:13:"community-pro";a:0:{}s:18:"diskussionsbereich";a:0:{}}s:2:"dj";a:0:{}s:2:"dk";a:7:{s:3:"biz";a:0:{}s:2:"co";a:0:{}s:4:"firm";a:0:{}s:3:"reg";a:0:{}s:5:"store";a:0:{}s:8:"blogspot";a:0:{}s:12:"myspreadshop";a:0:{}}s:2:"dm";a:5:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}}s:2:"do";a:10:{s:3:"art";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sld";a:0:{}s:3:"web";a:0:{}}s:2:"dz";a:10:{s:3:"art";a:0:{}s:4:"asso";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"pol";a:0:{}s:3:"soc";a:0:{}s:2:"tm";a:0:{}}s:2:"ec";a:14:{s:3:"com";a:0:{}s:4:"info";a:0:{}s:3:"net";a:0:{}s:3:"fin";a:0:{}s:3:"k12";a:0:{}s:3:"med";a:0:{}s:3:"pro";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"gob";a:0:{}s:3:"mil";a:0:{}s:4:"base";a:0:{}s:8:"official";a:0:{}}s:3:"edu";a:1:{s:3:"rit";a:1:{s:9:"git-pages";a:0:{}}}s:2:"ee";a:10:{s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"riik";a:0:{}s:3:"lib";a:0:{}s:3:"med";a:0:{}s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"pri";a:0:{}s:3:"aip";a:0:{}s:3:"org";a:0:{}s:3:"fie";a:0:{}}s:2:"eg";a:9:{s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:3:"eun";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sci";a:0:{}}s:2:"er";a:1:{s:1:"*";a:0:{}}s:2:"es";a:6:{s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"nom";a:0:{}s:3:"org";a:0:{}s:3:"gob";a:0:{}s:3:"edu";a:0:{}s:12:"myspreadshop";a:0:{}}s:2:"et";a:8:{s:3:"com";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"biz";a:0:{}s:4:"name";a:0:{}s:4:"info";a:0:{}s:3:"net";a:0:{}}s:2:"eu";a:9:{s:10:"airkitapps";a:0:{}s:4:"mycd";a:0:{}s:7:"cloudns";a:0:{}s:6:"dogado";a:1:{s:8:"jelastic";a:0:{}}s:5:"barsy";a:0:{}s:13:"wellbeingzone";a:0:{}s:5:"spdns";a:0:{}s:8:"transurl";a:1:{s:1:"*";a:0:{}}s:11:"diskstation";a:0:{}}s:2:"fi";a:9:{s:5:"aland";a:0:{}s:2:"dy";a:0:{}s:8:"blogspot";a:0:{}s:9:"häkkinen";a:0:{}s:3:"iki";a:0:{}s:13:"cloudplatform";a:1:{s:2:"fi";a:0:{}}s:10:"datacenter";a:2:{s:4:"demo";a:0:{}s:4:"paas";a:0:{}}s:5:"kapsi";a:0:{}s:12:"myspreadshop";a:0:{}}s:2:"fj";a:10:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:3:"com";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"pro";a:0:{}}s:2:"fk";a:1:{s:1:"*";a:0:{}}s:2:"fm";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:5:"radio";a:0:{}}s:2:"fo";a:0:{}s:2:"fr";a:33:{s:4:"asso";a:0:{}s:3:"com";a:0:{}s:4:"gouv";a:0:{}s:3:"nom";a:0:{}s:3:"prd";a:0:{}s:2:"tm";a:0:{}s:8:"aeroport";a:0:{}s:6:"avocat";a:0:{}s:6:"avoues";a:0:{}s:3:"cci";a:0:{}s:9:"chambagri";a:0:{}s:21:"chirurgiens-dentistes";a:0:{}s:18:"experts-comptables";a:0:{}s:15:"geometre-expert";a:0:{}s:5:"greta";a:0:{}s:16:"huissier-justice";a:0:{}s:7:"medecin";a:0:{}s:8:"notaires";a:0:{}s:10:"pharmacien";a:0:{}s:4:"port";a:0:{}s:11:"veterinaire";a:0:{}s:7:"en-root";a:0:{}s:6:"fbx-os";a:0:{}s:5:"fbxos";a:0:{}s:10:"freebox-os";a:0:{}s:9:"freeboxos";a:0:{}s:8:"blogspot";a:0:{}s:7:"goupile";a:0:{}s:6:"on-web";a:0:{}s:31:"chirurgiens-dentistes-en-france";a:0:{}s:7:"dedibox";a:0:{}s:12:"myspreadshop";a:0:{}s:3:"ynh";a:0:{}}s:2:"ga";a:0:{}s:2:"gb";a:0:{}s:2:"gd";a:2:{s:3:"edu";a:0:{}s:3:"gov";a:0:{}}s:2:"ge";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"pvt";a:0:{}}s:2:"gf";a:0:{}s:2:"gg";a:6:{s:2:"co";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:4:"kaas";a:0:{}s:3:"cya";a:0:{}s:5:"panel";a:1:{s:6:"daemon";a:0:{}}}s:2:"gh";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"mil";a:0:{}}s:2:"gi";a:6:{s:3:"com";a:0:{}s:3:"ltd";a:0:{}s:3:"gov";a:0:{}s:3:"mod";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}}s:2:"gl";a:7:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"biz";a:0:{}s:2:"xx";a:0:{}}s:2:"gm";a:0:{}s:2:"gn";a:6:{s:2:"ac";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}}s:3:"gov";a:0:{}s:2:"gp";a:7:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:4:"mobi";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:4:"asso";a:0:{}s:3:"app";a:0:{}}s:2:"gq";a:0:{}s:2:"gr";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:8:"blogspot";a:0:{}}s:2:"gs";a:0:{}s:2:"gt";a:10:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"ind";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:4:"blog";a:0:{}s:2:"de";a:0:{}s:2:"to";a:0:{}}s:2:"gu";a:8:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"guam";a:0:{}s:4:"info";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"web";a:0:{}}s:2:"gw";a:0:{}s:2:"gy";a:7:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"be";a:0:{}}s:2:"hk";a:25:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"idv";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:6:"公司";a:0:{}s:6:"教育";a:0:{}s:6:"敎育";a:0:{}s:6:"政府";a:0:{}s:6:"個人";a:0:{}s:6:"个人";a:0:{}s:6:"箇人";a:0:{}s:6:"網络";a:0:{}s:6:"网络";a:0:{}s:6:"组織";a:0:{}s:6:"網絡";a:0:{}s:6:"网絡";a:0:{}s:6:"组织";a:0:{}s:6:"組織";a:0:{}s:6:"組织";a:0:{}s:8:"blogspot";a:0:{}s:6:"secaas";a:0:{}s:3:"ltd";a:0:{}s:3:"inc";a:0:{}}s:2:"hm";a:0:{}s:2:"hn";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"mil";a:0:{}s:3:"gob";a:0:{}s:2:"cc";a:0:{}}s:2:"hr";a:6:{s:2:"iz";a:0:{}s:4:"from";a:0:{}s:4:"name";a:0:{}s:3:"com";a:0:{}s:8:"blogspot";a:0:{}s:4:"free";a:0:{}}s:2:"ht";a:17:{s:3:"com";a:0:{}s:4:"shop";a:0:{}s:4:"firm";a:0:{}s:4:"info";a:0:{}s:5:"adult";a:0:{}s:3:"net";a:0:{}s:3:"pro";a:0:{}s:3:"org";a:0:{}s:3:"med";a:0:{}s:3:"art";a:0:{}s:4:"coop";a:0:{}s:3:"pol";a:0:{}s:4:"asso";a:0:{}s:3:"edu";a:0:{}s:3:"rel";a:0:{}s:4:"gouv";a:0:{}s:5:"perso";a:0:{}}s:2:"hu";a:32:{s:2:"co";a:0:{}s:4:"info";a:0:{}s:3:"org";a:0:{}s:4:"priv";a:0:{}s:5:"sport";a:0:{}s:2:"tm";a:0:{}i:2000;a:0:{}s:5:"agrar";a:0:{}s:4:"bolt";a:0:{}s:6:"casino";a:0:{}s:4:"city";a:0:{}s:7:"erotica";a:0:{}s:7:"erotika";a:0:{}s:4:"film";a:0:{}s:5:"forum";a:0:{}s:5:"games";a:0:{}s:5:"hotel";a:0:{}s:8:"ingatlan";a:0:{}s:6:"jogasz";a:0:{}s:8:"konyvelo";a:0:{}s:5:"lakas";a:0:{}s:5:"media";a:0:{}s:4:"news";a:0:{}s:6:"reklam";a:0:{}s:3:"sex";a:0:{}s:4:"shop";a:0:{}s:4:"suli";a:0:{}s:4:"szex";a:0:{}s:6:"tozsde";a:0:{}s:6:"utazas";a:0:{}s:5:"video";a:0:{}s:8:"blogspot";a:0:{}}s:2:"id";a:14:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:1:{s:8:"blogspot";a:0:{}}s:4:"desa";a:0:{}s:2:"go";a:0:{}s:3:"mil";a:0:{}s:2:"my";a:1:{s:3:"rss";a:1:{s:1:"*";a:0:{}}}s:3:"net";a:0:{}s:2:"or";a:0:{}s:6:"ponpes";a:0:{}s:3:"sch";a:0:{}s:3:"web";a:0:{}s:4:"flap";a:0:{}s:5:"forte";a:0:{}}s:2:"ie";a:3:{s:3:"gov";a:0:{}s:8:"blogspot";a:0:{}s:12:"myspreadshop";a:0:{}}s:2:"il";a:8:{s:2:"ac";a:0:{}s:2:"co";a:3:{s:7:"ravpage";a:0:{}s:8:"blogspot";a:0:{}s:10:"tabitorder";a:0:{}}s:3:"gov";a:0:{}s:3:"idf";a:0:{}s:3:"k12";a:0:{}s:4:"muni";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"im";a:8:{s:2:"ac";a:0:{}s:2:"co";a:2:{s:3:"ltd";a:0:{}s:3:"plc";a:0:{}}s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"tt";a:0:{}s:2:"tv";a:0:{}s:2:"ro";a:0:{}}s:2:"in";a:17:{s:2:"co";a:0:{}s:4:"firm";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gen";a:0:{}s:3:"ind";a:0:{}s:3:"nic";a:0:{}s:2:"ac";a:0:{}s:3:"edu";a:0:{}s:3:"res";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"web";a:0:{}s:7:"cloudns";a:0:{}s:8:"blogspot";a:0:{}s:5:"barsy";a:0:{}s:8:"supabase";a:0:{}}s:4:"info";a:21:{s:7:"cloudns";a:0:{}s:11:"dynamic-dns";a:0:{}s:6:"dyndns";a:0:{}s:19:"barrel-of-knowledge";a:0:{}s:20:"barrell-of-knowledge";a:0:{}s:7:"for-our";a:0:{}s:9:"groks-the";a:0:{}s:10:"groks-this";a:0:{}s:13:"here-for-more";a:0:{}s:10:"knowsitall";a:0:{}s:6:"selfip";a:0:{}s:6:"webhop";a:0:{}s:5:"barsy";a:0:{}s:8:"mayfirst";a:0:{}s:6:"forumz";a:0:{}s:8:"nsupdate";a:0:{}s:6:"dvrcam";a:0:{}s:12:"ilovecollege";a:0:{}s:5:"no-ip";a:0:{}s:9:"dnsupdate";a:0:{}s:6:"v-info";a:0:{}}s:3:"int";a:1:{s:2:"eu";a:0:{}}s:2:"io";a:70:{s:3:"com";a:0:{}s:6:"apigee";a:0:{}s:6:"b-data";a:0:{}s:12:"backplaneapp";a:0:{}s:11:"banzaicloud";a:2:{s:3:"app";a:0:{}s:9:"backyards";a:1:{s:1:"*";a:0:{}}}s:9:"bitbucket";a:0:{}s:8:"bluebite";a:0:{}s:7:"boxfuse";a:0:{}s:17:"browsersafetymark";a:0:{}s:4:"bigv";a:1:{s:3:"uk0";a:0:{}}s:10:"cleverapps";a:0:{}s:8:"dappnode";a:1:{s:6:"dyndns";a:0:{}}s:5:"dedyn";a:0:{}s:4:"drud";a:0:{}s:8:"definima";a:0:{}s:11:"fh-muenster";a:0:{}s:3:"shw";a:0:{}s:9:"forgerock";a:1:{s:2:"id";a:0:{}}s:5:"ghost";a:0:{}s:6:"github";a:0:{}s:6:"gitlab";a:0:{}s:7:"lolipop";a:0:{}s:10:"hasura-app";a:0:{}s:12:"hostyhosting";a:0:{}s:9:"moonscale";a:1:{s:1:"*";a:0:{}}s:7:"beebyte";a:1:{s:4:"paas";a:0:{}}s:10:"beebyteapp";a:1:{s:5:"sekd1";a:0:{}}s:4:"jele";a:0:{}s:8:"unispace";a:1:{s:9:"cloud-fr1";a:0:{}}s:9:"webthings";a:0:{}s:9:"loginline";a:0:{}s:5:"barsy";a:0:{}s:14:"azurecontainer";a:1:{s:1:"*";a:0:{}}s:5:"ngrok";a:0:{}s:7:"nodeart";a:1:{s:5:"stage";a:0:{}}s:3:"nid";a:0:{}s:12:"pantheonsite";a:0:{}s:5:"dyn53";a:0:{}s:5:"pstmn";a:1:{s:4:"mock";a:0:{}}s:8:"protonet";a:0:{}s:4:"qoto";a:0:{}s:3:"qcx";a:1:{s:3:"sys";a:1:{s:1:"*";a:0:{}}}s:10:"vaporcloud";a:0:{}s:8:"vbrplsbx";a:1:{s:1:"g";a:0:{}}s:6:"on-k3s";a:1:{s:1:"*";a:0:{}}s:6:"on-rio";a:1:{s:1:"*";a:0:{}}s:11:"readthedocs";a:0:{}s:11:"resindevice";a:0:{}s:12:"resinstaging";a:1:{s:7:"devices";a:0:{}}s:3:"hzc";a:0:{}s:8:"sandcats";a:0:{}s:11:"shiftcrypto";a:0:{}s:9:"shiftedit";a:0:{}s:10:"mo-siemens";a:0:{}s:8:"musician";a:0:{}s:4:"lair";a:1:{s:4:"apps";a:0:{}}s:6:"stolos";a:1:{s:1:"*";a:0:{}}s:8:"spacekit";a:0:{}s:7:"utwente";a:0:{}s:3:"s5y";a:1:{s:1:"*";a:0:{}}s:6:"edugit";a:0:{}s:7:"telebit";a:0:{}s:9:"thingdust";a:4:{s:3:"dev";a:2:{s:4:"cust";a:0:{}s:7:"reservd";a:0:{}}s:6:"disrec";a:2:{s:4:"cust";a:0:{}s:7:"reservd";a:0:{}}s:4:"prod";a:1:{s:4:"cust";a:0:{}}s:7:"testing";a:2:{s:4:"cust";a:0:{}s:7:"reservd";a:0:{}}}s:7:"tickets";a:0:{}s:4:"upli";a:0:{}i:2038;a:0:{}s:8:"wedeploy";a:0:{}s:7:"editorx";a:0:{}s:11:"basicserver";a:0:{}s:13:"virtualserver";a:0:{}}s:2:"iq";a:6:{s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}}s:2:"ir";a:9:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:3:"gov";a:0:{}s:2:"id";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}s:10:"ایران";a:0:{}s:10:"ايران";a:0:{}}s:2:"is";a:8:{s:3:"net";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"int";a:0:{}s:7:"cupcake";a:0:{}s:8:"blogspot";a:0:{}}s:2:"it";a:414:{s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"abr";a:0:{}s:7:"abruzzo";a:0:{}s:12:"aosta-valley";a:0:{}s:11:"aostavalley";a:0:{}s:3:"bas";a:0:{}s:10:"basilicata";a:0:{}s:3:"cal";a:0:{}s:8:"calabria";a:0:{}s:3:"cam";a:0:{}s:8:"campania";a:0:{}s:14:"emilia-romagna";a:0:{}s:13:"emiliaromagna";a:0:{}s:3:"emr";a:0:{}s:15:"friuli-v-giulia";a:0:{}s:16:"friuli-ve-giulia";a:0:{}s:15:"friuli-vegiulia";a:0:{}s:21:"friuli-venezia-giulia";a:0:{}s:20:"friuli-veneziagiulia";a:0:{}s:14:"friuli-vgiulia";a:0:{}s:14:"friuliv-giulia";a:0:{}s:15:"friulive-giulia";a:0:{}s:14:"friulivegiulia";a:0:{}s:20:"friulivenezia-giulia";a:0:{}s:19:"friuliveneziagiulia";a:0:{}s:13:"friulivgiulia";a:0:{}s:3:"fvg";a:0:{}s:3:"laz";a:0:{}s:5:"lazio";a:0:{}s:3:"lig";a:0:{}s:7:"liguria";a:0:{}s:3:"lom";a:0:{}s:9:"lombardia";a:0:{}s:8:"lombardy";a:0:{}s:7:"lucania";a:0:{}s:3:"mar";a:0:{}s:6:"marche";a:0:{}s:3:"mol";a:0:{}s:6:"molise";a:0:{}s:8:"piedmont";a:0:{}s:8:"piemonte";a:0:{}s:3:"pmn";a:0:{}s:3:"pug";a:0:{}s:6:"puglia";a:0:{}s:3:"sar";a:0:{}s:8:"sardegna";a:0:{}s:8:"sardinia";a:0:{}s:3:"sic";a:0:{}s:7:"sicilia";a:0:{}s:6:"sicily";a:0:{}s:3:"taa";a:0:{}s:3:"tos";a:0:{}s:7:"toscana";a:0:{}s:17:"trentin-sud-tirol";a:0:{}s:18:"trentin-süd-tirol";a:0:{}s:16:"trentin-sudtirol";a:0:{}s:17:"trentin-südtirol";a:0:{}s:18:"trentin-sued-tirol";a:0:{}s:17:"trentin-suedtirol";a:0:{}s:16:"trentino-a-adige";a:0:{}s:15:"trentino-aadige";a:0:{}s:19:"trentino-alto-adige";a:0:{}s:18:"trentino-altoadige";a:0:{}s:16:"trentino-s-tirol";a:0:{}s:15:"trentino-stirol";a:0:{}s:18:"trentino-sud-tirol";a:0:{}s:19:"trentino-süd-tirol";a:0:{}s:17:"trentino-sudtirol";a:0:{}s:18:"trentino-südtirol";a:0:{}s:19:"trentino-sued-tirol";a:0:{}s:18:"trentino-suedtirol";a:0:{}s:8:"trentino";a:0:{}s:15:"trentinoa-adige";a:0:{}s:14:"trentinoaadige";a:0:{}s:18:"trentinoalto-adige";a:0:{}s:17:"trentinoaltoadige";a:0:{}s:15:"trentinos-tirol";a:0:{}s:14:"trentinostirol";a:0:{}s:17:"trentinosud-tirol";a:0:{}s:18:"trentinosüd-tirol";a:0:{}s:16:"trentinosudtirol";a:0:{}s:17:"trentinosüdtirol";a:0:{}s:18:"trentinosued-tirol";a:0:{}s:17:"trentinosuedtirol";a:0:{}s:16:"trentinsud-tirol";a:0:{}s:17:"trentinsüd-tirol";a:0:{}s:15:"trentinsudtirol";a:0:{}s:16:"trentinsüdtirol";a:0:{}s:17:"trentinsued-tirol";a:0:{}s:16:"trentinsuedtirol";a:0:{}s:7:"tuscany";a:0:{}s:3:"umb";a:0:{}s:6:"umbria";a:0:{}s:11:"val-d-aosta";a:0:{}s:10:"val-daosta";a:0:{}s:10:"vald-aosta";a:0:{}s:9:"valdaosta";a:0:{}s:11:"valle-aosta";a:0:{}s:13:"valle-d-aosta";a:0:{}s:12:"valle-daosta";a:0:{}s:10:"valleaosta";a:0:{}s:12:"valled-aosta";a:0:{}s:11:"valledaosta";a:0:{}s:12:"vallee-aoste";a:0:{}s:13:"vallée-aoste";a:0:{}s:14:"vallee-d-aoste";a:0:{}s:15:"vallée-d-aoste";a:0:{}s:11:"valleeaoste";a:0:{}s:12:"valléeaoste";a:0:{}s:12:"valleedaoste";a:0:{}s:13:"valléedaoste";a:0:{}s:3:"vao";a:0:{}s:3:"vda";a:0:{}s:3:"ven";a:0:{}s:6:"veneto";a:0:{}s:2:"ag";a:0:{}s:9:"agrigento";a:0:{}s:2:"al";a:0:{}s:11:"alessandria";a:0:{}s:10:"alto-adige";a:0:{}s:9:"altoadige";a:0:{}s:2:"an";a:0:{}s:6:"ancona";a:0:{}s:21:"andria-barletta-trani";a:0:{}s:21:"andria-trani-barletta";a:0:{}s:19:"andriabarlettatrani";a:0:{}s:19:"andriatranibarletta";a:0:{}s:2:"ao";a:0:{}s:5:"aosta";a:0:{}s:5:"aoste";a:0:{}s:2:"ap";a:0:{}s:2:"aq";a:0:{}s:6:"aquila";a:0:{}s:2:"ar";a:0:{}s:6:"arezzo";a:0:{}s:13:"ascoli-piceno";a:0:{}s:12:"ascolipiceno";a:0:{}s:4:"asti";a:0:{}s:2:"at";a:0:{}s:2:"av";a:0:{}s:8:"avellino";a:0:{}s:2:"ba";a:0:{}s:15:"balsan-sudtirol";a:0:{}s:16:"balsan-südtirol";a:0:{}s:16:"balsan-suedtirol";a:0:{}s:6:"balsan";a:0:{}s:4:"bari";a:0:{}s:21:"barletta-trani-andria";a:0:{}s:19:"barlettatraniandria";a:0:{}s:7:"belluno";a:0:{}s:9:"benevento";a:0:{}s:7:"bergamo";a:0:{}s:2:"bg";a:0:{}s:2:"bi";a:0:{}s:6:"biella";a:0:{}s:2:"bl";a:0:{}s:2:"bn";a:0:{}s:2:"bo";a:0:{}s:7:"bologna";a:0:{}s:17:"bolzano-altoadige";a:0:{}s:7:"bolzano";a:0:{}s:14:"bozen-sudtirol";a:0:{}s:15:"bozen-südtirol";a:0:{}s:15:"bozen-suedtirol";a:0:{}s:5:"bozen";a:0:{}s:2:"br";a:0:{}s:7:"brescia";a:0:{}s:8:"brindisi";a:0:{}s:2:"bs";a:0:{}s:2:"bt";a:0:{}s:15:"bulsan-sudtirol";a:0:{}s:16:"bulsan-südtirol";a:0:{}s:16:"bulsan-suedtirol";a:0:{}s:6:"bulsan";a:0:{}s:2:"bz";a:0:{}s:2:"ca";a:0:{}s:8:"cagliari";a:0:{}s:13:"caltanissetta";a:0:{}s:15:"campidano-medio";a:0:{}s:14:"campidanomedio";a:0:{}s:10:"campobasso";a:0:{}s:17:"carbonia-iglesias";a:0:{}s:16:"carboniaiglesias";a:0:{}s:13:"carrara-massa";a:0:{}s:12:"carraramassa";a:0:{}s:7:"caserta";a:0:{}s:7:"catania";a:0:{}s:9:"catanzaro";a:0:{}s:2:"cb";a:0:{}s:2:"ce";a:0:{}s:12:"cesena-forli";a:0:{}s:13:"cesena-forlì";a:0:{}s:11:"cesenaforli";a:0:{}s:12:"cesenaforlì";a:0:{}s:2:"ch";a:0:{}s:6:"chieti";a:0:{}s:2:"ci";a:0:{}s:2:"cl";a:0:{}s:2:"cn";a:0:{}s:2:"co";a:0:{}s:4:"como";a:0:{}s:7:"cosenza";a:0:{}s:2:"cr";a:0:{}s:7:"cremona";a:0:{}s:7:"crotone";a:0:{}s:2:"cs";a:0:{}s:2:"ct";a:0:{}s:5:"cuneo";a:0:{}s:2:"cz";a:0:{}s:14:"dell-ogliastra";a:0:{}s:13:"dellogliastra";a:0:{}s:2:"en";a:0:{}s:4:"enna";a:0:{}s:2:"fc";a:0:{}s:2:"fe";a:0:{}s:5:"fermo";a:0:{}s:7:"ferrara";a:0:{}s:2:"fg";a:0:{}s:2:"fi";a:0:{}s:7:"firenze";a:0:{}s:8:"florence";a:0:{}s:2:"fm";a:0:{}s:6:"foggia";a:0:{}s:12:"forli-cesena";a:0:{}s:13:"forlì-cesena";a:0:{}s:11:"forlicesena";a:0:{}s:12:"forlìcesena";a:0:{}s:2:"fr";a:0:{}s:9:"frosinone";a:0:{}s:2:"ge";a:0:{}s:5:"genoa";a:0:{}s:6:"genova";a:0:{}s:2:"go";a:0:{}s:7:"gorizia";a:0:{}s:2:"gr";a:0:{}s:8:"grosseto";a:0:{}s:17:"iglesias-carbonia";a:0:{}s:16:"iglesiascarbonia";a:0:{}s:2:"im";a:0:{}s:7:"imperia";a:0:{}s:2:"is";a:0:{}s:7:"isernia";a:0:{}s:2:"kr";a:0:{}s:9:"la-spezia";a:0:{}s:7:"laquila";a:0:{}s:8:"laspezia";a:0:{}s:6:"latina";a:0:{}s:2:"lc";a:0:{}s:2:"le";a:0:{}s:5:"lecce";a:0:{}s:5:"lecco";a:0:{}s:2:"li";a:0:{}s:7:"livorno";a:0:{}s:2:"lo";a:0:{}s:4:"lodi";a:0:{}s:2:"lt";a:0:{}s:2:"lu";a:0:{}s:5:"lucca";a:0:{}s:8:"macerata";a:0:{}s:7:"mantova";a:0:{}s:13:"massa-carrara";a:0:{}s:12:"massacarrara";a:0:{}s:6:"matera";a:0:{}s:2:"mb";a:0:{}s:2:"mc";a:0:{}s:2:"me";a:0:{}s:15:"medio-campidano";a:0:{}s:14:"mediocampidano";a:0:{}s:7:"messina";a:0:{}s:2:"mi";a:0:{}s:5:"milan";a:0:{}s:6:"milano";a:0:{}s:2:"mn";a:0:{}s:2:"mo";a:0:{}s:6:"modena";a:0:{}s:13:"monza-brianza";a:0:{}s:21:"monza-e-della-brianza";a:0:{}s:5:"monza";a:0:{}s:12:"monzabrianza";a:0:{}s:13:"monzaebrianza";a:0:{}s:18:"monzaedellabrianza";a:0:{}s:2:"ms";a:0:{}s:2:"mt";a:0:{}s:2:"na";a:0:{}s:6:"naples";a:0:{}s:6:"napoli";a:0:{}s:2:"no";a:0:{}s:6:"novara";a:0:{}s:2:"nu";a:0:{}s:5:"nuoro";a:0:{}s:2:"og";a:0:{}s:9:"ogliastra";a:0:{}s:12:"olbia-tempio";a:0:{}s:11:"olbiatempio";a:0:{}s:2:"or";a:0:{}s:8:"oristano";a:0:{}s:2:"ot";a:0:{}s:2:"pa";a:0:{}s:6:"padova";a:0:{}s:5:"padua";a:0:{}s:7:"palermo";a:0:{}s:5:"parma";a:0:{}s:5:"pavia";a:0:{}s:2:"pc";a:0:{}s:2:"pd";a:0:{}s:2:"pe";a:0:{}s:7:"perugia";a:0:{}s:13:"pesaro-urbino";a:0:{}s:12:"pesarourbino";a:0:{}s:7:"pescara";a:0:{}s:2:"pg";a:0:{}s:2:"pi";a:0:{}s:8:"piacenza";a:0:{}s:4:"pisa";a:0:{}s:7:"pistoia";a:0:{}s:2:"pn";a:0:{}s:2:"po";a:0:{}s:9:"pordenone";a:0:{}s:7:"potenza";a:0:{}s:2:"pr";a:0:{}s:5:"prato";a:0:{}s:2:"pt";a:0:{}s:2:"pu";a:0:{}s:2:"pv";a:0:{}s:2:"pz";a:0:{}s:2:"ra";a:0:{}s:6:"ragusa";a:0:{}s:7:"ravenna";a:0:{}s:2:"rc";a:0:{}s:2:"re";a:0:{}s:15:"reggio-calabria";a:0:{}s:13:"reggio-emilia";a:0:{}s:14:"reggiocalabria";a:0:{}s:12:"reggioemilia";a:0:{}s:2:"rg";a:0:{}s:2:"ri";a:0:{}s:5:"rieti";a:0:{}s:6:"rimini";a:0:{}s:2:"rm";a:0:{}s:2:"rn";a:0:{}s:2:"ro";a:0:{}s:4:"roma";a:0:{}s:4:"rome";a:0:{}s:6:"rovigo";a:0:{}s:2:"sa";a:0:{}s:7:"salerno";a:0:{}s:7:"sassari";a:0:{}s:6:"savona";a:0:{}s:2:"si";a:0:{}s:5:"siena";a:0:{}s:8:"siracusa";a:0:{}s:2:"so";a:0:{}s:7:"sondrio";a:0:{}s:2:"sp";a:0:{}s:2:"sr";a:0:{}s:2:"ss";a:0:{}s:9:"suedtirol";a:0:{}s:9:"südtirol";a:0:{}s:2:"sv";a:0:{}s:2:"ta";a:0:{}s:7:"taranto";a:0:{}s:2:"te";a:0:{}s:12:"tempio-olbia";a:0:{}s:11:"tempioolbia";a:0:{}s:6:"teramo";a:0:{}s:5:"terni";a:0:{}s:2:"tn";a:0:{}s:2:"to";a:0:{}s:6:"torino";a:0:{}s:2:"tp";a:0:{}s:2:"tr";a:0:{}s:21:"trani-andria-barletta";a:0:{}s:21:"trani-barletta-andria";a:0:{}s:19:"traniandriabarletta";a:0:{}s:19:"tranibarlettaandria";a:0:{}s:7:"trapani";a:0:{}s:6:"trento";a:0:{}s:7:"treviso";a:0:{}s:7:"trieste";a:0:{}s:2:"ts";a:0:{}s:5:"turin";a:0:{}s:2:"tv";a:0:{}s:2:"ud";a:0:{}s:5:"udine";a:0:{}s:13:"urbino-pesaro";a:0:{}s:12:"urbinopesaro";a:0:{}s:2:"va";a:0:{}s:6:"varese";a:0:{}s:2:"vb";a:0:{}s:2:"vc";a:0:{}s:2:"ve";a:0:{}s:7:"venezia";a:0:{}s:6:"venice";a:0:{}s:8:"verbania";a:0:{}s:8:"vercelli";a:0:{}s:6:"verona";a:0:{}s:2:"vi";a:0:{}s:13:"vibo-valentia";a:0:{}s:12:"vibovalentia";a:0:{}s:7:"vicenza";a:0:{}s:7:"viterbo";a:0:{}s:2:"vr";a:0:{}s:2:"vs";a:0:{}s:2:"vt";a:0:{}s:2:"vv";a:0:{}s:8:"blogspot";a:0:{}s:4:"neen";a:1:{s:2:"jc";a:0:{}}s:3:"tim";a:1:{s:4:"open";a:1:{s:8:"jelastic";a:1:{s:5:"cloud";a:0:{}}}}s:4:"16-b";a:0:{}s:4:"32-b";a:0:{}s:4:"64-b";a:0:{}s:12:"myspreadshop";a:0:{}s:8:"syncloud";a:0:{}}s:2:"je";a:4:{s:2:"co";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"of";a:0:{}}s:2:"jm";a:1:{s:1:"*";a:0:{}}s:2:"jo";a:8:{s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"edu";a:0:{}s:3:"sch";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}}s:4:"jobs";a:0:{}s:2:"jp";a:222:{s:2:"ac";a:0:{}s:2:"ad";a:0:{}s:2:"co";a:0:{}s:2:"ed";a:0:{}s:2:"go";a:0:{}s:2:"gr";a:0:{}s:2:"lg";a:0:{}s:2:"ne";a:2:{s:7:"aseinet";a:1:{s:4:"user";a:0:{}}s:6:"gehirn";a:0:{}}s:2:"or";a:0:{}s:5:"aichi";a:52:{s:5:"aisai";a:0:{}s:3:"ama";a:0:{}s:4:"anjo";a:0:{}s:5:"asuke";a:0:{}s:6:"chiryu";a:0:{}s:5:"chita";a:0:{}s:4:"fuso";a:0:{}s:8:"gamagori";a:0:{}s:5:"handa";a:0:{}s:4:"hazu";a:0:{}s:7:"hekinan";a:0:{}s:10:"higashiura";a:0:{}s:10:"ichinomiya";a:0:{}s:7:"inazawa";a:0:{}s:7:"inuyama";a:0:{}s:7:"isshiki";a:0:{}s:7:"iwakura";a:0:{}s:5:"kanie";a:0:{}s:6:"kariya";a:0:{}s:7:"kasugai";a:0:{}s:4:"kira";a:0:{}s:6:"kiyosu";a:0:{}s:6:"komaki";a:0:{}s:5:"konan";a:0:{}s:4:"kota";a:0:{}s:6:"mihama";a:0:{}s:7:"miyoshi";a:0:{}s:6:"nishio";a:0:{}s:7:"nisshin";a:0:{}s:3:"obu";a:0:{}s:6:"oguchi";a:0:{}s:5:"oharu";a:0:{}s:7:"okazaki";a:0:{}s:10:"owariasahi";a:0:{}s:4:"seto";a:0:{}s:8:"shikatsu";a:0:{}s:9:"shinshiro";a:0:{}s:7:"shitara";a:0:{}s:6:"tahara";a:0:{}s:8:"takahama";a:0:{}s:9:"tobishima";a:0:{}s:4:"toei";a:0:{}s:4:"togo";a:0:{}s:5:"tokai";a:0:{}s:8:"tokoname";a:0:{}s:7:"toyoake";a:0:{}s:9:"toyohashi";a:0:{}s:8:"toyokawa";a:0:{}s:6:"toyone";a:0:{}s:6:"toyota";a:0:{}s:8:"tsushima";a:0:{}s:6:"yatomi";a:0:{}}s:5:"akita";a:28:{s:5:"akita";a:0:{}s:6:"daisen";a:0:{}s:8:"fujisato";a:0:{}s:6:"gojome";a:0:{}s:11:"hachirogata";a:0:{}s:6:"happou";a:0:{}s:13:"higashinaruse";a:0:{}s:5:"honjo";a:0:{}s:6:"honjyo";a:0:{}s:5:"ikawa";a:0:{}s:9:"kamikoani";a:0:{}s:7:"kamioka";a:0:{}s:8:"katagami";a:0:{}s:6:"kazuno";a:0:{}s:9:"kitaakita";a:0:{}s:6:"kosaka";a:0:{}s:5:"kyowa";a:0:{}s:6:"misato";a:0:{}s:6:"mitane";a:0:{}s:9:"moriyoshi";a:0:{}s:6:"nikaho";a:0:{}s:7:"noshiro";a:0:{}s:5:"odate";a:0:{}s:3:"oga";a:0:{}s:5:"ogata";a:0:{}s:7:"semboku";a:0:{}s:6:"yokote";a:0:{}s:9:"yurihonjo";a:0:{}}s:6:"aomori";a:22:{s:6:"aomori";a:0:{}s:6:"gonohe";a:0:{}s:9:"hachinohe";a:0:{}s:9:"hashikami";a:0:{}s:7:"hiranai";a:0:{}s:8:"hirosaki";a:0:{}s:9:"itayanagi";a:0:{}s:8:"kuroishi";a:0:{}s:6:"misawa";a:0:{}s:5:"mutsu";a:0:{}s:10:"nakadomari";a:0:{}s:6:"noheji";a:0:{}s:6:"oirase";a:0:{}s:5:"owani";a:0:{}s:8:"rokunohe";a:0:{}s:7:"sannohe";a:0:{}s:10:"shichinohe";a:0:{}s:6:"shingo";a:0:{}s:5:"takko";a:0:{}s:6:"towada";a:0:{}s:7:"tsugaru";a:0:{}s:7:"tsuruta";a:0:{}}s:5:"chiba";a:58:{s:5:"abiko";a:0:{}s:5:"asahi";a:0:{}s:6:"chonan";a:0:{}s:6:"chosei";a:0:{}s:6:"choshi";a:0:{}s:4:"chuo";a:0:{}s:9:"funabashi";a:0:{}s:6:"futtsu";a:0:{}s:10:"hanamigawa";a:0:{}s:8:"ichihara";a:0:{}s:8:"ichikawa";a:0:{}s:10:"ichinomiya";a:0:{}s:5:"inzai";a:0:{}s:5:"isumi";a:0:{}s:8:"kamagaya";a:0:{}s:8:"kamogawa";a:0:{}s:7:"kashiwa";a:0:{}s:6:"katori";a:0:{}s:8:"katsuura";a:0:{}s:7:"kimitsu";a:0:{}s:8:"kisarazu";a:0:{}s:6:"kozaki";a:0:{}s:8:"kujukuri";a:0:{}s:6:"kyonan";a:0:{}s:7:"matsudo";a:0:{}s:6:"midori";a:0:{}s:6:"mihama";a:0:{}s:10:"minamiboso";a:0:{}s:6:"mobara";a:0:{}s:9:"mutsuzawa";a:0:{}s:6:"nagara";a:0:{}s:10:"nagareyama";a:0:{}s:9:"narashino";a:0:{}s:6:"narita";a:0:{}s:4:"noda";a:0:{}s:13:"oamishirasato";a:0:{}s:7:"omigawa";a:0:{}s:6:"onjuku";a:0:{}s:5:"otaki";a:0:{}s:5:"sakae";a:0:{}s:6:"sakura";a:0:{}s:9:"shimofusa";a:0:{}s:7:"shirako";a:0:{}s:6:"shiroi";a:0:{}s:6:"shisui";a:0:{}s:9:"sodegaura";a:0:{}s:4:"sosa";a:0:{}s:4:"tako";a:0:{}s:8:"tateyama";a:0:{}s:6:"togane";a:0:{}s:8:"tohnosho";a:0:{}s:8:"tomisato";a:0:{}s:7:"urayasu";a:0:{}s:9:"yachimata";a:0:{}s:7:"yachiyo";a:0:{}s:10:"yokaichiba";a:0:{}s:15:"yokoshibahikari";a:0:{}s:10:"yotsukaido";a:0:{}}s:5:"ehime";a:22:{s:5:"ainan";a:0:{}s:5:"honai";a:0:{}s:5:"ikata";a:0:{}s:7:"imabari";a:0:{}s:3:"iyo";a:0:{}s:8:"kamijima";a:0:{}s:6:"kihoku";a:0:{}s:9:"kumakogen";a:0:{}s:6:"masaki";a:0:{}s:7:"matsuno";a:0:{}s:9:"matsuyama";a:0:{}s:8:"namikata";a:0:{}s:7:"niihama";a:0:{}s:3:"ozu";a:0:{}s:5:"saijo";a:0:{}s:5:"seiyo";a:0:{}s:11:"shikokuchuo";a:0:{}s:4:"tobe";a:0:{}s:4:"toon";a:0:{}s:6:"uchiko";a:0:{}s:7:"uwajima";a:0:{}s:10:"yawatahama";a:0:{}}s:5:"fukui";a:15:{s:7:"echizen";a:0:{}s:7:"eiheiji";a:0:{}s:5:"fukui";a:0:{}s:5:"ikeda";a:0:{}s:9:"katsuyama";a:0:{}s:6:"mihama";a:0:{}s:13:"minamiechizen";a:0:{}s:5:"obama";a:0:{}s:3:"ohi";a:0:{}s:3:"ono";a:0:{}s:5:"sabae";a:0:{}s:5:"sakai";a:0:{}s:8:"takahama";a:0:{}s:7:"tsuruga";a:0:{}s:6:"wakasa";a:0:{}}s:7:"fukuoka";a:63:{s:6:"ashiya";a:0:{}s:5:"buzen";a:0:{}s:7:"chikugo";a:0:{}s:7:"chikuho";a:0:{}s:7:"chikujo";a:0:{}s:10:"chikushino";a:0:{}s:8:"chikuzen";a:0:{}s:4:"chuo";a:0:{}s:7:"dazaifu";a:0:{}s:7:"fukuchi";a:0:{}s:6:"hakata";a:0:{}s:7:"higashi";a:0:{}s:8:"hirokawa";a:0:{}s:8:"hisayama";a:0:{}s:6:"iizuka";a:0:{}s:8:"inatsuki";a:0:{}s:4:"kaho";a:0:{}s:6:"kasuga";a:0:{}s:6:"kasuya";a:0:{}s:6:"kawara";a:0:{}s:6:"keisen";a:0:{}s:4:"koga";a:0:{}s:6:"kurate";a:0:{}s:6:"kurogi";a:0:{}s:6:"kurume";a:0:{}s:6:"minami";a:0:{}s:6:"miyako";a:0:{}s:6:"miyama";a:0:{}s:8:"miyawaka";a:0:{}s:8:"mizumaki";a:0:{}s:8:"munakata";a:0:{}s:8:"nakagawa";a:0:{}s:6:"nakama";a:0:{}s:5:"nishi";a:0:{}s:6:"nogata";a:0:{}s:5:"ogori";a:0:{}s:7:"okagaki";a:0:{}s:5:"okawa";a:0:{}s:3:"oki";a:0:{}s:5:"omuta";a:0:{}s:4:"onga";a:0:{}s:5:"onojo";a:0:{}s:3:"oto";a:0:{}s:7:"saigawa";a:0:{}s:8:"sasaguri";a:0:{}s:6:"shingu";a:0:{}s:13:"shinyoshitomi";a:0:{}s:6:"shonai";a:0:{}s:5:"soeda";a:0:{}s:3:"sue";a:0:{}s:9:"tachiarai";a:0:{}s:6:"tagawa";a:0:{}s:6:"takata";a:0:{}s:4:"toho";a:0:{}s:7:"toyotsu";a:0:{}s:6:"tsuiki";a:0:{}s:5:"ukiha";a:0:{}s:3:"umi";a:0:{}s:4:"usui";a:0:{}s:6:"yamada";a:0:{}s:4:"yame";a:0:{}s:8:"yanagawa";a:0:{}s:9:"yukuhashi";a:0:{}}s:9:"fukushima";a:51:{s:9:"aizubange";a:0:{}s:10:"aizumisato";a:0:{}s:13:"aizuwakamatsu";a:0:{}s:7:"asakawa";a:0:{}s:6:"bandai";a:0:{}s:4:"date";a:0:{}s:9:"fukushima";a:0:{}s:8:"furudono";a:0:{}s:6:"futaba";a:0:{}s:6:"hanawa";a:0:{}s:7:"higashi";a:0:{}s:6:"hirata";a:0:{}s:6:"hirono";a:0:{}s:6:"iitate";a:0:{}s:10:"inawashiro";a:0:{}s:8:"ishikawa";a:0:{}s:5:"iwaki";a:0:{}s:9:"izumizaki";a:0:{}s:10:"kagamiishi";a:0:{}s:8:"kaneyama";a:0:{}s:8:"kawamata";a:0:{}s:8:"kitakata";a:0:{}s:12:"kitashiobara";a:0:{}s:5:"koori";a:0:{}s:8:"koriyama";a:0:{}s:6:"kunimi";a:0:{}s:6:"miharu";a:0:{}s:7:"mishima";a:0:{}s:5:"namie";a:0:{}s:5:"nango";a:0:{}s:9:"nishiaizu";a:0:{}s:7:"nishigo";a:0:{}s:5:"okuma";a:0:{}s:7:"omotego";a:0:{}s:3:"ono";a:0:{}s:5:"otama";a:0:{}s:8:"samegawa";a:0:{}s:7:"shimogo";a:0:{}s:9:"shirakawa";a:0:{}s:5:"showa";a:0:{}s:4:"soma";a:0:{}s:8:"sukagawa";a:0:{}s:7:"taishin";a:0:{}s:8:"tamakawa";a:0:{}s:8:"tanagura";a:0:{}s:5:"tenei";a:0:{}s:6:"yabuki";a:0:{}s:6:"yamato";a:0:{}s:9:"yamatsuri";a:0:{}s:7:"yanaizu";a:0:{}s:6:"yugawa";a:0:{}}s:4:"gifu";a:38:{s:7:"anpachi";a:0:{}s:3:"ena";a:0:{}s:4:"gifu";a:0:{}s:5:"ginan";a:0:{}s:4:"godo";a:0:{}s:4:"gujo";a:0:{}s:7:"hashima";a:0:{}s:7:"hichiso";a:0:{}s:4:"hida";a:0:{}s:16:"higashishirakawa";a:0:{}s:7:"ibigawa";a:0:{}s:5:"ikeda";a:0:{}s:12:"kakamigahara";a:0:{}s:4:"kani";a:0:{}s:8:"kasahara";a:0:{}s:9:"kasamatsu";a:0:{}s:6:"kawaue";a:0:{}s:8:"kitagata";a:0:{}s:4:"mino";a:0:{}s:8:"minokamo";a:0:{}s:6:"mitake";a:0:{}s:8:"mizunami";a:0:{}s:6:"motosu";a:0:{}s:11:"nakatsugawa";a:0:{}s:5:"ogaki";a:0:{}s:8:"sakahogi";a:0:{}s:4:"seki";a:0:{}s:10:"sekigahara";a:0:{}s:9:"shirakawa";a:0:{}s:6:"tajimi";a:0:{}s:8:"takayama";a:0:{}s:5:"tarui";a:0:{}s:4:"toki";a:0:{}s:6:"tomika";a:0:{}s:8:"wanouchi";a:0:{}s:8:"yamagata";a:0:{}s:6:"yaotsu";a:0:{}s:4:"yoro";a:0:{}}s:5:"gunma";a:36:{s:6:"annaka";a:0:{}s:7:"chiyoda";a:0:{}s:7:"fujioka";a:0:{}s:15:"higashiagatsuma";a:0:{}s:7:"isesaki";a:0:{}s:7:"itakura";a:0:{}s:5:"kanna";a:0:{}s:5:"kanra";a:0:{}s:9:"katashina";a:0:{}s:6:"kawaba";a:0:{}s:5:"kiryu";a:0:{}s:7:"kusatsu";a:0:{}s:8:"maebashi";a:0:{}s:5:"meiwa";a:0:{}s:6:"midori";a:0:{}s:8:"minakami";a:0:{}s:10:"naganohara";a:0:{}s:8:"nakanojo";a:0:{}s:7:"nanmoku";a:0:{}s:6:"numata";a:0:{}s:6:"oizumi";a:0:{}s:3:"ora";a:0:{}s:3:"ota";a:0:{}s:9:"shibukawa";a:0:{}s:9:"shimonita";a:0:{}s:6:"shinto";a:0:{}s:5:"showa";a:0:{}s:8:"takasaki";a:0:{}s:8:"takayama";a:0:{}s:8:"tamamura";a:0:{}s:11:"tatebayashi";a:0:{}s:7:"tomioka";a:0:{}s:9:"tsukiyono";a:0:{}s:8:"tsumagoi";a:0:{}s:4:"ueno";a:0:{}s:8:"yoshioka";a:0:{}}s:9:"hiroshima";a:25:{s:9:"asaminami";a:0:{}s:5:"daiwa";a:0:{}s:7:"etajima";a:0:{}s:5:"fuchu";a:0:{}s:8:"fukuyama";a:0:{}s:11:"hatsukaichi";a:0:{}s:16:"higashihiroshima";a:0:{}s:5:"hongo";a:0:{}s:12:"jinsekikogen";a:0:{}s:5:"kaita";a:0:{}s:3:"kui";a:0:{}s:6:"kumano";a:0:{}s:4:"kure";a:0:{}s:6:"mihara";a:0:{}s:7:"miyoshi";a:0:{}s:4:"naka";a:0:{}s:8:"onomichi";a:0:{}s:13:"osakikamijima";a:0:{}s:5:"otake";a:0:{}s:4:"saka";a:0:{}s:4:"sera";a:0:{}s:9:"seranishi";a:0:{}s:8:"shinichi";a:0:{}s:7:"shobara";a:0:{}s:8:"takehara";a:0:{}}s:8:"hokkaido";a:142:{s:8:"abashiri";a:0:{}s:5:"abira";a:0:{}s:7:"aibetsu";a:0:{}s:7:"akabira";a:0:{}s:7:"akkeshi";a:0:{}s:9:"asahikawa";a:0:{}s:9:"ashibetsu";a:0:{}s:6:"ashoro";a:0:{}s:6:"assabu";a:0:{}s:6:"atsuma";a:0:{}s:5:"bibai";a:0:{}s:4:"biei";a:0:{}s:6:"bifuka";a:0:{}s:6:"bihoro";a:0:{}s:8:"biratori";a:0:{}s:11:"chippubetsu";a:0:{}s:7:"chitose";a:0:{}s:4:"date";a:0:{}s:6:"ebetsu";a:0:{}s:7:"embetsu";a:0:{}s:5:"eniwa";a:0:{}s:5:"erimo";a:0:{}s:4:"esan";a:0:{}s:6:"esashi";a:0:{}s:8:"fukagawa";a:0:{}s:9:"fukushima";a:0:{}s:6:"furano";a:0:{}s:8:"furubira";a:0:{}s:6:"haboro";a:0:{}s:8:"hakodate";a:0:{}s:12:"hamatonbetsu";a:0:{}s:6:"hidaka";a:0:{}s:13:"higashikagura";a:0:{}s:11:"higashikawa";a:0:{}s:5:"hiroo";a:0:{}s:7:"hokuryu";a:0:{}s:6:"hokuto";a:0:{}s:8:"honbetsu";a:0:{}s:9:"horokanai";a:0:{}s:8:"horonobe";a:0:{}s:5:"ikeda";a:0:{}s:7:"imakane";a:0:{}s:8:"ishikari";a:0:{}s:9:"iwamizawa";a:0:{}s:6:"iwanai";a:0:{}s:10:"kamifurano";a:0:{}s:8:"kamikawa";a:0:{}s:11:"kamishihoro";a:0:{}s:12:"kamisunagawa";a:0:{}s:8:"kamoenai";a:0:{}s:6:"kayabe";a:0:{}s:8:"kembuchi";a:0:{}s:7:"kikonai";a:0:{}s:9:"kimobetsu";a:0:{}s:13:"kitahiroshima";a:0:{}s:6:"kitami";a:0:{}s:8:"kiyosato";a:0:{}s:9:"koshimizu";a:0:{}s:8:"kunneppu";a:0:{}s:8:"kuriyama";a:0:{}s:12:"kuromatsunai";a:0:{}s:7:"kushiro";a:0:{}s:7:"kutchan";a:0:{}s:5:"kyowa";a:0:{}s:7:"mashike";a:0:{}s:8:"matsumae";a:0:{}s:6:"mikasa";a:0:{}s:12:"minamifurano";a:0:{}s:8:"mombetsu";a:0:{}s:8:"moseushi";a:0:{}s:6:"mukawa";a:0:{}s:7:"muroran";a:0:{}s:4:"naie";a:0:{}s:8:"nakagawa";a:0:{}s:12:"nakasatsunai";a:0:{}s:12:"nakatombetsu";a:0:{}s:5:"nanae";a:0:{}s:7:"nanporo";a:0:{}s:6:"nayoro";a:0:{}s:6:"nemuro";a:0:{}s:8:"niikappu";a:0:{}s:4:"niki";a:0:{}s:11:"nishiokoppe";a:0:{}s:11:"noboribetsu";a:0:{}s:6:"numata";a:0:{}s:7:"obihiro";a:0:{}s:5:"obira";a:0:{}s:5:"oketo";a:0:{}s:6:"okoppe";a:0:{}s:5:"otaru";a:0:{}s:5:"otobe";a:0:{}s:7:"otofuke";a:0:{}s:9:"otoineppu";a:0:{}s:4:"oumu";a:0:{}s:5:"ozora";a:0:{}s:5:"pippu";a:0:{}s:8:"rankoshi";a:0:{}s:5:"rebun";a:0:{}s:9:"rikubetsu";a:0:{}s:7:"rishiri";a:0:{}s:11:"rishirifuji";a:0:{}s:6:"saroma";a:0:{}s:9:"sarufutsu";a:0:{}s:8:"shakotan";a:0:{}s:5:"shari";a:0:{}s:8:"shibecha";a:0:{}s:8:"shibetsu";a:0:{}s:7:"shikabe";a:0:{}s:7:"shikaoi";a:0:{}s:9:"shimamaki";a:0:{}s:7:"shimizu";a:0:{}s:9:"shimokawa";a:0:{}s:12:"shinshinotsu";a:0:{}s:8:"shintoku";a:0:{}s:9:"shiranuka";a:0:{}s:7:"shiraoi";a:0:{}s:9:"shiriuchi";a:0:{}s:7:"sobetsu";a:0:{}s:8:"sunagawa";a:0:{}s:5:"taiki";a:0:{}s:6:"takasu";a:0:{}s:8:"takikawa";a:0:{}s:8:"takinoue";a:0:{}s:9:"teshikaga";a:0:{}s:7:"tobetsu";a:0:{}s:5:"tohma";a:0:{}s:9:"tomakomai";a:0:{}s:6:"tomari";a:0:{}s:4:"toya";a:0:{}s:6:"toyako";a:0:{}s:8:"toyotomi";a:0:{}s:7:"toyoura";a:0:{}s:8:"tsubetsu";a:0:{}s:9:"tsukigata";a:0:{}s:7:"urakawa";a:0:{}s:6:"urausu";a:0:{}s:4:"uryu";a:0:{}s:9:"utashinai";a:0:{}s:8:"wakkanai";a:0:{}s:7:"wassamu";a:0:{}s:6:"yakumo";a:0:{}s:6:"yoichi";a:0:{}}s:5:"hyogo";a:46:{s:4:"aioi";a:0:{}s:6:"akashi";a:0:{}s:3:"ako";a:0:{}s:9:"amagasaki";a:0:{}s:6:"aogaki";a:0:{}s:5:"asago";a:0:{}s:6:"ashiya";a:0:{}s:5:"awaji";a:0:{}s:8:"fukusaki";a:0:{}s:7:"goshiki";a:0:{}s:6:"harima";a:0:{}s:6:"himeji";a:0:{}s:8:"ichikawa";a:0:{}s:7:"inagawa";a:0:{}s:5:"itami";a:0:{}s:8:"kakogawa";a:0:{}s:8:"kamigori";a:0:{}s:8:"kamikawa";a:0:{}s:5:"kasai";a:0:{}s:6:"kasuga";a:0:{}s:9:"kawanishi";a:0:{}s:4:"miki";a:0:{}s:11:"minamiawaji";a:0:{}s:11:"nishinomiya";a:0:{}s:9:"nishiwaki";a:0:{}s:3:"ono";a:0:{}s:5:"sanda";a:0:{}s:6:"sannan";a:0:{}s:8:"sasayama";a:0:{}s:4:"sayo";a:0:{}s:6:"shingu";a:0:{}s:9:"shinonsen";a:0:{}s:5:"shiso";a:0:{}s:6:"sumoto";a:0:{}s:6:"taishi";a:0:{}s:4:"taka";a:0:{}s:10:"takarazuka";a:0:{}s:8:"takasago";a:0:{}s:6:"takino";a:0:{}s:5:"tamba";a:0:{}s:7:"tatsuno";a:0:{}s:7:"toyooka";a:0:{}s:4:"yabu";a:0:{}s:7:"yashiro";a:0:{}s:4:"yoka";a:0:{}s:6:"yokawa";a:0:{}}s:7:"ibaraki";a:51:{s:3:"ami";a:0:{}s:5:"asahi";a:0:{}s:5:"bando";a:0:{}s:8:"chikusei";a:0:{}s:5:"daigo";a:0:{}s:9:"fujishiro";a:0:{}s:7:"hitachi";a:0:{}s:11:"hitachinaka";a:0:{}s:12:"hitachiomiya";a:0:{}s:10:"hitachiota";a:0:{}s:7:"ibaraki";a:0:{}s:3:"ina";a:0:{}s:8:"inashiki";a:0:{}s:5:"itako";a:0:{}s:5:"iwama";a:0:{}s:4:"joso";a:0:{}s:6:"kamisu";a:0:{}s:6:"kasama";a:0:{}s:7:"kashima";a:0:{}s:11:"kasumigaura";a:0:{}s:4:"koga";a:0:{}s:4:"miho";a:0:{}s:4:"mito";a:0:{}s:6:"moriya";a:0:{}s:4:"naka";a:0:{}s:8:"namegata";a:0:{}s:5:"oarai";a:0:{}s:5:"ogawa";a:0:{}s:7:"omitama";a:0:{}s:9:"ryugasaki";a:0:{}s:5:"sakai";a:0:{}s:10:"sakuragawa";a:0:{}s:9:"shimodate";a:0:{}s:10:"shimotsuma";a:0:{}s:9:"shirosato";a:0:{}s:4:"sowa";a:0:{}s:5:"suifu";a:0:{}s:8:"takahagi";a:0:{}s:11:"tamatsukuri";a:0:{}s:5:"tokai";a:0:{}s:6:"tomobe";a:0:{}s:4:"tone";a:0:{}s:6:"toride";a:0:{}s:9:"tsuchiura";a:0:{}s:7:"tsukuba";a:0:{}s:8:"uchihara";a:0:{}s:6:"ushiku";a:0:{}s:7:"yachiyo";a:0:{}s:8:"yamagata";a:0:{}s:6:"yawara";a:0:{}s:4:"yuki";a:0:{}}s:8:"ishikawa";a:19:{s:7:"anamizu";a:0:{}s:5:"hakui";a:0:{}s:7:"hakusan";a:0:{}s:4:"kaga";a:0:{}s:6:"kahoku";a:0:{}s:8:"kanazawa";a:0:{}s:8:"kawakita";a:0:{}s:7:"komatsu";a:0:{}s:8:"nakanoto";a:0:{}s:5:"nanao";a:0:{}s:4:"nomi";a:0:{}s:8:"nonoichi";a:0:{}s:4:"noto";a:0:{}s:5:"shika";a:0:{}s:4:"suzu";a:0:{}s:7:"tsubata";a:0:{}s:7:"tsurugi";a:0:{}s:8:"uchinada";a:0:{}s:6:"wajima";a:0:{}}s:5:"iwate";a:34:{s:5:"fudai";a:0:{}s:8:"fujisawa";a:0:{}s:8:"hanamaki";a:0:{}s:9:"hiraizumi";a:0:{}s:6:"hirono";a:0:{}s:8:"ichinohe";a:0:{}s:10:"ichinoseki";a:0:{}s:8:"iwaizumi";a:0:{}s:5:"iwate";a:0:{}s:6:"joboji";a:0:{}s:8:"kamaishi";a:0:{}s:10:"kanegasaki";a:0:{}s:7:"karumai";a:0:{}s:5:"kawai";a:0:{}s:8:"kitakami";a:0:{}s:4:"kuji";a:0:{}s:6:"kunohe";a:0:{}s:8:"kuzumaki";a:0:{}s:6:"miyako";a:0:{}s:8:"mizusawa";a:0:{}s:7:"morioka";a:0:{}s:6:"ninohe";a:0:{}s:4:"noda";a:0:{}s:7:"ofunato";a:0:{}s:4:"oshu";a:0:{}s:7:"otsuchi";a:0:{}s:13:"rikuzentakata";a:0:{}s:5:"shiwa";a:0:{}s:11:"shizukuishi";a:0:{}s:6:"sumita";a:0:{}s:8:"tanohata";a:0:{}s:4:"tono";a:0:{}s:6:"yahaba";a:0:{}s:6:"yamada";a:0:{}}s:6:"kagawa";a:15:{s:7:"ayagawa";a:0:{}s:13:"higashikagawa";a:0:{}s:7:"kanonji";a:0:{}s:8:"kotohira";a:0:{}s:5:"manno";a:0:{}s:8:"marugame";a:0:{}s:6:"mitoyo";a:0:{}s:8:"naoshima";a:0:{}s:6:"sanuki";a:0:{}s:7:"tadotsu";a:0:{}s:9:"takamatsu";a:0:{}s:7:"tonosho";a:0:{}s:8:"uchinomi";a:0:{}s:5:"utazu";a:0:{}s:8:"zentsuji";a:0:{}}s:9:"kagoshima";a:20:{s:5:"akune";a:0:{}s:5:"amami";a:0:{}s:5:"hioki";a:0:{}s:3:"isa";a:0:{}s:4:"isen";a:0:{}s:5:"izumi";a:0:{}s:9:"kagoshima";a:0:{}s:6:"kanoya";a:0:{}s:8:"kawanabe";a:0:{}s:5:"kinko";a:0:{}s:7:"kouyama";a:0:{}s:10:"makurazaki";a:0:{}s:9:"matsumoto";a:0:{}s:10:"minamitane";a:0:{}s:8:"nakatane";a:0:{}s:12:"nishinoomote";a:0:{}s:13:"satsumasendai";a:0:{}s:3:"soo";a:0:{}s:8:"tarumizu";a:0:{}s:5:"yusui";a:0:{}}s:8:"kanagawa";a:30:{s:6:"aikawa";a:0:{}s:6:"atsugi";a:0:{}s:5:"ayase";a:0:{}s:9:"chigasaki";a:0:{}s:5:"ebina";a:0:{}s:8:"fujisawa";a:0:{}s:6:"hadano";a:0:{}s:6:"hakone";a:0:{}s:9:"hiratsuka";a:0:{}s:7:"isehara";a:0:{}s:6:"kaisei";a:0:{}s:8:"kamakura";a:0:{}s:8:"kiyokawa";a:0:{}s:7:"matsuda";a:0:{}s:14:"minamiashigara";a:0:{}s:5:"miura";a:0:{}s:5:"nakai";a:0:{}s:8:"ninomiya";a:0:{}s:7:"odawara";a:0:{}s:2:"oi";a:0:{}s:4:"oiso";a:0:{}s:10:"sagamihara";a:0:{}s:8:"samukawa";a:0:{}s:6:"tsukui";a:0:{}s:8:"yamakita";a:0:{}s:6:"yamato";a:0:{}s:8:"yokosuka";a:0:{}s:8:"yugawara";a:0:{}s:4:"zama";a:0:{}s:5:"zushi";a:0:{}}s:5:"kochi";a:31:{s:3:"aki";a:0:{}s:6:"geisei";a:0:{}s:6:"hidaka";a:0:{}s:12:"higashitsuno";a:0:{}s:3:"ino";a:0:{}s:6:"kagami";a:0:{}s:4:"kami";a:0:{}s:8:"kitagawa";a:0:{}s:5:"kochi";a:0:{}s:6:"mihara";a:0:{}s:8:"motoyama";a:0:{}s:6:"muroto";a:0:{}s:6:"nahari";a:0:{}s:8:"nakamura";a:0:{}s:7:"nankoku";a:0:{}s:9:"nishitosa";a:0:{}s:10:"niyodogawa";a:0:{}s:4:"ochi";a:0:{}s:5:"okawa";a:0:{}s:5:"otoyo";a:0:{}s:6:"otsuki";a:0:{}s:6:"sakawa";a:0:{}s:6:"sukumo";a:0:{}s:6:"susaki";a:0:{}s:4:"tosa";a:0:{}s:11:"tosashimizu";a:0:{}s:4:"toyo";a:0:{}s:5:"tsuno";a:0:{}s:5:"umaji";a:0:{}s:6:"yasuda";a:0:{}s:8:"yusuhara";a:0:{}}s:8:"kumamoto";a:23:{s:7:"amakusa";a:0:{}s:4:"arao";a:0:{}s:3:"aso";a:0:{}s:5:"choyo";a:0:{}s:7:"gyokuto";a:0:{}s:11:"kamiamakusa";a:0:{}s:7:"kikuchi";a:0:{}s:8:"kumamoto";a:0:{}s:7:"mashiki";a:0:{}s:6:"mifune";a:0:{}s:8:"minamata";a:0:{}s:11:"minamioguni";a:0:{}s:6:"nagasu";a:0:{}s:9:"nishihara";a:0:{}s:5:"oguni";a:0:{}s:3:"ozu";a:0:{}s:6:"sumoto";a:0:{}s:8:"takamori";a:0:{}s:3:"uki";a:0:{}s:3:"uto";a:0:{}s:6:"yamaga";a:0:{}s:6:"yamato";a:0:{}s:10:"yatsushiro";a:0:{}}s:5:"kyoto";a:31:{s:5:"ayabe";a:0:{}s:11:"fukuchiyama";a:0:{}s:11:"higashiyama";a:0:{}s:3:"ide";a:0:{}s:3:"ine";a:0:{}s:4:"joyo";a:0:{}s:7:"kameoka";a:0:{}s:4:"kamo";a:0:{}s:4:"kita";a:0:{}s:4:"kizu";a:0:{}s:8:"kumiyama";a:0:{}s:8:"kyotamba";a:0:{}s:9:"kyotanabe";a:0:{}s:8:"kyotango";a:0:{}s:7:"maizuru";a:0:{}s:6:"minami";a:0:{}s:15:"minamiyamashiro";a:0:{}s:6:"miyazu";a:0:{}s:4:"muko";a:0:{}s:10:"nagaokakyo";a:0:{}s:7:"nakagyo";a:0:{}s:6:"nantan";a:0:{}s:9:"oyamazaki";a:0:{}s:5:"sakyo";a:0:{}s:5:"seika";a:0:{}s:6:"tanabe";a:0:{}s:3:"uji";a:0:{}s:9:"ujitawara";a:0:{}s:6:"wazuka";a:0:{}s:9:"yamashina";a:0:{}s:6:"yawata";a:0:{}}s:3:"mie";a:30:{s:5:"asahi";a:0:{}s:5:"inabe";a:0:{}s:3:"ise";a:0:{}s:8:"kameyama";a:0:{}s:7:"kawagoe";a:0:{}s:4:"kiho";a:0:{}s:8:"kisosaki";a:0:{}s:4:"kiwa";a:0:{}s:6:"komono";a:0:{}s:6:"kumano";a:0:{}s:6:"kuwana";a:0:{}s:9:"matsusaka";a:0:{}s:5:"meiwa";a:0:{}s:6:"mihama";a:0:{}s:9:"minamiise";a:0:{}s:6:"misugi";a:0:{}s:6:"miyama";a:0:{}s:6:"nabari";a:0:{}s:5:"shima";a:0:{}s:6:"suzuka";a:0:{}s:4:"tado";a:0:{}s:5:"taiki";a:0:{}s:4:"taki";a:0:{}s:6:"tamaki";a:0:{}s:4:"toba";a:0:{}s:3:"tsu";a:0:{}s:5:"udono";a:0:{}s:8:"ureshino";a:0:{}s:7:"watarai";a:0:{}s:9:"yokkaichi";a:0:{}}s:6:"miyagi";a:32:{s:8:"furukawa";a:0:{}s:17:"higashimatsushima";a:0:{}s:10:"ishinomaki";a:0:{}s:7:"iwanuma";a:0:{}s:6:"kakuda";a:0:{}s:4:"kami";a:0:{}s:8:"kawasaki";a:0:{}s:8:"marumori";a:0:{}s:10:"matsushima";a:0:{}s:13:"minamisanriku";a:0:{}s:6:"misato";a:0:{}s:6:"murata";a:0:{}s:6:"natori";a:0:{}s:7:"ogawara";a:0:{}s:5:"ohira";a:0:{}s:7:"onagawa";a:0:{}s:5:"osaki";a:0:{}s:4:"rifu";a:0:{}s:6:"semine";a:0:{}s:7:"shibata";a:0:{}s:13:"shichikashuku";a:0:{}s:7:"shikama";a:0:{}s:8:"shiogama";a:0:{}s:9:"shiroishi";a:0:{}s:6:"tagajo";a:0:{}s:5:"taiwa";a:0:{}s:4:"tome";a:0:{}s:6:"tomiya";a:0:{}s:6:"wakuya";a:0:{}s:6:"watari";a:0:{}s:8:"yamamoto";a:0:{}s:3:"zao";a:0:{}}s:8:"miyazaki";a:27:{s:3:"aya";a:0:{}s:5:"ebino";a:0:{}s:6:"gokase";a:0:{}s:5:"hyuga";a:0:{}s:8:"kadogawa";a:0:{}s:10:"kawaminami";a:0:{}s:4:"kijo";a:0:{}s:8:"kitagawa";a:0:{}s:8:"kitakata";a:0:{}s:7:"kitaura";a:0:{}s:9:"kobayashi";a:0:{}s:8:"kunitomi";a:0:{}s:7:"kushima";a:0:{}s:6:"mimata";a:0:{}s:10:"miyakonojo";a:0:{}s:8:"miyazaki";a:0:{}s:9:"morotsuka";a:0:{}s:8:"nichinan";a:0:{}s:9:"nishimera";a:0:{}s:7:"nobeoka";a:0:{}s:5:"saito";a:0:{}s:6:"shiiba";a:0:{}s:8:"shintomi";a:0:{}s:8:"takaharu";a:0:{}s:8:"takanabe";a:0:{}s:8:"takazaki";a:0:{}s:5:"tsuno";a:0:{}}s:6:"nagano";a:75:{s:4:"achi";a:0:{}s:8:"agematsu";a:0:{}s:4:"anan";a:0:{}s:4:"aoki";a:0:{}s:5:"asahi";a:0:{}s:7:"azumino";a:0:{}s:9:"chikuhoku";a:0:{}s:7:"chikuma";a:0:{}s:5:"chino";a:0:{}s:6:"fujimi";a:0:{}s:6:"hakuba";a:0:{}s:4:"hara";a:0:{}s:6:"hiraya";a:0:{}s:4:"iida";a:0:{}s:6:"iijima";a:0:{}s:6:"iiyama";a:0:{}s:6:"iizuna";a:0:{}s:5:"ikeda";a:0:{}s:7:"ikusaka";a:0:{}s:3:"ina";a:0:{}s:9:"karuizawa";a:0:{}s:8:"kawakami";a:0:{}s:4:"kiso";a:0:{}s:13:"kisofukushima";a:0:{}s:8:"kitaaiki";a:0:{}s:8:"komagane";a:0:{}s:6:"komoro";a:0:{}s:9:"matsukawa";a:0:{}s:9:"matsumoto";a:0:{}s:5:"miasa";a:0:{}s:10:"minamiaiki";a:0:{}s:10:"minamimaki";a:0:{}s:12:"minamiminowa";a:0:{}s:6:"minowa";a:0:{}s:6:"miyada";a:0:{}s:6:"miyota";a:0:{}s:9:"mochizuki";a:0:{}s:6:"nagano";a:0:{}s:6:"nagawa";a:0:{}s:6:"nagiso";a:0:{}s:8:"nakagawa";a:0:{}s:6:"nakano";a:0:{}s:11:"nozawaonsen";a:0:{}s:5:"obuse";a:0:{}s:5:"ogawa";a:0:{}s:5:"okaya";a:0:{}s:6:"omachi";a:0:{}s:3:"omi";a:0:{}s:6:"ookuwa";a:0:{}s:7:"ooshika";a:0:{}s:5:"otaki";a:0:{}s:5:"otari";a:0:{}s:5:"sakae";a:0:{}s:6:"sakaki";a:0:{}s:4:"saku";a:0:{}s:6:"sakuho";a:0:{}s:9:"shimosuwa";a:0:{}s:12:"shinanomachi";a:0:{}s:8:"shiojiri";a:0:{}s:4:"suwa";a:0:{}s:6:"suzaka";a:0:{}s:6:"takagi";a:0:{}s:8:"takamori";a:0:{}s:8:"takayama";a:0:{}s:9:"tateshina";a:0:{}s:7:"tatsuno";a:0:{}s:9:"togakushi";a:0:{}s:6:"togura";a:0:{}s:4:"tomi";a:0:{}s:4:"ueda";a:0:{}s:4:"wada";a:0:{}s:8:"yamagata";a:0:{}s:10:"yamanouchi";a:0:{}s:6:"yasaka";a:0:{}s:7:"yasuoka";a:0:{}}s:8:"nagasaki";a:22:{s:7:"chijiwa";a:0:{}s:5:"futsu";a:0:{}s:4:"goto";a:0:{}s:6:"hasami";a:0:{}s:6:"hirado";a:0:{}s:3:"iki";a:0:{}s:7:"isahaya";a:0:{}s:8:"kawatana";a:0:{}s:10:"kuchinotsu";a:0:{}s:8:"matsuura";a:0:{}s:8:"nagasaki";a:0:{}s:5:"obama";a:0:{}s:5:"omura";a:0:{}s:5:"oseto";a:0:{}s:6:"saikai";a:0:{}s:6:"sasebo";a:0:{}s:5:"seihi";a:0:{}s:9:"shimabara";a:0:{}s:12:"shinkamigoto";a:0:{}s:7:"togitsu";a:0:{}s:8:"tsushima";a:0:{}s:5:"unzen";a:0:{}}s:4:"nara";a:38:{s:4:"ando";a:0:{}s:4:"gose";a:0:{}s:6:"heguri";a:0:{}s:14:"higashiyoshino";a:0:{}s:7:"ikaruga";a:0:{}s:5:"ikoma";a:0:{}s:12:"kamikitayama";a:0:{}s:7:"kanmaki";a:0:{}s:7:"kashiba";a:0:{}s:9:"kashihara";a:0:{}s:9:"katsuragi";a:0:{}s:5:"kawai";a:0:{}s:8:"kawakami";a:0:{}s:9:"kawanishi";a:0:{}s:5:"koryo";a:0:{}s:8:"kurotaki";a:0:{}s:6:"mitsue";a:0:{}s:6:"miyake";a:0:{}s:4:"nara";a:0:{}s:8:"nosegawa";a:0:{}s:3:"oji";a:0:{}s:4:"ouda";a:0:{}s:5:"oyodo";a:0:{}s:7:"sakurai";a:0:{}s:5:"sango";a:0:{}s:9:"shimoichi";a:0:{}s:13:"shimokitayama";a:0:{}s:6:"shinjo";a:0:{}s:4:"soni";a:0:{}s:8:"takatori";a:0:{}s:10:"tawaramoto";a:0:{}s:7:"tenkawa";a:0:{}s:5:"tenri";a:0:{}s:3:"uda";a:0:{}s:14:"yamatokoriyama";a:0:{}s:12:"yamatotakada";a:0:{}s:7:"yamazoe";a:0:{}s:7:"yoshino";a:0:{}}s:7:"niigata";a:34:{s:3:"aga";a:0:{}s:5:"agano";a:0:{}s:5:"gosen";a:0:{}s:8:"itoigawa";a:0:{}s:9:"izumozaki";a:0:{}s:6:"joetsu";a:0:{}s:4:"kamo";a:0:{}s:6:"kariwa";a:0:{}s:11:"kashiwazaki";a:0:{}s:12:"minamiuonuma";a:0:{}s:7:"mitsuke";a:0:{}s:5:"muika";a:0:{}s:8:"murakami";a:0:{}s:5:"myoko";a:0:{}s:7:"nagaoka";a:0:{}s:7:"niigata";a:0:{}s:5:"ojiya";a:0:{}s:3:"omi";a:0:{}s:4:"sado";a:0:{}s:5:"sanjo";a:0:{}s:5:"seiro";a:0:{}s:6:"seirou";a:0:{}s:8:"sekikawa";a:0:{}s:7:"shibata";a:0:{}s:6:"tagami";a:0:{}s:6:"tainai";a:0:{}s:6:"tochio";a:0:{}s:9:"tokamachi";a:0:{}s:7:"tsubame";a:0:{}s:6:"tsunan";a:0:{}s:6:"uonuma";a:0:{}s:6:"yahiko";a:0:{}s:5:"yoita";a:0:{}s:6:"yuzawa";a:0:{}}s:4:"oita";a:19:{s:5:"beppu";a:0:{}s:8:"bungoono";a:0:{}s:11:"bungotakada";a:0:{}s:6:"hasama";a:0:{}s:4:"hiji";a:0:{}s:9:"himeshima";a:0:{}s:4:"hita";a:0:{}s:8:"kamitsue";a:0:{}s:7:"kokonoe";a:0:{}s:4:"kuju";a:0:{}s:8:"kunisaki";a:0:{}s:4:"kusu";a:0:{}s:4:"oita";a:0:{}s:5:"saiki";a:0:{}s:6:"taketa";a:0:{}s:7:"tsukumi";a:0:{}s:3:"usa";a:0:{}s:5:"usuki";a:0:{}s:4:"yufu";a:0:{}}s:7:"okayama";a:26:{s:6:"akaiwa";a:0:{}s:8:"asakuchi";a:0:{}s:5:"bizen";a:0:{}s:9:"hayashima";a:0:{}s:5:"ibara";a:0:{}s:8:"kagamino";a:0:{}s:7:"kasaoka";a:0:{}s:8:"kibichuo";a:0:{}s:7:"kumenan";a:0:{}s:9:"kurashiki";a:0:{}s:6:"maniwa";a:0:{}s:6:"misaki";a:0:{}s:4:"nagi";a:0:{}s:5:"niimi";a:0:{}s:12:"nishiawakura";a:0:{}s:7:"okayama";a:0:{}s:7:"satosho";a:0:{}s:8:"setouchi";a:0:{}s:6:"shinjo";a:0:{}s:4:"shoo";a:0:{}s:4:"soja";a:0:{}s:9:"takahashi";a:0:{}s:6:"tamano";a:0:{}s:7:"tsuyama";a:0:{}s:4:"wake";a:0:{}s:6:"yakage";a:0:{}}s:7:"okinawa";a:42:{s:5:"aguni";a:0:{}s:7:"ginowan";a:0:{}s:6:"ginoza";a:0:{}s:9:"gushikami";a:0:{}s:7:"haebaru";a:0:{}s:7:"higashi";a:0:{}s:6:"hirara";a:0:{}s:5:"iheya";a:0:{}s:8:"ishigaki";a:0:{}s:8:"ishikawa";a:0:{}s:6:"itoman";a:0:{}s:5:"izena";a:0:{}s:6:"kadena";a:0:{}s:3:"kin";a:0:{}s:9:"kitadaito";a:0:{}s:14:"kitanakagusuku";a:0:{}s:8:"kumejima";a:0:{}s:8:"kunigami";a:0:{}s:11:"minamidaito";a:0:{}s:6:"motobu";a:0:{}s:4:"nago";a:0:{}s:4:"naha";a:0:{}s:10:"nakagusuku";a:0:{}s:7:"nakijin";a:0:{}s:5:"nanjo";a:0:{}s:9:"nishihara";a:0:{}s:5:"ogimi";a:0:{}s:7:"okinawa";a:0:{}s:4:"onna";a:0:{}s:7:"shimoji";a:0:{}s:8:"taketomi";a:0:{}s:6:"tarama";a:0:{}s:9:"tokashiki";a:0:{}s:10:"tomigusuku";a:0:{}s:6:"tonaki";a:0:{}s:6:"urasoe";a:0:{}s:5:"uruma";a:0:{}s:5:"yaese";a:0:{}s:7:"yomitan";a:0:{}s:8:"yonabaru";a:0:{}s:8:"yonaguni";a:0:{}s:6:"zamami";a:0:{}}s:5:"osaka";a:50:{s:5:"abeno";a:0:{}s:14:"chihayaakasaka";a:0:{}s:4:"chuo";a:0:{}s:5:"daito";a:0:{}s:9:"fujiidera";a:0:{}s:8:"habikino";a:0:{}s:6:"hannan";a:0:{}s:12:"higashiosaka";a:0:{}s:16:"higashisumiyoshi";a:0:{}s:15:"higashiyodogawa";a:0:{}s:8:"hirakata";a:0:{}s:7:"ibaraki";a:0:{}s:5:"ikeda";a:0:{}s:5:"izumi";a:0:{}s:9:"izumiotsu";a:0:{}s:9:"izumisano";a:0:{}s:6:"kadoma";a:0:{}s:7:"kaizuka";a:0:{}s:5:"kanan";a:0:{}s:9:"kashiwara";a:0:{}s:6:"katano";a:0:{}s:13:"kawachinagano";a:0:{}s:9:"kishiwada";a:0:{}s:4:"kita";a:0:{}s:8:"kumatori";a:0:{}s:9:"matsubara";a:0:{}s:6:"minato";a:0:{}s:5:"minoh";a:0:{}s:6:"misaki";a:0:{}s:9:"moriguchi";a:0:{}s:8:"neyagawa";a:0:{}s:5:"nishi";a:0:{}s:4:"nose";a:0:{}s:11:"osakasayama";a:0:{}s:5:"sakai";a:0:{}s:6:"sayama";a:0:{}s:6:"sennan";a:0:{}s:6:"settsu";a:0:{}s:11:"shijonawate";a:0:{}s:9:"shimamoto";a:0:{}s:5:"suita";a:0:{}s:7:"tadaoka";a:0:{}s:6:"taishi";a:0:{}s:6:"tajiri";a:0:{}s:8:"takaishi";a:0:{}s:9:"takatsuki";a:0:{}s:12:"tondabayashi";a:0:{}s:8:"toyonaka";a:0:{}s:6:"toyono";a:0:{}s:3:"yao";a:0:{}}s:4:"saga";a:26:{s:6:"ariake";a:0:{}s:5:"arita";a:0:{}s:8:"fukudomi";a:0:{}s:6:"genkai";a:0:{}s:8:"hamatama";a:0:{}s:5:"hizen";a:0:{}s:5:"imari";a:0:{}s:8:"kamimine";a:0:{}s:7:"kanzaki";a:0:{}s:7:"karatsu";a:0:{}s:7:"kashima";a:0:{}s:8:"kitagata";a:0:{}s:8:"kitahata";a:0:{}s:6:"kiyama";a:0:{}s:7:"kouhoku";a:0:{}s:7:"kyuragi";a:0:{}s:10:"nishiarita";a:0:{}s:3:"ogi";a:0:{}s:6:"omachi";a:0:{}s:5:"ouchi";a:0:{}s:4:"saga";a:0:{}s:9:"shiroishi";a:0:{}s:4:"taku";a:0:{}s:4:"tara";a:0:{}s:4:"tosu";a:0:{}s:11:"yoshinogari";a:0:{}}s:7:"saitama";a:69:{s:7:"arakawa";a:0:{}s:5:"asaka";a:0:{}s:8:"chichibu";a:0:{}s:6:"fujimi";a:0:{}s:8:"fujimino";a:0:{}s:6:"fukaya";a:0:{}s:5:"hanno";a:0:{}s:5:"hanyu";a:0:{}s:6:"hasuda";a:0:{}s:8:"hatogaya";a:0:{}s:8:"hatoyama";a:0:{}s:6:"hidaka";a:0:{}s:15:"higashichichibu";a:0:{}s:16:"higashimatsuyama";a:0:{}s:5:"honjo";a:0:{}s:3:"ina";a:0:{}s:5:"iruma";a:0:{}s:8:"iwatsuki";a:0:{}s:9:"kamiizumi";a:0:{}s:8:"kamikawa";a:0:{}s:8:"kamisato";a:0:{}s:8:"kasukabe";a:0:{}s:7:"kawagoe";a:0:{}s:9:"kawaguchi";a:0:{}s:8:"kawajima";a:0:{}s:4:"kazo";a:0:{}s:8:"kitamoto";a:0:{}s:9:"koshigaya";a:0:{}s:7:"kounosu";a:0:{}s:4:"kuki";a:0:{}s:8:"kumagaya";a:0:{}s:10:"matsubushi";a:0:{}s:6:"minano";a:0:{}s:6:"misato";a:0:{}s:9:"miyashiro";a:0:{}s:7:"miyoshi";a:0:{}s:8:"moroyama";a:0:{}s:8:"nagatoro";a:0:{}s:8:"namegawa";a:0:{}s:5:"niiza";a:0:{}s:5:"ogano";a:0:{}s:5:"ogawa";a:0:{}s:5:"ogose";a:0:{}s:7:"okegawa";a:0:{}s:5:"omiya";a:0:{}s:5:"otaki";a:0:{}s:6:"ranzan";a:0:{}s:7:"ryokami";a:0:{}s:7:"saitama";a:0:{}s:6:"sakado";a:0:{}s:5:"satte";a:0:{}s:6:"sayama";a:0:{}s:5:"shiki";a:0:{}s:8:"shiraoka";a:0:{}s:4:"soka";a:0:{}s:6:"sugito";a:0:{}s:4:"toda";a:0:{}s:8:"tokigawa";a:0:{}s:10:"tokorozawa";a:0:{}s:12:"tsurugashima";a:0:{}s:5:"urawa";a:0:{}s:6:"warabi";a:0:{}s:6:"yashio";a:0:{}s:6:"yokoze";a:0:{}s:4:"yono";a:0:{}s:5:"yorii";a:0:{}s:7:"yoshida";a:0:{}s:9:"yoshikawa";a:0:{}s:7:"yoshimi";a:0:{}}s:5:"shiga";a:23:{s:5:"aisho";a:0:{}s:4:"gamo";a:0:{}s:10:"higashiomi";a:0:{}s:6:"hikone";a:0:{}s:4:"koka";a:0:{}s:5:"konan";a:0:{}s:5:"kosei";a:0:{}s:4:"koto";a:0:{}s:7:"kusatsu";a:0:{}s:7:"maibara";a:0:{}s:8:"moriyama";a:0:{}s:8:"nagahama";a:0:{}s:9:"nishiazai";a:0:{}s:8:"notogawa";a:0:{}s:11:"omihachiman";a:0:{}s:4:"otsu";a:0:{}s:5:"ritto";a:0:{}s:5:"ryuoh";a:0:{}s:9:"takashima";a:0:{}s:9:"takatsuki";a:0:{}s:8:"torahime";a:0:{}s:8:"toyosato";a:0:{}s:4:"yasu";a:0:{}}s:7:"shimane";a:23:{s:5:"akagi";a:0:{}s:3:"ama";a:0:{}s:5:"gotsu";a:0:{}s:6:"hamada";a:0:{}s:12:"higashiizumo";a:0:{}s:6:"hikawa";a:0:{}s:6:"hikimi";a:0:{}s:5:"izumo";a:0:{}s:8:"kakinoki";a:0:{}s:6:"masuda";a:0:{}s:6:"matsue";a:0:{}s:6:"misato";a:0:{}s:12:"nishinoshima";a:0:{}s:4:"ohda";a:0:{}s:10:"okinoshima";a:0:{}s:8:"okuizumo";a:0:{}s:7:"shimane";a:0:{}s:6:"tamayu";a:0:{}s:7:"tsuwano";a:0:{}s:5:"unnan";a:0:{}s:6:"yakumo";a:0:{}s:6:"yasugi";a:0:{}s:7:"yatsuka";a:0:{}}s:8:"shizuoka";a:36:{s:4:"arai";a:0:{}s:5:"atami";a:0:{}s:4:"fuji";a:0:{}s:7:"fujieda";a:0:{}s:8:"fujikawa";a:0:{}s:10:"fujinomiya";a:0:{}s:7:"fukuroi";a:0:{}s:7:"gotemba";a:0:{}s:7:"haibara";a:0:{}s:9:"hamamatsu";a:0:{}s:10:"higashiizu";a:0:{}s:3:"ito";a:0:{}s:5:"iwata";a:0:{}s:3:"izu";a:0:{}s:9:"izunokuni";a:0:{}s:8:"kakegawa";a:0:{}s:7:"kannami";a:0:{}s:9:"kawanehon";a:0:{}s:6:"kawazu";a:0:{}s:8:"kikugawa";a:0:{}s:5:"kosai";a:0:{}s:10:"makinohara";a:0:{}s:9:"matsuzaki";a:0:{}s:9:"minamiizu";a:0:{}s:7:"mishima";a:0:{}s:9:"morimachi";a:0:{}s:8:"nishiizu";a:0:{}s:6:"numazu";a:0:{}s:8:"omaezaki";a:0:{}s:7:"shimada";a:0:{}s:7:"shimizu";a:0:{}s:7:"shimoda";a:0:{}s:8:"shizuoka";a:0:{}s:6:"susono";a:0:{}s:5:"yaizu";a:0:{}s:7:"yoshida";a:0:{}}s:7:"tochigi";a:31:{s:8:"ashikaga";a:0:{}s:4:"bato";a:0:{}s:4:"haga";a:0:{}s:7:"ichikai";a:0:{}s:7:"iwafune";a:0:{}s:10:"kaminokawa";a:0:{}s:6:"kanuma";a:0:{}s:10:"karasuyama";a:0:{}s:7:"kuroiso";a:0:{}s:7:"mashiko";a:0:{}s:4:"mibu";a:0:{}s:4:"moka";a:0:{}s:6:"motegi";a:0:{}s:4:"nasu";a:0:{}s:12:"nasushiobara";a:0:{}s:5:"nikko";a:0:{}s:9:"nishikata";a:0:{}s:4:"nogi";a:0:{}s:5:"ohira";a:0:{}s:8:"ohtawara";a:0:{}s:5:"oyama";a:0:{}s:6:"sakura";a:0:{}s:4:"sano";a:0:{}s:10:"shimotsuke";a:0:{}s:6:"shioya";a:0:{}s:10:"takanezawa";a:0:{}s:7:"tochigi";a:0:{}s:5:"tsuga";a:0:{}s:5:"ujiie";a:0:{}s:10:"utsunomiya";a:0:{}s:5:"yaita";a:0:{}}s:9:"tokushima";a:17:{s:6:"aizumi";a:0:{}s:4:"anan";a:0:{}s:6:"ichiba";a:0:{}s:5:"itano";a:0:{}s:6:"kainan";a:0:{}s:12:"komatsushima";a:0:{}s:10:"matsushige";a:0:{}s:4:"mima";a:0:{}s:6:"minami";a:0:{}s:7:"miyoshi";a:0:{}s:4:"mugi";a:0:{}s:8:"nakagawa";a:0:{}s:6:"naruto";a:0:{}s:9:"sanagochi";a:0:{}s:9:"shishikui";a:0:{}s:9:"tokushima";a:0:{}s:6:"wajiki";a:0:{}}s:5:"tokyo";a:57:{s:6:"adachi";a:0:{}s:7:"akiruno";a:0:{}s:8:"akishima";a:0:{}s:9:"aogashima";a:0:{}s:7:"arakawa";a:0:{}s:6:"bunkyo";a:0:{}s:7:"chiyoda";a:0:{}s:5:"chofu";a:0:{}s:4:"chuo";a:0:{}s:7:"edogawa";a:0:{}s:5:"fuchu";a:0:{}s:5:"fussa";a:0:{}s:7:"hachijo";a:0:{}s:8:"hachioji";a:0:{}s:6:"hamura";a:0:{}s:13:"higashikurume";a:0:{}s:15:"higashimurayama";a:0:{}s:13:"higashiyamato";a:0:{}s:4:"hino";a:0:{}s:6:"hinode";a:0:{}s:8:"hinohara";a:0:{}s:5:"inagi";a:0:{}s:8:"itabashi";a:0:{}s:10:"katsushika";a:0:{}s:4:"kita";a:0:{}s:6:"kiyose";a:0:{}s:7:"kodaira";a:0:{}s:7:"koganei";a:0:{}s:9:"kokubunji";a:0:{}s:5:"komae";a:0:{}s:4:"koto";a:0:{}s:10:"kouzushima";a:0:{}s:9:"kunitachi";a:0:{}s:7:"machida";a:0:{}s:6:"meguro";a:0:{}s:6:"minato";a:0:{}s:6:"mitaka";a:0:{}s:6:"mizuho";a:0:{}s:15:"musashimurayama";a:0:{}s:9:"musashino";a:0:{}s:6:"nakano";a:0:{}s:6:"nerima";a:0:{}s:9:"ogasawara";a:0:{}s:7:"okutama";a:0:{}s:3:"ome";a:0:{}s:6:"oshima";a:0:{}s:3:"ota";a:0:{}s:8:"setagaya";a:0:{}s:7:"shibuya";a:0:{}s:9:"shinagawa";a:0:{}s:8:"shinjuku";a:0:{}s:8:"suginami";a:0:{}s:6:"sumida";a:0:{}s:9:"tachikawa";a:0:{}s:5:"taito";a:0:{}s:4:"tama";a:0:{}s:7:"toshima";a:0:{}}s:7:"tottori";a:13:{s:5:"chizu";a:0:{}s:4:"hino";a:0:{}s:8:"kawahara";a:0:{}s:4:"koge";a:0:{}s:7:"kotoura";a:0:{}s:6:"misasa";a:0:{}s:5:"nanbu";a:0:{}s:8:"nichinan";a:0:{}s:11:"sakaiminato";a:0:{}s:7:"tottori";a:0:{}s:6:"wakasa";a:0:{}s:4:"yazu";a:0:{}s:6:"yonago";a:0:{}}s:6:"toyama";a:24:{s:5:"asahi";a:0:{}s:5:"fuchu";a:0:{}s:9:"fukumitsu";a:0:{}s:9:"funahashi";a:0:{}s:4:"himi";a:0:{}s:5:"imizu";a:0:{}s:5:"inami";a:0:{}s:6:"johana";a:0:{}s:8:"kamiichi";a:0:{}s:6:"kurobe";a:0:{}s:11:"nakaniikawa";a:0:{}s:10:"namerikawa";a:0:{}s:5:"nanto";a:0:{}s:6:"nyuzen";a:0:{}s:5:"oyabe";a:0:{}s:5:"taira";a:0:{}s:7:"takaoka";a:0:{}s:8:"tateyama";a:0:{}s:4:"toga";a:0:{}s:6:"tonami";a:0:{}s:6:"toyama";a:0:{}s:7:"unazuki";a:0:{}s:4:"uozu";a:0:{}s:6:"yamada";a:0:{}}s:8:"wakayama";a:29:{s:5:"arida";a:0:{}s:9:"aridagawa";a:0:{}s:4:"gobo";a:0:{}s:9:"hashimoto";a:0:{}s:6:"hidaka";a:0:{}s:8:"hirogawa";a:0:{}s:5:"inami";a:0:{}s:5:"iwade";a:0:{}s:6:"kainan";a:0:{}s:9:"kamitonda";a:0:{}s:9:"katsuragi";a:0:{}s:6:"kimino";a:0:{}s:8:"kinokawa";a:0:{}s:8:"kitayama";a:0:{}s:4:"koya";a:0:{}s:4:"koza";a:0:{}s:8:"kozagawa";a:0:{}s:8:"kudoyama";a:0:{}s:9:"kushimoto";a:0:{}s:6:"mihama";a:0:{}s:6:"misato";a:0:{}s:13:"nachikatsuura";a:0:{}s:6:"shingu";a:0:{}s:9:"shirahama";a:0:{}s:5:"taiji";a:0:{}s:6:"tanabe";a:0:{}s:8:"wakayama";a:0:{}s:5:"yuasa";a:0:{}s:4:"yura";a:0:{}}s:8:"yamagata";a:34:{s:5:"asahi";a:0:{}s:8:"funagata";a:0:{}s:9:"higashine";a:0:{}s:4:"iide";a:0:{}s:6:"kahoku";a:0:{}s:10:"kaminoyama";a:0:{}s:8:"kaneyama";a:0:{}s:9:"kawanishi";a:0:{}s:10:"mamurogawa";a:0:{}s:6:"mikawa";a:0:{}s:8:"murayama";a:0:{}s:5:"nagai";a:0:{}s:8:"nakayama";a:0:{}s:5:"nanyo";a:0:{}s:9:"nishikawa";a:0:{}s:9:"obanazawa";a:0:{}s:2:"oe";a:0:{}s:5:"oguni";a:0:{}s:6:"ohkura";a:0:{}s:7:"oishida";a:0:{}s:5:"sagae";a:0:{}s:6:"sakata";a:0:{}s:8:"sakegawa";a:0:{}s:6:"shinjo";a:0:{}s:9:"shirataka";a:0:{}s:6:"shonai";a:0:{}s:8:"takahata";a:0:{}s:5:"tendo";a:0:{}s:6:"tozawa";a:0:{}s:8:"tsuruoka";a:0:{}s:8:"yamagata";a:0:{}s:8:"yamanobe";a:0:{}s:8:"yonezawa";a:0:{}s:4:"yuza";a:0:{}}s:9:"yamaguchi";a:16:{s:3:"abu";a:0:{}s:4:"hagi";a:0:{}s:6:"hikari";a:0:{}s:4:"hofu";a:0:{}s:7:"iwakuni";a:0:{}s:9:"kudamatsu";a:0:{}s:5:"mitou";a:0:{}s:6:"nagato";a:0:{}s:6:"oshima";a:0:{}s:11:"shimonoseki";a:0:{}s:6:"shunan";a:0:{}s:6:"tabuse";a:0:{}s:8:"tokuyama";a:0:{}s:6:"toyota";a:0:{}s:3:"ube";a:0:{}s:3:"yuu";a:0:{}}s:9:"yamanashi";a:28:{s:4:"chuo";a:0:{}s:5:"doshi";a:0:{}s:7:"fuefuki";a:0:{}s:8:"fujikawa";a:0:{}s:15:"fujikawaguchiko";a:0:{}s:11:"fujiyoshida";a:0:{}s:8:"hayakawa";a:0:{}s:6:"hokuto";a:0:{}s:14:"ichikawamisato";a:0:{}s:3:"kai";a:0:{}s:4:"kofu";a:0:{}s:5:"koshu";a:0:{}s:6:"kosuge";a:0:{}s:11:"minami-alps";a:0:{}s:6:"minobu";a:0:{}s:9:"nakamichi";a:0:{}s:5:"nanbu";a:0:{}s:8:"narusawa";a:0:{}s:8:"nirasaki";a:0:{}s:12:"nishikatsura";a:0:{}s:6:"oshino";a:0:{}s:6:"otsuki";a:0:{}s:5:"showa";a:0:{}s:8:"tabayama";a:0:{}s:5:"tsuru";a:0:{}s:8:"uenohara";a:0:{}s:10:"yamanakako";a:0:{}s:9:"yamanashi";a:0:{}}s:6:"栃木";a:0:{}s:6:"愛知";a:0:{}s:6:"愛媛";a:0:{}s:6:"兵庫";a:0:{}s:6:"熊本";a:0:{}s:6:"茨城";a:0:{}s:9:"北海道";a:0:{}s:6:"千葉";a:0:{}s:9:"和歌山";a:0:{}s:6:"長崎";a:0:{}s:6:"長野";a:0:{}s:6:"新潟";a:0:{}s:6:"青森";a:0:{}s:6:"静岡";a:0:{}s:6:"東京";a:0:{}s:6:"石川";a:0:{}s:6:"埼玉";a:0:{}s:6:"三重";a:0:{}s:6:"京都";a:0:{}s:6:"佐賀";a:0:{}s:6:"大分";a:0:{}s:6:"大阪";a:0:{}s:6:"奈良";a:0:{}s:6:"宮城";a:0:{}s:6:"宮崎";a:0:{}s:6:"富山";a:0:{}s:6:"山口";a:0:{}s:6:"山形";a:0:{}s:6:"山梨";a:0:{}s:6:"岩手";a:0:{}s:6:"岐阜";a:0:{}s:6:"岡山";a:0:{}s:6:"島根";a:0:{}s:6:"広島";a:0:{}s:6:"徳島";a:0:{}s:6:"沖縄";a:0:{}s:6:"滋賀";a:0:{}s:9:"神奈川";a:0:{}s:6:"福井";a:0:{}s:6:"福岡";a:0:{}s:6:"福島";a:0:{}s:6:"秋田";a:0:{}s:6:"群馬";a:0:{}s:6:"香川";a:0:{}s:6:"高知";a:0:{}s:6:"鳥取";a:0:{}s:9:"鹿児島";a:0:{}s:8:"kawasaki";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:10:"kitakyushu";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:4:"kobe";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:6:"nagoya";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:7:"sapporo";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:6:"sendai";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:8:"yokohama";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:7:"buyshop";a:0:{}s:12:"fashionstore";a:0:{}s:11:"handcrafted";a:0:{}s:10:"kawaiishop";a:0:{}s:9:"supersale";a:0:{}s:7:"theshop";a:0:{}s:11:"usercontent";a:0:{}s:5:"angry";a:0:{}s:8:"babyblue";a:0:{}s:8:"babymilk";a:0:{}s:8:"backdrop";a:0:{}s:7:"bambina";a:0:{}s:6:"bitter";a:0:{}s:5:"blush";a:0:{}s:3:"boo";a:0:{}s:3:"boy";a:0:{}s:9:"boyfriend";a:0:{}s:3:"but";a:0:{}s:8:"candypop";a:0:{}s:5:"capoo";a:0:{}s:7:"catfood";a:0:{}s:5:"cheap";a:0:{}s:8:"chicappa";a:0:{}s:8:"chillout";a:0:{}s:5:"chips";a:0:{}s:7:"chowder";a:0:{}s:3:"chu";a:0:{}s:4:"ciao";a:0:{}s:7:"cocotte";a:0:{}s:8:"coolblog";a:0:{}s:6:"cranky";a:0:{}s:8:"cutegirl";a:0:{}s:3:"daa";a:0:{}s:4:"deca";a:0:{}s:4:"deci";a:0:{}s:6:"digick";a:0:{}s:6:"egoism";a:0:{}s:7:"fakefur";a:0:{}s:3:"fem";a:0:{}s:5:"flier";a:0:{}s:6:"floppy";a:0:{}s:4:"fool";a:0:{}s:10:"frenchkiss";a:0:{}s:10:"girlfriend";a:0:{}s:5:"girly";a:0:{}s:6:"gloomy";a:0:{}s:5:"gonna";a:0:{}s:7:"greater";a:0:{}s:5:"hacca";a:0:{}s:5:"heavy";a:0:{}s:3:"her";a:0:{}s:4:"hiho";a:0:{}s:5:"hippy";a:0:{}s:4:"holy";a:0:{}s:6:"hungry";a:0:{}s:6:"icurus";a:0:{}s:5:"itigo";a:0:{}s:9:"jellybean";a:0:{}s:8:"kikirara";a:0:{}s:4:"kill";a:0:{}s:4:"kilo";a:0:{}s:5:"kuron";a:0:{}s:10:"littlestar";a:0:{}s:10:"lolitapunk";a:0:{}s:4:"lomo";a:0:{}s:7:"lovepop";a:0:{}s:8:"lovesick";a:0:{}s:4:"main";a:0:{}s:4:"mods";a:0:{}s:4:"mond";a:0:{}s:9:"mongolian";a:0:{}s:3:"moo";a:0:{}s:7:"namaste";a:0:{}s:6:"nikita";a:0:{}s:7:"nobushi";a:0:{}s:4:"noor";a:0:{}s:4:"oops";a:0:{}s:8:"parallel";a:0:{}s:8:"parasite";a:0:{}s:6:"pecori";a:0:{}s:6:"peewee";a:0:{}s:5:"penne";a:0:{}s:6:"pepper";a:0:{}s:5:"perma";a:0:{}s:7:"pigboat";a:0:{}s:6:"pinoko";a:0:{}s:5:"punyu";a:0:{}s:4:"pupu";a:0:{}s:8:"pussycat";a:0:{}s:3:"pya";a:0:{}s:8:"raindrop";a:0:{}s:9:"readymade";a:0:{}s:6:"sadist";a:0:{}s:9:"schoolbus";a:0:{}s:6:"secret";a:0:{}s:5:"staba";a:0:{}s:8:"stripper";a:0:{}s:3:"sub";a:0:{}s:8:"sunnyday";a:0:{}s:5:"thick";a:0:{}s:8:"tonkotsu";a:0:{}s:5:"under";a:0:{}s:5:"upper";a:0:{}s:6:"velvet";a:0:{}s:5:"verse";a:0:{}s:6:"versus";a:0:{}s:6:"vivian";a:0:{}s:6:"watson";a:0:{}s:7:"weblike";a:0:{}s:9:"whitesnow";a:0:{}s:6:"zombie";a:0:{}s:8:"blogspot";a:0:{}}s:2:"ke";a:9:{s:2:"ac";a:0:{}s:2:"co";a:1:{s:8:"blogspot";a:0:{}}s:2:"go";a:0:{}s:4:"info";a:0:{}s:2:"me";a:0:{}s:4:"mobi";a:0:{}s:2:"ne";a:0:{}s:2:"or";a:0:{}s:2:"sc";a:0:{}}s:2:"kg";a:12:{s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:4:"blog";a:0:{}s:2:"io";a:0:{}s:2:"jp";a:0:{}s:2:"tv";a:0:{}s:2:"uk";a:0:{}s:2:"us";a:0:{}}s:2:"kh";a:1:{s:1:"*";a:0:{}}s:2:"ki";a:7:{s:3:"edu";a:0:{}s:3:"biz";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"com";a:0:{}}s:2:"km";a:17:{s:3:"org";a:0:{}s:3:"nom";a:0:{}s:3:"gov";a:0:{}s:3:"prd";a:0:{}s:2:"tm";a:0:{}s:3:"edu";a:0:{}s:3:"mil";a:0:{}s:3:"ass";a:0:{}s:3:"com";a:0:{}s:4:"coop";a:0:{}s:4:"asso";a:0:{}s:6:"presse";a:0:{}s:7:"medecin";a:0:{}s:8:"notaires";a:0:{}s:11:"pharmaciens";a:0:{}s:11:"veterinaire";a:0:{}s:4:"gouv";a:0:{}}s:2:"kn";a:4:{s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}}s:2:"kp";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"rep";a:0:{}s:3:"tra";a:0:{}}s:2:"kr";a:30:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:2:"es";a:0:{}s:2:"go";a:0:{}s:2:"hs";a:0:{}s:2:"kg";a:0:{}s:3:"mil";a:0:{}s:2:"ms";a:0:{}s:2:"ne";a:0:{}s:2:"or";a:0:{}s:2:"pe";a:0:{}s:2:"re";a:0:{}s:2:"sc";a:0:{}s:5:"busan";a:0:{}s:8:"chungbuk";a:0:{}s:8:"chungnam";a:0:{}s:5:"daegu";a:0:{}s:7:"daejeon";a:0:{}s:7:"gangwon";a:0:{}s:7:"gwangju";a:0:{}s:9:"gyeongbuk";a:0:{}s:8:"gyeonggi";a:0:{}s:9:"gyeongnam";a:0:{}s:7:"incheon";a:0:{}s:4:"jeju";a:0:{}s:7:"jeonbuk";a:0:{}s:7:"jeonnam";a:0:{}s:5:"seoul";a:0:{}s:5:"ulsan";a:0:{}s:8:"blogspot";a:0:{}}s:2:"kw";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"emb";a:0:{}s:3:"gov";a:0:{}s:3:"ind";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"ky";a:4:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"kz";a:8:{s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:0:{}s:6:"jcloud";a:0:{}s:11:"kazteleport";a:1:{s:5:"upaas";a:0:{}}}s:2:"la";a:10:{s:3:"int";a:0:{}s:3:"net";a:0:{}s:4:"info";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"per";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"bnr";a:0:{}s:1:"c";a:0:{}}s:2:"lb";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"lc";a:7:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:2:"co";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"oy";a:0:{}}s:2:"li";a:2:{s:8:"blogspot";a:0:{}s:3:"caa";a:0:{}}s:2:"lk";a:15:{s:3:"gov";a:0:{}s:3:"sch";a:0:{}s:3:"net";a:0:{}s:3:"int";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"ngo";a:0:{}s:3:"soc";a:0:{}s:3:"web";a:0:{}s:3:"ltd";a:0:{}s:4:"assn";a:0:{}s:3:"grp";a:0:{}s:5:"hotel";a:0:{}s:2:"ac";a:0:{}}s:2:"lr";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}}s:2:"ls";a:10:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"sc";a:0:{}s:2:"de";a:0:{}}s:2:"lt";a:2:{s:3:"gov";a:0:{}s:8:"blogspot";a:0:{}}s:2:"lu";a:1:{s:8:"blogspot";a:0:{}}s:2:"lv";a:9:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"mil";a:0:{}s:2:"id";a:0:{}s:3:"net";a:0:{}s:3:"asn";a:0:{}s:4:"conf";a:0:{}}s:2:"ly";a:9:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"plc";a:0:{}s:3:"edu";a:0:{}s:3:"sch";a:0:{}s:3:"med";a:0:{}s:3:"org";a:0:{}s:2:"id";a:0:{}}s:2:"ma";a:6:{s:2:"co";a:0:{}s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:2:"ac";a:0:{}s:5:"press";a:0:{}}s:2:"mc";a:2:{s:2:"tm";a:0:{}s:4:"asso";a:0:{}}s:2:"md";a:5:{s:8:"blogspot";a:0:{}s:2:"at";a:0:{}s:2:"de";a:0:{}s:2:"jp";a:0:{}s:2:"to";a:0:{}}s:2:"me";a:44:{s:2:"co";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:2:"ac";a:0:{}s:3:"gov";a:0:{}s:3:"its";a:0:{}s:4:"priv";a:0:{}s:3:"c66";a:0:{}s:6:"daplie";a:1:{s:9:"localhost";a:0:{}}s:9:"edgestack";a:0:{}s:8:"filegear";a:0:{}s:11:"filegear-au";a:0:{}s:11:"filegear-de";a:0:{}s:11:"filegear-gb";a:0:{}s:11:"filegear-ie";a:0:{}s:11:"filegear-jp";a:0:{}s:11:"filegear-sg";a:0:{}s:6:"glitch";a:0:{}s:7:"ravendb";a:0:{}s:6:"lohmus";a:0:{}s:5:"barsy";a:0:{}s:4:"mcpe";a:0:{}s:5:"mcdir";a:0:{}s:9:"soundcast";a:0:{}s:4:"tcp4";a:0:{}s:8:"brasilia";a:0:{}s:4:"ddns";a:0:{}s:6:"dnsfor";a:0:{}s:5:"hopto";a:0:{}s:7:"loginto";a:0:{}s:4:"noip";a:0:{}s:6:"webhop";a:0:{}s:3:"vp4";a:0:{}s:11:"diskstation";a:0:{}s:7:"dscloud";a:0:{}s:4:"i234";a:0:{}s:4:"myds";a:0:{}s:8:"synology";a:0:{}s:5:"tbits";a:0:{}s:7:"transip";a:1:{s:4:"site";a:0:{}}s:8:"wedeploy";a:0:{}s:5:"yombo";a:0:{}s:6:"nohost";a:0:{}}s:2:"mg";a:9:{s:3:"org";a:0:{}s:3:"nom";a:0:{}s:3:"gov";a:0:{}s:3:"prd";a:0:{}s:2:"tm";a:0:{}s:3:"edu";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:0:{}s:2:"co";a:0:{}}s:2:"mh";a:0:{}s:3:"mil";a:0:{}s:2:"mk";a:8:{s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"inf";a:0:{}s:4:"name";a:0:{}s:8:"blogspot";a:0:{}}s:2:"ml";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:4:"gouv";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:6:"presse";a:0:{}}s:2:"mm";a:1:{s:1:"*";a:0:{}}s:2:"mn";a:4:{s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:3:"nyc";a:0:{}}s:2:"mo";a:5:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}}s:4:"mobi";a:2:{s:5:"barsy";a:0:{}s:7:"dscloud";a:0:{}}s:2:"mp";a:1:{s:2:"ju";a:0:{}}s:2:"mq";a:0:{}s:2:"mr";a:2:{s:3:"gov";a:0:{}s:8:"blogspot";a:0:{}}s:2:"ms";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"lab";a:0:{}s:8:"minisite";a:0:{}}s:2:"mt";a:4:{s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"mu";a:7:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:2:"ac";a:0:{}s:2:"co";a:0:{}s:2:"or";a:0:{}}s:6:"museum";a:546:{s:7:"academy";a:0:{}s:11:"agriculture";a:0:{}s:3:"air";a:0:{}s:8:"airguard";a:0:{}s:7:"alabama";a:0:{}s:6:"alaska";a:0:{}s:5:"amber";a:0:{}s:9:"ambulance";a:0:{}s:8:"american";a:0:{}s:9:"americana";a:0:{}s:16:"americanantiques";a:0:{}s:11:"americanart";a:0:{}s:9:"amsterdam";a:0:{}s:3:"and";a:0:{}s:9:"annefrank";a:0:{}s:6:"anthro";a:0:{}s:12:"anthropology";a:0:{}s:8:"antiques";a:0:{}s:8:"aquarium";a:0:{}s:9:"arboretum";a:0:{}s:14:"archaeological";a:0:{}s:11:"archaeology";a:0:{}s:12:"architecture";a:0:{}s:3:"art";a:0:{}s:12:"artanddesign";a:0:{}s:9:"artcenter";a:0:{}s:7:"artdeco";a:0:{}s:12:"arteducation";a:0:{}s:10:"artgallery";a:0:{}s:4:"arts";a:0:{}s:13:"artsandcrafts";a:0:{}s:8:"asmatart";a:0:{}s:13:"assassination";a:0:{}s:6:"assisi";a:0:{}s:11:"association";a:0:{}s:9:"astronomy";a:0:{}s:7:"atlanta";a:0:{}s:6:"austin";a:0:{}s:9:"australia";a:0:{}s:10:"automotive";a:0:{}s:8:"aviation";a:0:{}s:4:"axis";a:0:{}s:7:"badajoz";a:0:{}s:7:"baghdad";a:0:{}s:4:"bahn";a:0:{}s:4:"bale";a:0:{}s:9:"baltimore";a:0:{}s:9:"barcelona";a:0:{}s:8:"baseball";a:0:{}s:5:"basel";a:0:{}s:5:"baths";a:0:{}s:6:"bauern";a:0:{}s:9:"beauxarts";a:0:{}s:13:"beeldengeluid";a:0:{}s:8:"bellevue";a:0:{}s:7:"bergbau";a:0:{}s:8:"berkeley";a:0:{}s:6:"berlin";a:0:{}s:4:"bern";a:0:{}s:5:"bible";a:0:{}s:6:"bilbao";a:0:{}s:4:"bill";a:0:{}s:7:"birdart";a:0:{}s:10:"birthplace";a:0:{}s:4:"bonn";a:0:{}s:6:"boston";a:0:{}s:9:"botanical";a:0:{}s:15:"botanicalgarden";a:0:{}s:13:"botanicgarden";a:0:{}s:6:"botany";a:0:{}s:16:"brandywinevalley";a:0:{}s:6:"brasil";a:0:{}s:7:"bristol";a:0:{}s:7:"british";a:0:{}s:15:"britishcolumbia";a:0:{}s:9:"broadcast";a:0:{}s:6:"brunel";a:0:{}s:7:"brussel";a:0:{}s:8:"brussels";a:0:{}s:9:"bruxelles";a:0:{}s:8:"building";a:0:{}s:7:"burghof";a:0:{}s:3:"bus";a:0:{}s:6:"bushey";a:0:{}s:8:"cadaques";a:0:{}s:10:"california";a:0:{}s:9:"cambridge";a:0:{}s:3:"can";a:0:{}s:6:"canada";a:0:{}s:10:"capebreton";a:0:{}s:7:"carrier";a:0:{}s:10:"cartoonart";a:0:{}s:14:"casadelamoneda";a:0:{}s:6:"castle";a:0:{}s:7:"castres";a:0:{}s:6:"celtic";a:0:{}s:6:"center";a:0:{}s:11:"chattanooga";a:0:{}s:10:"cheltenham";a:0:{}s:13:"chesapeakebay";a:0:{}s:7:"chicago";a:0:{}s:8:"children";a:0:{}s:9:"childrens";a:0:{}s:15:"childrensgarden";a:0:{}s:12:"chiropractic";a:0:{}s:9:"chocolate";a:0:{}s:14:"christiansburg";a:0:{}s:10:"cincinnati";a:0:{}s:6:"cinema";a:0:{}s:6:"circus";a:0:{}s:12:"civilisation";a:0:{}s:12:"civilization";a:0:{}s:8:"civilwar";a:0:{}s:7:"clinton";a:0:{}s:5:"clock";a:0:{}s:4:"coal";a:0:{}s:14:"coastaldefence";a:0:{}s:4:"cody";a:0:{}s:7:"coldwar";a:0:{}s:10:"collection";a:0:{}s:20:"colonialwilliamsburg";a:0:{}s:15:"coloradoplateau";a:0:{}s:8:"columbia";a:0:{}s:8:"columbus";a:0:{}s:13:"communication";a:0:{}s:14:"communications";a:0:{}s:9:"community";a:0:{}s:8:"computer";a:0:{}s:15:"computerhistory";a:0:{}s:14:"comunicações";a:0:{}s:12:"contemporary";a:0:{}s:15:"contemporaryart";a:0:{}s:7:"convent";a:0:{}s:10:"copenhagen";a:0:{}s:11:"corporation";a:0:{}s:29:"correios-e-telecomunicações";a:0:{}s:8:"corvette";a:0:{}s:7:"costume";a:0:{}s:13:"countryestate";a:0:{}s:6:"county";a:0:{}s:6:"crafts";a:0:{}s:9:"cranbrook";a:0:{}s:8:"creation";a:0:{}s:8:"cultural";a:0:{}s:14:"culturalcenter";a:0:{}s:7:"culture";a:0:{}s:5:"cyber";a:0:{}s:5:"cymru";a:0:{}s:4:"dali";a:0:{}s:6:"dallas";a:0:{}s:8:"database";a:0:{}s:3:"ddr";a:0:{}s:14:"decorativearts";a:0:{}s:8:"delaware";a:0:{}s:11:"delmenhorst";a:0:{}s:7:"denmark";a:0:{}s:5:"depot";a:0:{}s:6:"design";a:0:{}s:7:"detroit";a:0:{}s:8:"dinosaur";a:0:{}s:9:"discovery";a:0:{}s:5:"dolls";a:0:{}s:8:"donostia";a:0:{}s:6:"durham";a:0:{}s:10:"eastafrica";a:0:{}s:9:"eastcoast";a:0:{}s:9:"education";a:0:{}s:11:"educational";a:0:{}s:8:"egyptian";a:0:{}s:9:"eisenbahn";a:0:{}s:6:"elburg";a:0:{}s:10:"elvendrell";a:0:{}s:10:"embroidery";a:0:{}s:12:"encyclopedic";a:0:{}s:7:"england";a:0:{}s:10:"entomology";a:0:{}s:11:"environment";a:0:{}s:25:"environmentalconservation";a:0:{}s:8:"epilepsy";a:0:{}s:5:"essex";a:0:{}s:6:"estate";a:0:{}s:9:"ethnology";a:0:{}s:6:"exeter";a:0:{}s:10:"exhibition";a:0:{}s:6:"family";a:0:{}s:4:"farm";a:0:{}s:13:"farmequipment";a:0:{}s:7:"farmers";a:0:{}s:9:"farmstead";a:0:{}s:5:"field";a:0:{}s:8:"figueres";a:0:{}s:9:"filatelia";a:0:{}s:4:"film";a:0:{}s:7:"fineart";a:0:{}s:8:"finearts";a:0:{}s:7:"finland";a:0:{}s:8:"flanders";a:0:{}s:7:"florida";a:0:{}s:5:"force";a:0:{}s:12:"fortmissoula";a:0:{}s:9:"fortworth";a:0:{}s:10:"foundation";a:0:{}s:9:"francaise";a:0:{}s:9:"frankfurt";a:0:{}s:12:"franziskaner";a:0:{}s:11:"freemasonry";a:0:{}s:8:"freiburg";a:0:{}s:8:"fribourg";a:0:{}s:4:"frog";a:0:{}s:8:"fundacio";a:0:{}s:9:"furniture";a:0:{}s:7:"gallery";a:0:{}s:6:"garden";a:0:{}s:7:"gateway";a:0:{}s:9:"geelvinck";a:0:{}s:11:"gemological";a:0:{}s:7:"geology";a:0:{}s:7:"georgia";a:0:{}s:7:"giessen";a:0:{}s:4:"glas";a:0:{}s:5:"glass";a:0:{}s:5:"gorge";a:0:{}s:11:"grandrapids";a:0:{}s:4:"graz";a:0:{}s:8:"guernsey";a:0:{}s:10:"halloffame";a:0:{}s:7:"hamburg";a:0:{}s:7:"handson";a:0:{}s:18:"harvestcelebration";a:0:{}s:6:"hawaii";a:0:{}s:6:"health";a:0:{}s:14:"heimatunduhren";a:0:{}s:6:"hellas";a:0:{}s:8:"helsinki";a:0:{}s:15:"hembygdsforbund";a:0:{}s:8:"heritage";a:0:{}s:8:"histoire";a:0:{}s:10:"historical";a:0:{}s:17:"historicalsociety";a:0:{}s:14:"historichouses";a:0:{}s:10:"historisch";a:0:{}s:12:"historisches";a:0:{}s:7:"history";a:0:{}s:16:"historyofscience";a:0:{}s:8:"horology";a:0:{}s:5:"house";a:0:{}s:10:"humanities";a:0:{}s:12:"illustration";a:0:{}s:13:"imageandsound";a:0:{}s:6:"indian";a:0:{}s:7:"indiana";a:0:{}s:12:"indianapolis";a:0:{}s:12:"indianmarket";a:0:{}s:12:"intelligence";a:0:{}s:11:"interactive";a:0:{}s:4:"iraq";a:0:{}s:4:"iron";a:0:{}s:9:"isleofman";a:0:{}s:7:"jamison";a:0:{}s:9:"jefferson";a:0:{}s:9:"jerusalem";a:0:{}s:7:"jewelry";a:0:{}s:6:"jewish";a:0:{}s:9:"jewishart";a:0:{}s:3:"jfk";a:0:{}s:10:"journalism";a:0:{}s:7:"judaica";a:0:{}s:11:"judygarland";a:0:{}s:10:"juedisches";a:0:{}s:4:"juif";a:0:{}s:6:"karate";a:0:{}s:9:"karikatur";a:0:{}s:4:"kids";a:0:{}s:10:"koebenhavn";a:0:{}s:5:"koeln";a:0:{}s:5:"kunst";a:0:{}s:13:"kunstsammlung";a:0:{}s:14:"kunstunddesign";a:0:{}s:5:"labor";a:0:{}s:6:"labour";a:0:{}s:7:"lajolla";a:0:{}s:10:"lancashire";a:0:{}s:6:"landes";a:0:{}s:4:"lans";a:0:{}s:5:"läns";a:0:{}s:7:"larsson";a:0:{}s:11:"lewismiller";a:0:{}s:7:"lincoln";a:0:{}s:4:"linz";a:0:{}s:6:"living";a:0:{}s:13:"livinghistory";a:0:{}s:12:"localhistory";a:0:{}s:6:"london";a:0:{}s:10:"losangeles";a:0:{}s:6:"louvre";a:0:{}s:8:"loyalist";a:0:{}s:7:"lucerne";a:0:{}s:10:"luxembourg";a:0:{}s:6:"luzern";a:0:{}s:3:"mad";a:0:{}s:6:"madrid";a:0:{}s:8:"mallorca";a:0:{}s:10:"manchester";a:0:{}s:7:"mansion";a:0:{}s:8:"mansions";a:0:{}s:4:"manx";a:0:{}s:7:"marburg";a:0:{}s:8:"maritime";a:0:{}s:8:"maritimo";a:0:{}s:8:"maryland";a:0:{}s:10:"marylhurst";a:0:{}s:5:"media";a:0:{}s:7:"medical";a:0:{}s:19:"medizinhistorisches";a:0:{}s:6:"meeres";a:0:{}s:8:"memorial";a:0:{}s:9:"mesaverde";a:0:{}s:8:"michigan";a:0:{}s:11:"midatlantic";a:0:{}s:8:"military";a:0:{}s:4:"mill";a:0:{}s:6:"miners";a:0:{}s:6:"mining";a:0:{}s:9:"minnesota";a:0:{}s:7:"missile";a:0:{}s:8:"missoula";a:0:{}s:6:"modern";a:0:{}s:4:"moma";a:0:{}s:5:"money";a:0:{}s:8:"monmouth";a:0:{}s:10:"monticello";a:0:{}s:8:"montreal";a:0:{}s:6:"moscow";a:0:{}s:10:"motorcycle";a:0:{}s:8:"muenchen";a:0:{}s:8:"muenster";a:0:{}s:8:"mulhouse";a:0:{}s:6:"muncie";a:0:{}s:6:"museet";a:0:{}s:12:"museumcenter";a:0:{}s:16:"museumvereniging";a:0:{}s:5:"music";a:0:{}s:8:"national";a:0:{}s:16:"nationalfirearms";a:0:{}s:16:"nationalheritage";a:0:{}s:14:"nativeamerican";a:0:{}s:14:"naturalhistory";a:0:{}s:20:"naturalhistorymuseum";a:0:{}s:15:"naturalsciences";a:0:{}s:6:"nature";a:0:{}s:17:"naturhistorisches";a:0:{}s:19:"natuurwetenschappen";a:0:{}s:8:"naumburg";a:0:{}s:5:"naval";a:0:{}s:8:"nebraska";a:0:{}s:5:"neues";a:0:{}s:12:"newhampshire";a:0:{}s:9:"newjersey";a:0:{}s:9:"newmexico";a:0:{}s:7:"newport";a:0:{}s:9:"newspaper";a:0:{}s:7:"newyork";a:0:{}s:6:"niepce";a:0:{}s:7:"norfolk";a:0:{}s:5:"north";a:0:{}s:3:"nrw";a:0:{}s:3:"nyc";a:0:{}s:4:"nyny";a:0:{}s:13:"oceanographic";a:0:{}s:15:"oceanographique";a:0:{}s:5:"omaha";a:0:{}s:6:"online";a:0:{}s:7:"ontario";a:0:{}s:7:"openair";a:0:{}s:6:"oregon";a:0:{}s:11:"oregontrail";a:0:{}s:5:"otago";a:0:{}s:6:"oxford";a:0:{}s:7:"pacific";a:0:{}s:9:"paderborn";a:0:{}s:6:"palace";a:0:{}s:5:"paleo";a:0:{}s:11:"palmsprings";a:0:{}s:6:"panama";a:0:{}s:5:"paris";a:0:{}s:8:"pasadena";a:0:{}s:8:"pharmacy";a:0:{}s:12:"philadelphia";a:0:{}s:16:"philadelphiaarea";a:0:{}s:9:"philately";a:0:{}s:7:"phoenix";a:0:{}s:11:"photography";a:0:{}s:6:"pilots";a:0:{}s:10:"pittsburgh";a:0:{}s:11:"planetarium";a:0:{}s:10:"plantation";a:0:{}s:6:"plants";a:0:{}s:5:"plaza";a:0:{}s:6:"portal";a:0:{}s:8:"portland";a:0:{}s:10:"portlligat";a:0:{}s:28:"posts-and-telecommunications";a:0:{}s:12:"preservation";a:0:{}s:8:"presidio";a:0:{}s:5:"press";a:0:{}s:7:"project";a:0:{}s:6:"public";a:0:{}s:5:"pubol";a:0:{}s:6:"quebec";a:0:{}s:8:"railroad";a:0:{}s:7:"railway";a:0:{}s:8:"research";a:0:{}s:10:"resistance";a:0:{}s:12:"riodejaneiro";a:0:{}s:9:"rochester";a:0:{}s:7:"rockart";a:0:{}s:4:"roma";a:0:{}s:6:"russia";a:0:{}s:10:"saintlouis";a:0:{}s:5:"salem";a:0:{}s:12:"salvadordali";a:0:{}s:8:"salzburg";a:0:{}s:8:"sandiego";a:0:{}s:12:"sanfrancisco";a:0:{}s:12:"santabarbara";a:0:{}s:9:"santacruz";a:0:{}s:7:"santafe";a:0:{}s:12:"saskatchewan";a:0:{}s:4:"satx";a:0:{}s:10:"savannahga";a:0:{}s:12:"schlesisches";a:0:{}s:11:"schoenbrunn";a:0:{}s:11:"schokoladen";a:0:{}s:6:"school";a:0:{}s:7:"schweiz";a:0:{}s:7:"science";a:0:{}s:17:"scienceandhistory";a:0:{}s:18:"scienceandindustry";a:0:{}s:13:"sciencecenter";a:0:{}s:14:"sciencecenters";a:0:{}s:15:"science-fiction";a:0:{}s:14:"sciencehistory";a:0:{}s:8:"sciences";a:0:{}s:18:"sciencesnaturelles";a:0:{}s:8:"scotland";a:0:{}s:7:"seaport";a:0:{}s:10:"settlement";a:0:{}s:8:"settlers";a:0:{}s:5:"shell";a:0:{}s:10:"sherbrooke";a:0:{}s:7:"sibenik";a:0:{}s:4:"silk";a:0:{}s:3:"ski";a:0:{}s:5:"skole";a:0:{}s:7:"society";a:0:{}s:7:"sologne";a:0:{}s:14:"soundandvision";a:0:{}s:13:"southcarolina";a:0:{}s:9:"southwest";a:0:{}s:5:"space";a:0:{}s:3:"spy";a:0:{}s:6:"square";a:0:{}s:5:"stadt";a:0:{}s:8:"stalbans";a:0:{}s:9:"starnberg";a:0:{}s:5:"state";a:0:{}s:15:"stateofdelaware";a:0:{}s:7:"station";a:0:{}s:5:"steam";a:0:{}s:10:"steiermark";a:0:{}s:6:"stjohn";a:0:{}s:9:"stockholm";a:0:{}s:12:"stpetersburg";a:0:{}s:9:"stuttgart";a:0:{}s:6:"suisse";a:0:{}s:12:"surgeonshall";a:0:{}s:6:"surrey";a:0:{}s:8:"svizzera";a:0:{}s:6:"sweden";a:0:{}s:6:"sydney";a:0:{}s:4:"tank";a:0:{}s:3:"tcm";a:0:{}s:10:"technology";a:0:{}s:17:"telekommunikation";a:0:{}s:10:"television";a:0:{}s:5:"texas";a:0:{}s:7:"textile";a:0:{}s:7:"theater";a:0:{}s:4:"time";a:0:{}s:11:"timekeeping";a:0:{}s:8:"topology";a:0:{}s:6:"torino";a:0:{}s:5:"touch";a:0:{}s:4:"town";a:0:{}s:9:"transport";a:0:{}s:4:"tree";a:0:{}s:7:"trolley";a:0:{}s:5:"trust";a:0:{}s:7:"trustee";a:0:{}s:5:"uhren";a:0:{}s:3:"ulm";a:0:{}s:8:"undersea";a:0:{}s:10:"university";a:0:{}s:3:"usa";a:0:{}s:10:"usantiques";a:0:{}s:6:"usarts";a:0:{}s:15:"uscountryestate";a:0:{}s:9:"usculture";a:0:{}s:16:"usdecorativearts";a:0:{}s:8:"usgarden";a:0:{}s:9:"ushistory";a:0:{}s:7:"ushuaia";a:0:{}s:15:"uslivinghistory";a:0:{}s:4:"utah";a:0:{}s:4:"uvic";a:0:{}s:6:"valley";a:0:{}s:6:"vantaa";a:0:{}s:10:"versailles";a:0:{}s:6:"viking";a:0:{}s:7:"village";a:0:{}s:8:"virginia";a:0:{}s:7:"virtual";a:0:{}s:7:"virtuel";a:0:{}s:10:"vlaanderen";a:0:{}s:11:"volkenkunde";a:0:{}s:5:"wales";a:0:{}s:8:"wallonie";a:0:{}s:3:"war";a:0:{}s:12:"washingtondc";a:0:{}s:13:"watchandclock";a:0:{}s:15:"watch-and-clock";a:0:{}s:7:"western";a:0:{}s:9:"westfalen";a:0:{}s:7:"whaling";a:0:{}s:8:"wildlife";a:0:{}s:12:"williamsburg";a:0:{}s:8:"windmill";a:0:{}s:8:"workshop";a:0:{}s:4:"york";a:0:{}s:9:"yorkshire";a:0:{}s:8:"yosemite";a:0:{}s:5:"youth";a:0:{}s:10:"zoological";a:0:{}s:7:"zoology";a:0:{}s:14:"ירושלים";a:0:{}s:8:"иком";a:0:{}}s:2:"mv";a:14:{s:4:"aero";a:0:{}s:3:"biz";a:0:{}s:3:"com";a:0:{}s:4:"coop";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:6:"museum";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"pro";a:0:{}}s:2:"mw";a:11:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:4:"coop";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"int";a:0:{}s:6:"museum";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"mx";a:6:{s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"gob";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:8:"blogspot";a:0:{}}s:2:"my";a:9:{s:3:"biz";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:8:"blogspot";a:0:{}}s:2:"mz";a:8:{s:2:"ac";a:0:{}s:3:"adv";a:0:{}s:2:"co";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"na";a:17:{s:4:"info";a:0:{}s:3:"pro";a:0:{}s:4:"name";a:0:{}s:6:"school";a:0:{}s:2:"or";a:0:{}s:2:"dr";a:0:{}s:2:"us";a:0:{}s:2:"mx";a:0:{}s:2:"ca";a:0:{}s:2:"in";a:0:{}s:2:"cc";a:0:{}s:2:"tv";a:0:{}s:2:"ws";a:0:{}s:4:"mobi";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}}s:4:"name";a:2:{s:3:"her";a:1:{s:6:"forgot";a:0:{}}s:3:"his";a:1:{s:6:"forgot";a:0:{}}}s:2:"nc";a:2:{s:4:"asso";a:0:{}s:3:"nom";a:0:{}}s:2:"ne";a:0:{}s:3:"net";a:147:{s:13:"adobeaemcloud";a:0:{}s:10:"alwaysdata";a:0:{}s:10:"cloudfront";a:0:{}s:8:"t3l3p0rt";a:0:{}s:6:"appudo";a:0:{}s:13:"atlassian-dev";a:1:{s:4:"prod";a:1:{s:3:"cdn";a:0:{}}}s:7:"myfritz";a:0:{}s:9:"onavstack";a:0:{}s:10:"shopselect";a:0:{}s:12:"blackbaudcdn";a:0:{}s:6:"boomla";a:0:{}s:7:"bplaced";a:0:{}s:7:"square7";a:0:{}s:2:"gb";a:0:{}s:2:"hu";a:0:{}s:2:"jp";a:0:{}s:2:"se";a:0:{}s:2:"uk";a:0:{}s:2:"in";a:0:{}s:11:"clickrising";a:0:{}s:11:"cloudaccess";a:0:{}s:9:"cdn77-ssl";a:0:{}s:5:"cdn77";a:1:{s:1:"r";a:0:{}}s:8:"feste-ip";a:0:{}s:10:"knx-server";a:0:{}s:13:"static-access";a:0:{}s:11:"cryptonomic";a:1:{s:1:"*";a:0:{}}s:10:"dattolocal";a:0:{}s:7:"mydatto";a:0:{}s:6:"debian";a:0:{}s:9:"bitbridge";a:0:{}s:12:"at-band-camp";a:0:{}s:7:"blogdns";a:0:{}s:8:"broke-it";a:0:{}s:10:"buyshouses";a:0:{}s:8:"dnsalias";a:0:{}s:7:"dnsdojo";a:0:{}s:7:"does-it";a:0:{}s:9:"dontexist";a:0:{}s:8:"dynalias";a:0:{}s:9:"dynathome";a:0:{}s:13:"endofinternet";a:0:{}s:7:"from-az";a:0:{}s:7:"from-co";a:0:{}s:7:"from-la";a:0:{}s:7:"from-ny";a:0:{}s:7:"gets-it";a:0:{}s:12:"ham-radio-op";a:0:{}s:7:"homeftp";a:0:{}s:6:"homeip";a:0:{}s:9:"homelinux";a:0:{}s:8:"homeunix";a:0:{}s:11:"in-the-band";a:0:{}s:9:"is-a-chef";a:0:{}s:9:"is-a-geek";a:0:{}s:8:"isa-geek";a:0:{}s:9:"kicks-ass";a:0:{}s:13:"office-on-the";a:0:{}s:7:"podzone";a:0:{}s:13:"scrapper-site";a:0:{}s:6:"selfip";a:0:{}s:8:"sells-it";a:0:{}s:8:"servebbs";a:0:{}s:8:"serveftp";a:0:{}s:8:"thruhere";a:0:{}s:6:"webhop";a:0:{}s:8:"definima";a:0:{}s:7:"casacam";a:0:{}s:4:"dynu";a:0:{}s:5:"dynv6";a:0:{}s:6:"twmail";a:0:{}s:2:"ru";a:0:{}s:11:"channelsdvr";a:1:{s:1:"u";a:0:{}}s:8:"fastlylb";a:1:{s:3:"map";a:0:{}}s:6:"fastly";a:4:{s:7:"freetls";a:0:{}s:3:"map";a:0:{}s:4:"prod";a:2:{s:1:"a";a:0:{}s:6:"global";a:0:{}}s:3:"ssl";a:3:{s:1:"a";a:0:{}s:1:"b";a:0:{}s:6:"global";a:0:{}}}s:7:"edgeapp";a:0:{}s:12:"flynnhosting";a:0:{}s:9:"cdn-edges";a:0:{}s:6:"heteml";a:0:{}s:14:"cloudfunctions";a:0:{}s:9:"moonscale";a:0:{}s:6:"in-dsl";a:0:{}s:6:"in-vpn";a:0:{}s:7:"ipifony";a:0:{}s:4:"iobb";a:0:{}s:10:"cloudjiffy";a:2:{s:7:"fra1-de";a:0:{}s:8:"west1-us";a:0:{}}s:6:"elastx";a:3:{s:8:"jls-sto1";a:0:{}s:8:"jls-sto2";a:0:{}s:8:"jls-sto3";a:0:{}}s:10:"faststacks";a:0:{}s:11:"massivegrid";a:1:{s:4:"paas";a:6:{s:4:"fr-1";a:0:{}s:5:"lon-1";a:0:{}s:5:"lon-2";a:0:{}s:4:"ny-1";a:0:{}s:4:"ny-2";a:0:{}s:4:"sg-1";a:0:{}}}s:11:"saveincloud";a:2:{s:8:"jelastic";a:0:{}s:12:"nordeste-idc";a:0:{}}s:10:"scaleforce";a:1:{s:1:"j";a:0:{}}s:8:"tsukaeru";a:1:{s:8:"jelastic";a:0:{}}s:8:"kinghost";a:0:{}s:4:"uni5";a:0:{}s:8:"krellian";a:0:{}s:5:"barsy";a:0:{}s:6:"memset";a:0:{}s:13:"azurewebsites";a:0:{}s:12:"azure-mobile";a:0:{}s:8:"cloudapp";a:0:{}s:15:"azurestaticapps";a:5:{s:9:"centralus";a:0:{}s:8:"eastasia";a:0:{}s:7:"eastus2";a:0:{}s:10:"westeurope";a:0:{}s:7:"westus2";a:0:{}}s:5:"dnsup";a:0:{}s:5:"hicam";a:0:{}s:7:"now-dns";a:0:{}s:5:"ownip";a:0:{}s:6:"vpndns";a:0:{}s:14:"eating-organic";a:0:{}s:9:"mydissent";a:0:{}s:8:"myeffect";a:0:{}s:9:"mymediapc";a:0:{}s:5:"mypsx";a:0:{}s:16:"mysecuritycamera";a:0:{}s:6:"nhlfan";a:0:{}s:5:"no-ip";a:0:{}s:6:"pgafan";a:0:{}s:24:"privatizehealthinsurance";a:0:{}s:8:"bounceme";a:0:{}s:4:"ddns";a:0:{}s:10:"redirectme";a:0:{}s:9:"serveblog";a:0:{}s:14:"serveminecraft";a:0:{}s:5:"sytes";a:0:{}s:13:"cloudycluster";a:0:{}s:3:"ovh";a:2:{s:7:"webpaas";a:1:{s:1:"*";a:0:{}}s:7:"hosting";a:1:{s:1:"*";a:0:{}}}s:4:"bar0";a:0:{}s:4:"bar1";a:0:{}s:4:"bar2";a:0:{}s:8:"rackmaze";a:0:{}s:10:"schokokeks";a:0:{}s:16:"firewall-gateway";a:0:{}s:6:"seidat";a:0:{}s:10:"senseering";a:0:{}s:8:"siteleaf";a:0:{}s:8:"vps-host";a:1:{s:8:"jelastic";a:3:{s:3:"atl";a:0:{}s:3:"njs";a:0:{}s:3:"ric";a:0:{}}}s:12:"myspreadshop";a:0:{}s:4:"srcf";a:2:{s:3:"soc";a:0:{}s:4:"user";a:0:{}}s:8:"supabase";a:0:{}s:7:"dsmynas";a:0:{}s:8:"familyds";a:0:{}s:9:"tailscale";a:1:{s:4:"beta";a:0:{}}s:2:"ts";a:0:{}s:10:"torproject";a:1:{s:5:"pages";a:0:{}}s:14:"reserve-online";a:0:{}s:13:"community-pro";a:0:{}s:9:"meinforum";a:0:{}s:11:"yandexcloud";a:2:{s:7:"storage";a:0:{}s:7:"website";a:0:{}}s:2:"za";a:0:{}}s:2:"nf";a:10:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"per";a:0:{}s:3:"rec";a:0:{}s:3:"web";a:0:{}s:4:"arts";a:0:{}s:4:"firm";a:0:{}s:4:"info";a:0:{}s:5:"other";a:0:{}s:5:"store";a:0:{}}s:2:"ng";a:15:{s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:1:"i";a:0:{}s:3:"mil";a:0:{}s:4:"mobi";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}s:3:"col";a:0:{}s:4:"firm";a:0:{}s:3:"gen";a:0:{}s:3:"ltd";a:0:{}s:3:"ngo";a:0:{}}s:2:"ni";a:14:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:2:"in";a:0:{}s:4:"info";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"nom";a:0:{}s:3:"org";a:0:{}s:3:"web";a:0:{}}s:2:"nl";a:8:{s:2:"co";a:0:{}s:15:"hosting-cluster";a:0:{}s:8:"blogspot";a:0:{}s:6:"khplay";a:0:{}s:12:"myspreadshop";a:0:{}s:8:"transurl";a:1:{s:1:"*";a:0:{}}s:7:"cistron";a:0:{}s:5:"demon";a:0:{}}s:2:"no";a:727:{s:3:"fhs";a:0:{}s:3:"vgs";a:0:{}s:10:"fylkesbibl";a:0:{}s:9:"folkebibl";a:0:{}s:6:"museum";a:0:{}s:6:"idrett";a:0:{}s:4:"priv";a:0:{}s:3:"mil";a:0:{}s:4:"stat";a:0:{}s:3:"dep";a:0:{}s:7:"kommune";a:0:{}s:5:"herad";a:0:{}s:2:"aa";a:1:{s:2:"gs";a:0:{}}s:2:"ah";a:1:{s:2:"gs";a:0:{}}s:2:"bu";a:1:{s:2:"gs";a:0:{}}s:2:"fm";a:1:{s:2:"gs";a:0:{}}s:2:"hl";a:1:{s:2:"gs";a:0:{}}s:2:"hm";a:1:{s:2:"gs";a:0:{}}s:9:"jan-mayen";a:1:{s:2:"gs";a:0:{}}s:2:"mr";a:1:{s:2:"gs";a:0:{}}s:2:"nl";a:1:{s:2:"gs";a:0:{}}s:2:"nt";a:1:{s:2:"gs";a:0:{}}s:2:"of";a:1:{s:2:"gs";a:0:{}}s:2:"ol";a:1:{s:2:"gs";a:0:{}}s:4:"oslo";a:1:{s:2:"gs";a:0:{}}s:2:"rl";a:1:{s:2:"gs";a:0:{}}s:2:"sf";a:1:{s:2:"gs";a:0:{}}s:2:"st";a:1:{s:2:"gs";a:0:{}}s:8:"svalbard";a:1:{s:2:"gs";a:0:{}}s:2:"tm";a:1:{s:2:"gs";a:0:{}}s:2:"tr";a:1:{s:2:"gs";a:0:{}}s:2:"va";a:1:{s:2:"gs";a:0:{}}s:2:"vf";a:1:{s:2:"gs";a:0:{}}s:8:"akrehamn";a:0:{}s:9:"åkrehamn";a:0:{}s:6:"algard";a:0:{}s:8:"ålgård";a:0:{}s:4:"arna";a:0:{}s:10:"brumunddal";a:0:{}s:5:"bryne";a:0:{}s:11:"bronnoysund";a:0:{}s:13:"brønnøysund";a:0:{}s:6:"drobak";a:0:{}s:7:"drøbak";a:0:{}s:8:"egersund";a:0:{}s:7:"fetsund";a:0:{}s:5:"floro";a:0:{}s:6:"florø";a:0:{}s:11:"fredrikstad";a:0:{}s:8:"hokksund";a:0:{}s:8:"honefoss";a:0:{}s:9:"hønefoss";a:0:{}s:8:"jessheim";a:0:{}s:9:"jorpeland";a:0:{}s:10:"jørpeland";a:0:{}s:8:"kirkenes";a:0:{}s:8:"kopervik";a:0:{}s:12:"krokstadelva";a:0:{}s:8:"langevag";a:0:{}s:9:"langevåg";a:0:{}s:7:"leirvik";a:0:{}s:9:"mjondalen";a:0:{}s:10:"mjøndalen";a:0:{}s:9:"mo-i-rana";a:0:{}s:7:"mosjoen";a:0:{}s:8:"mosjøen";a:0:{}s:12:"nesoddtangen";a:0:{}s:8:"orkanger";a:0:{}s:6:"osoyro";a:0:{}s:7:"osøyro";a:0:{}s:6:"raholt";a:0:{}s:7:"råholt";a:0:{}s:12:"sandnessjoen";a:0:{}s:13:"sandnessjøen";a:0:{}s:13:"skedsmokorset";a:0:{}s:7:"slattum";a:0:{}s:10:"spjelkavik";a:0:{}s:9:"stathelle";a:0:{}s:7:"stavern";a:0:{}s:15:"stjordalshalsen";a:0:{}s:16:"stjørdalshalsen";a:0:{}s:8:"tananger";a:0:{}s:6:"tranby";a:0:{}s:11:"vossevangen";a:0:{}s:6:"afjord";a:0:{}s:7:"åfjord";a:0:{}s:7:"agdenes";a:0:{}s:2:"al";a:0:{}s:3:"ål";a:0:{}s:7:"alesund";a:0:{}s:8:"ålesund";a:0:{}s:9:"alstahaug";a:0:{}s:4:"alta";a:0:{}s:6:"áltá";a:0:{}s:9:"alaheadju";a:0:{}s:10:"álaheadju";a:0:{}s:6:"alvdal";a:0:{}s:4:"amli";a:0:{}s:5:"åmli";a:0:{}s:4:"amot";a:0:{}s:5:"åmot";a:0:{}s:6:"andebu";a:0:{}s:5:"andoy";a:0:{}s:6:"andøy";a:0:{}s:9:"andasuolo";a:0:{}s:5:"ardal";a:0:{}s:6:"årdal";a:0:{}s:7:"aremark";a:0:{}s:7:"arendal";a:0:{}s:3:"ås";a:0:{}s:6:"aseral";a:0:{}s:7:"åseral";a:0:{}s:5:"asker";a:0:{}s:5:"askim";a:0:{}s:7:"askvoll";a:0:{}s:5:"askoy";a:0:{}s:6:"askøy";a:0:{}s:5:"asnes";a:0:{}s:6:"åsnes";a:0:{}s:9:"audnedaln";a:0:{}s:5:"aukra";a:0:{}s:4:"aure";a:0:{}s:7:"aurland";a:0:{}s:14:"aurskog-holand";a:0:{}s:15:"aurskog-høland";a:0:{}s:9:"austevoll";a:0:{}s:9:"austrheim";a:0:{}s:6:"averoy";a:0:{}s:7:"averøy";a:0:{}s:10:"balestrand";a:0:{}s:9:"ballangen";a:0:{}s:5:"balat";a:0:{}s:7:"bálát";a:0:{}s:9:"balsfjord";a:0:{}s:12:"bahccavuotna";a:0:{}s:13:"báhccavuotna";a:0:{}s:6:"bamble";a:0:{}s:5:"bardu";a:0:{}s:6:"beardu";a:0:{}s:6:"beiarn";a:0:{}s:7:"bajddar";a:0:{}s:8:"bájddar";a:0:{}s:6:"baidar";a:0:{}s:8:"báidár";a:0:{}s:4:"berg";a:0:{}s:6:"bergen";a:0:{}s:8:"berlevag";a:0:{}s:9:"berlevåg";a:0:{}s:11:"bearalvahki";a:0:{}s:12:"bearalváhki";a:0:{}s:6:"bindal";a:0:{}s:8:"birkenes";a:0:{}s:7:"bjarkoy";a:0:{}s:8:"bjarkøy";a:0:{}s:9:"bjerkreim";a:0:{}s:5:"bjugn";a:0:{}s:4:"bodo";a:0:{}s:5:"bodø";a:0:{}s:8:"badaddja";a:0:{}s:11:"bådåddjå";a:0:{}s:7:"budejju";a:0:{}s:4:"bokn";a:0:{}s:9:"bremanger";a:0:{}s:7:"bronnoy";a:0:{}s:9:"brønnøy";a:0:{}s:7:"bygland";a:0:{}s:5:"bykle";a:0:{}s:5:"barum";a:0:{}s:6:"bærum";a:0:{}s:8:"telemark";a:2:{s:2:"bo";a:0:{}s:3:"bø";a:0:{}}s:8:"nordland";a:4:{s:2:"bo";a:0:{}s:3:"bø";a:0:{}s:5:"heroy";a:0:{}s:6:"herøy";a:0:{}}s:6:"bievat";a:0:{}s:7:"bievát";a:0:{}s:5:"bomlo";a:0:{}s:6:"bømlo";a:0:{}s:9:"batsfjord";a:0:{}s:10:"båtsfjord";a:0:{}s:11:"bahcavuotna";a:0:{}s:12:"báhcavuotna";a:0:{}s:5:"dovre";a:0:{}s:7:"drammen";a:0:{}s:9:"drangedal";a:0:{}s:5:"dyroy";a:0:{}s:6:"dyrøy";a:0:{}s:5:"donna";a:0:{}s:6:"dønna";a:0:{}s:3:"eid";a:0:{}s:8:"eidfjord";a:0:{}s:8:"eidsberg";a:0:{}s:7:"eidskog";a:0:{}s:8:"eidsvoll";a:0:{}s:9:"eigersund";a:0:{}s:7:"elverum";a:0:{}s:7:"enebakk";a:0:{}s:8:"engerdal";a:0:{}s:4:"etne";a:0:{}s:7:"etnedal";a:0:{}s:6:"evenes";a:0:{}s:8:"evenassi";a:0:{}s:11:"evenášši";a:0:{}s:15:"evje-og-hornnes";a:0:{}s:7:"farsund";a:0:{}s:6:"fauske";a:0:{}s:7:"fuossko";a:0:{}s:7:"fuoisku";a:0:{}s:5:"fedje";a:0:{}s:3:"fet";a:0:{}s:6:"finnoy";a:0:{}s:7:"finnøy";a:0:{}s:6:"fitjar";a:0:{}s:6:"fjaler";a:0:{}s:5:"fjell";a:0:{}s:8:"flakstad";a:0:{}s:9:"flatanger";a:0:{}s:11:"flekkefjord";a:0:{}s:8:"flesberg";a:0:{}s:5:"flora";a:0:{}s:3:"fla";a:0:{}s:4:"flå";a:0:{}s:7:"folldal";a:0:{}s:7:"forsand";a:0:{}s:6:"fosnes";a:0:{}s:4:"frei";a:0:{}s:5:"frogn";a:0:{}s:7:"froland";a:0:{}s:6:"frosta";a:0:{}s:5:"frana";a:0:{}s:6:"fræna";a:0:{}s:5:"froya";a:0:{}s:6:"frøya";a:0:{}s:4:"fusa";a:0:{}s:8:"fyresdal";a:0:{}s:5:"forde";a:0:{}s:6:"førde";a:0:{}s:6:"gamvik";a:0:{}s:10:"gangaviika";a:0:{}s:12:"gáŋgaviika";a:0:{}s:6:"gaular";a:0:{}s:7:"gausdal";a:0:{}s:9:"gildeskal";a:0:{}s:10:"gildeskål";a:0:{}s:5:"giske";a:0:{}s:7:"gjemnes";a:0:{}s:8:"gjerdrum";a:0:{}s:8:"gjerstad";a:0:{}s:7:"gjesdal";a:0:{}s:6:"gjovik";a:0:{}s:7:"gjøvik";a:0:{}s:7:"gloppen";a:0:{}s:3:"gol";a:0:{}s:4:"gran";a:0:{}s:5:"grane";a:0:{}s:7:"granvin";a:0:{}s:9:"gratangen";a:0:{}s:8:"grimstad";a:0:{}s:5:"grong";a:0:{}s:9:"kraanghke";a:0:{}s:10:"kråanghke";a:0:{}s:4:"grue";a:0:{}s:5:"gulen";a:0:{}s:6:"hadsel";a:0:{}s:6:"halden";a:0:{}s:5:"halsa";a:0:{}s:5:"hamar";a:0:{}s:7:"hamaroy";a:0:{}s:6:"habmer";a:0:{}s:7:"hábmer";a:0:{}s:6:"hapmir";a:0:{}s:7:"hápmir";a:0:{}s:10:"hammerfest";a:0:{}s:12:"hammarfeasta";a:0:{}s:14:"hámmárfeasta";a:0:{}s:5:"haram";a:0:{}s:6:"hareid";a:0:{}s:7:"harstad";a:0:{}s:6:"hasvik";a:0:{}s:10:"aknoluokta";a:0:{}s:12:"ákŋoluokta";a:0:{}s:12:"hattfjelldal";a:0:{}s:8:"aarborte";a:0:{}s:9:"haugesund";a:0:{}s:5:"hemne";a:0:{}s:6:"hemnes";a:0:{}s:8:"hemsedal";a:0:{}s:15:"more-og-romsdal";a:2:{s:5:"heroy";a:0:{}s:5:"sande";a:0:{}}s:16:"møre-og-romsdal";a:2:{s:6:"herøy";a:0:{}s:5:"sande";a:0:{}}s:5:"hitra";a:0:{}s:8:"hjartdal";a:0:{}s:10:"hjelmeland";a:0:{}s:5:"hobol";a:0:{}s:6:"hobøl";a:0:{}s:3:"hof";a:0:{}s:3:"hol";a:0:{}s:4:"hole";a:0:{}s:11:"holmestrand";a:0:{}s:8:"holtalen";a:0:{}s:9:"holtålen";a:0:{}s:9:"hornindal";a:0:{}s:6:"horten";a:0:{}s:6:"hurdal";a:0:{}s:5:"hurum";a:0:{}s:6:"hvaler";a:0:{}s:9:"hyllestad";a:0:{}s:10:"hagebostad";a:0:{}s:11:"hægebostad";a:0:{}s:8:"hoyanger";a:0:{}s:9:"høyanger";a:0:{}s:9:"hoylandet";a:0:{}s:10:"høylandet";a:0:{}s:2:"ha";a:0:{}s:3:"hå";a:0:{}s:7:"ibestad";a:0:{}s:7:"inderoy";a:0:{}s:8:"inderøy";a:0:{}s:7:"iveland";a:0:{}s:8:"jevnaker";a:0:{}s:6:"jondal";a:0:{}s:7:"jolster";a:0:{}s:8:"jølster";a:0:{}s:8:"karasjok";a:0:{}s:10:"karasjohka";a:0:{}s:13:"kárášjohka";a:0:{}s:7:"karlsoy";a:0:{}s:5:"galsa";a:0:{}s:7:"gálsá";a:0:{}s:6:"karmoy";a:0:{}s:7:"karmøy";a:0:{}s:10:"kautokeino";a:0:{}s:13:"guovdageaidnu";a:0:{}s:5:"klepp";a:0:{}s:5:"klabu";a:0:{}s:6:"klæbu";a:0:{}s:9:"kongsberg";a:0:{}s:11:"kongsvinger";a:0:{}s:7:"kragero";a:0:{}s:8:"kragerø";a:0:{}s:12:"kristiansand";a:0:{}s:12:"kristiansund";a:0:{}s:10:"krodsherad";a:0:{}s:11:"krødsherad";a:0:{}s:8:"kvalsund";a:0:{}s:11:"rahkkeravju";a:0:{}s:13:"ráhkkerávju";a:0:{}s:4:"kvam";a:0:{}s:9:"kvinesdal";a:0:{}s:10:"kvinnherad";a:0:{}s:9:"kviteseid";a:0:{}s:7:"kvitsoy";a:0:{}s:8:"kvitsøy";a:0:{}s:8:"kvafjord";a:0:{}s:9:"kvæfjord";a:0:{}s:13:"giehtavuoatna";a:0:{}s:9:"kvanangen";a:0:{}s:10:"kvænangen";a:0:{}s:8:"navuotna";a:0:{}s:9:"návuotna";a:0:{}s:7:"kafjord";a:0:{}s:8:"kåfjord";a:0:{}s:9:"gaivuotna";a:0:{}s:10:"gáivuotna";a:0:{}s:6:"larvik";a:0:{}s:8:"lavangen";a:0:{}s:7:"lavagis";a:0:{}s:6:"loabat";a:0:{}s:7:"loabát";a:0:{}s:7:"lebesby";a:0:{}s:10:"davvesiida";a:0:{}s:9:"leikanger";a:0:{}s:9:"leirfjord";a:0:{}s:4:"leka";a:0:{}s:7:"leksvik";a:0:{}s:6:"lenvik";a:0:{}s:11:"leangaviika";a:0:{}s:12:"leaŋgaviika";a:0:{}s:5:"lesja";a:0:{}s:8:"levanger";a:0:{}s:4:"lier";a:0:{}s:6:"lierne";a:0:{}s:11:"lillehammer";a:0:{}s:9:"lillesand";a:0:{}s:9:"lindesnes";a:0:{}s:6:"lindas";a:0:{}s:7:"lindås";a:0:{}s:3:"lom";a:0:{}s:5:"loppa";a:0:{}s:6:"lahppi";a:0:{}s:7:"láhppi";a:0:{}s:4:"lund";a:0:{}s:6:"lunner";a:0:{}s:5:"luroy";a:0:{}s:6:"lurøy";a:0:{}s:6:"luster";a:0:{}s:7:"lyngdal";a:0:{}s:6:"lyngen";a:0:{}s:4:"ivgu";a:0:{}s:6:"lardal";a:0:{}s:6:"lerdal";a:0:{}s:7:"lærdal";a:0:{}s:8:"lodingen";a:0:{}s:9:"lødingen";a:0:{}s:9:"lorenskog";a:0:{}s:10:"lørenskog";a:0:{}s:5:"loten";a:0:{}s:6:"løten";a:0:{}s:6:"malvik";a:0:{}s:5:"masoy";a:0:{}s:7:"måsøy";a:0:{}s:6:"muosat";a:0:{}s:7:"muosát";a:0:{}s:6:"mandal";a:0:{}s:6:"marker";a:0:{}s:9:"marnardal";a:0:{}s:10:"masfjorden";a:0:{}s:6:"meland";a:0:{}s:6:"meldal";a:0:{}s:6:"melhus";a:0:{}s:5:"meloy";a:0:{}s:6:"meløy";a:0:{}s:7:"meraker";a:0:{}s:8:"meråker";a:0:{}s:7:"moareke";a:0:{}s:8:"moåreke";a:0:{}s:7:"midsund";a:0:{}s:14:"midtre-gauldal";a:0:{}s:7:"modalen";a:0:{}s:5:"modum";a:0:{}s:5:"molde";a:0:{}s:8:"moskenes";a:0:{}s:4:"moss";a:0:{}s:6:"mosvik";a:0:{}s:7:"malselv";a:0:{}s:8:"målselv";a:0:{}s:11:"malatvuopmi";a:0:{}s:12:"málatvuopmi";a:0:{}s:10:"namdalseid";a:0:{}s:6:"aejrie";a:0:{}s:6:"namsos";a:0:{}s:10:"namsskogan";a:0:{}s:14:"naamesjevuemie";a:0:{}s:16:"nååmesjevuemie";a:0:{}s:12:"laakesvuemie";a:0:{}s:9:"nannestad";a:0:{}s:6:"narvik";a:0:{}s:8:"narviika";a:0:{}s:8:"naustdal";a:0:{}s:11:"nedre-eiker";a:0:{}s:8:"akershus";a:1:{s:3:"nes";a:0:{}}s:8:"buskerud";a:1:{s:3:"nes";a:0:{}}s:5:"nesna";a:0:{}s:8:"nesodden";a:0:{}s:7:"nesseby";a:0:{}s:7:"unjarga";a:0:{}s:8:"unjárga";a:0:{}s:6:"nesset";a:0:{}s:8:"nissedal";a:0:{}s:8:"nittedal";a:0:{}s:11:"nord-aurdal";a:0:{}s:9:"nord-fron";a:0:{}s:9:"nord-odal";a:0:{}s:7:"norddal";a:0:{}s:8:"nordkapp";a:0:{}s:11:"davvenjarga";a:0:{}s:12:"davvenjárga";a:0:{}s:11:"nordre-land";a:0:{}s:9:"nordreisa";a:0:{}s:5:"raisa";a:0:{}s:6:"ráisa";a:0:{}s:13:"nore-og-uvdal";a:0:{}s:8:"notodden";a:0:{}s:5:"naroy";a:0:{}s:7:"nærøy";a:0:{}s:8:"notteroy";a:0:{}s:10:"nøtterøy";a:0:{}s:4:"odda";a:0:{}s:6:"oksnes";a:0:{}s:7:"øksnes";a:0:{}s:6:"oppdal";a:0:{}s:8:"oppegard";a:0:{}s:9:"oppegård";a:0:{}s:6:"orkdal";a:0:{}s:6:"orland";a:0:{}s:7:"ørland";a:0:{}s:6:"orskog";a:0:{}s:7:"ørskog";a:0:{}s:5:"orsta";a:0:{}s:6:"ørsta";a:0:{}s:7:"hedmark";a:3:{s:2:"os";a:0:{}s:5:"valer";a:0:{}s:6:"våler";a:0:{}}s:9:"hordaland";a:1:{s:2:"os";a:0:{}}s:4:"osen";a:0:{}s:7:"osteroy";a:0:{}s:8:"osterøy";a:0:{}s:11:"ostre-toten";a:0:{}s:12:"østre-toten";a:0:{}s:9:"overhalla";a:0:{}s:10:"ovre-eiker";a:0:{}s:11:"øvre-eiker";a:0:{}s:4:"oyer";a:0:{}s:5:"øyer";a:0:{}s:8:"oygarden";a:0:{}s:9:"øygarden";a:0:{}s:13:"oystre-slidre";a:0:{}s:14:"øystre-slidre";a:0:{}s:9:"porsanger";a:0:{}s:8:"porsangu";a:0:{}s:10:"porsáŋgu";a:0:{}s:9:"porsgrunn";a:0:{}s:5:"radoy";a:0:{}s:6:"radøy";a:0:{}s:9:"rakkestad";a:0:{}s:4:"rana";a:0:{}s:6:"ruovat";a:0:{}s:9:"randaberg";a:0:{}s:5:"rauma";a:0:{}s:8:"rendalen";a:0:{}s:7:"rennebu";a:0:{}s:8:"rennesoy";a:0:{}s:9:"rennesøy";a:0:{}s:6:"rindal";a:0:{}s:7:"ringebu";a:0:{}s:9:"ringerike";a:0:{}s:9:"ringsaker";a:0:{}s:5:"rissa";a:0:{}s:5:"risor";a:0:{}s:6:"risør";a:0:{}s:4:"roan";a:0:{}s:6:"rollag";a:0:{}s:5:"rygge";a:0:{}s:8:"ralingen";a:0:{}s:9:"rælingen";a:0:{}s:5:"rodoy";a:0:{}s:7:"rødøy";a:0:{}s:7:"romskog";a:0:{}s:8:"rømskog";a:0:{}s:5:"roros";a:0:{}s:6:"røros";a:0:{}s:4:"rost";a:0:{}s:5:"røst";a:0:{}s:6:"royken";a:0:{}s:7:"røyken";a:0:{}s:7:"royrvik";a:0:{}s:8:"røyrvik";a:0:{}s:4:"rade";a:0:{}s:5:"råde";a:0:{}s:8:"salangen";a:0:{}s:7:"siellak";a:0:{}s:7:"saltdal";a:0:{}s:5:"salat";a:0:{}s:7:"sálát";a:0:{}s:6:"sálat";a:0:{}s:9:"samnanger";a:0:{}s:8:"vestfold";a:1:{s:5:"sande";a:0:{}}s:10:"sandefjord";a:0:{}s:7:"sandnes";a:0:{}s:6:"sandoy";a:0:{}s:7:"sandøy";a:0:{}s:9:"sarpsborg";a:0:{}s:5:"sauda";a:0:{}s:8:"sauherad";a:0:{}s:3:"sel";a:0:{}s:5:"selbu";a:0:{}s:5:"selje";a:0:{}s:7:"seljord";a:0:{}s:6:"sigdal";a:0:{}s:6:"siljan";a:0:{}s:6:"sirdal";a:0:{}s:5:"skaun";a:0:{}s:7:"skedsmo";a:0:{}s:3:"ski";a:0:{}s:5:"skien";a:0:{}s:8:"skiptvet";a:0:{}s:8:"skjervoy";a:0:{}s:9:"skjervøy";a:0:{}s:7:"skierva";a:0:{}s:8:"skiervá";a:0:{}s:5:"skjak";a:0:{}s:6:"skjåk";a:0:{}s:6:"skodje";a:0:{}s:8:"skanland";a:0:{}s:9:"skånland";a:0:{}s:6:"skanit";a:0:{}s:7:"skánit";a:0:{}s:5:"smola";a:0:{}s:6:"smøla";a:0:{}s:10:"snillfjord";a:0:{}s:5:"snasa";a:0:{}s:6:"snåsa";a:0:{}s:6:"snoasa";a:0:{}s:6:"snaase";a:0:{}s:7:"snåase";a:0:{}s:7:"sogndal";a:0:{}s:7:"sokndal";a:0:{}s:4:"sola";a:0:{}s:6:"solund";a:0:{}s:9:"songdalen";a:0:{}s:8:"sortland";a:0:{}s:9:"spydeberg";a:0:{}s:6:"stange";a:0:{}s:9:"stavanger";a:0:{}s:7:"steigen";a:0:{}s:9:"steinkjer";a:0:{}s:8:"stjordal";a:0:{}s:9:"stjørdal";a:0:{}s:6:"stokke";a:0:{}s:11:"stor-elvdal";a:0:{}s:5:"stord";a:0:{}s:7:"stordal";a:0:{}s:9:"storfjord";a:0:{}s:10:"omasvuotna";a:0:{}s:6:"strand";a:0:{}s:7:"stranda";a:0:{}s:5:"stryn";a:0:{}s:4:"sula";a:0:{}s:6:"suldal";a:0:{}s:4:"sund";a:0:{}s:7:"sunndal";a:0:{}s:8:"surnadal";a:0:{}s:5:"sveio";a:0:{}s:7:"svelvik";a:0:{}s:9:"sykkylven";a:0:{}s:5:"sogne";a:0:{}s:6:"søgne";a:0:{}s:5:"somna";a:0:{}s:6:"sømna";a:0:{}s:11:"sondre-land";a:0:{}s:12:"søndre-land";a:0:{}s:10:"sor-aurdal";a:0:{}s:11:"sør-aurdal";a:0:{}s:8:"sor-fron";a:0:{}s:9:"sør-fron";a:0:{}s:8:"sor-odal";a:0:{}s:9:"sør-odal";a:0:{}s:12:"sor-varanger";a:0:{}s:13:"sør-varanger";a:0:{}s:13:"matta-varjjat";a:0:{}s:15:"mátta-várjjat";a:0:{}s:7:"sorfold";a:0:{}s:8:"sørfold";a:0:{}s:8:"sorreisa";a:0:{}s:9:"sørreisa";a:0:{}s:5:"sorum";a:0:{}s:6:"sørum";a:0:{}s:4:"tana";a:0:{}s:6:"deatnu";a:0:{}s:4:"time";a:0:{}s:8:"tingvoll";a:0:{}s:4:"tinn";a:0:{}s:9:"tjeldsund";a:0:{}s:13:"dielddanuorri";a:0:{}s:5:"tjome";a:0:{}s:6:"tjøme";a:0:{}s:5:"tokke";a:0:{}s:5:"tolga";a:0:{}s:7:"torsken";a:0:{}s:6:"tranoy";a:0:{}s:7:"tranøy";a:0:{}s:6:"tromso";a:0:{}s:7:"tromsø";a:0:{}s:6:"tromsa";a:0:{}s:5:"romsa";a:0:{}s:9:"trondheim";a:0:{}s:8:"troandin";a:0:{}s:6:"trysil";a:0:{}s:5:"trana";a:0:{}s:6:"træna";a:0:{}s:8:"trogstad";a:0:{}s:9:"trøgstad";a:0:{}s:11:"tvedestrand";a:0:{}s:5:"tydal";a:0:{}s:6:"tynset";a:0:{}s:8:"tysfjord";a:0:{}s:12:"divtasvuodna";a:0:{}s:13:"divttasvuotna";a:0:{}s:6:"tysnes";a:0:{}s:6:"tysvar";a:0:{}s:7:"tysvær";a:0:{}s:8:"tonsberg";a:0:{}s:9:"tønsberg";a:0:{}s:10:"ullensaker";a:0:{}s:10:"ullensvang";a:0:{}s:5:"ulvik";a:0:{}s:6:"utsira";a:0:{}s:5:"vadso";a:0:{}s:6:"vadsø";a:0:{}s:10:"cahcesuolo";a:0:{}s:12:"čáhcesuolo";a:0:{}s:7:"vaksdal";a:0:{}s:5:"valle";a:0:{}s:4:"vang";a:0:{}s:8:"vanylven";a:0:{}s:5:"vardo";a:0:{}s:6:"vardø";a:0:{}s:7:"varggat";a:0:{}s:9:"várggát";a:0:{}s:5:"vefsn";a:0:{}s:7:"vaapste";a:0:{}s:4:"vega";a:0:{}s:9:"vegarshei";a:0:{}s:10:"vegårshei";a:0:{}s:8:"vennesla";a:0:{}s:6:"verdal";a:0:{}s:6:"verran";a:0:{}s:6:"vestby";a:0:{}s:7:"vestnes";a:0:{}s:13:"vestre-slidre";a:0:{}s:12:"vestre-toten";a:0:{}s:9:"vestvagoy";a:0:{}s:11:"vestvågøy";a:0:{}s:9:"vevelstad";a:0:{}s:3:"vik";a:0:{}s:5:"vikna";a:0:{}s:10:"vindafjord";a:0:{}s:5:"volda";a:0:{}s:4:"voss";a:0:{}s:5:"varoy";a:0:{}s:7:"værøy";a:0:{}s:5:"vagan";a:0:{}s:6:"vågan";a:0:{}s:6:"voagat";a:0:{}s:6:"vagsoy";a:0:{}s:8:"vågsøy";a:0:{}s:4:"vaga";a:0:{}s:6:"vågå";a:0:{}s:7:"ostfold";a:1:{s:5:"valer";a:0:{}}s:8:"østfold";a:1:{s:6:"våler";a:0:{}}s:2:"co";a:0:{}s:8:"blogspot";a:0:{}s:12:"myspreadshop";a:0:{}}s:2:"np";a:1:{s:1:"*";a:0:{}}s:2:"nr";a:7:{s:3:"biz";a:0:{}s:4:"info";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"com";a:0:{}}s:2:"nu";a:4:{s:8:"merseine";a:0:{}s:4:"mine";a:0:{}s:8:"shacknet";a:0:{}s:15:"enterprisecloud";a:0:{}}s:2:"nz";a:16:{s:2:"ac";a:0:{}s:2:"co";a:1:{s:8:"blogspot";a:0:{}}s:3:"cri";a:0:{}s:4:"geek";a:0:{}s:3:"gen";a:0:{}s:4:"govt";a:0:{}s:6:"health";a:0:{}s:3:"iwi";a:0:{}s:4:"kiwi";a:0:{}s:5:"maori";a:0:{}s:3:"mil";a:0:{}s:6:"māori";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:10:"parliament";a:0:{}s:6:"school";a:0:{}}s:2:"om";a:9:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"med";a:0:{}s:6:"museum";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"pro";a:0:{}}s:5:"onion";a:0:{}s:3:"org";a:114:{s:10:"altervista";a:0:{}s:5:"amune";a:1:{s:4:"tele";a:0:{}}s:8:"pimienta";a:0:{}s:7:"poivron";a:0:{}s:7:"potager";a:0:{}s:11:"sweetpepper";a:0:{}s:2:"ae";a:0:{}s:2:"us";a:0:{}s:7:"certmgr";a:0:{}s:5:"cdn77";a:2:{s:1:"c";a:0:{}s:3:"rsc";a:0:{}}s:12:"cdn77-secure";a:1:{s:6:"origin";a:1:{s:3:"ssl";a:0:{}}}s:7:"cloudns";a:0:{}s:7:"duckdns";a:0:{}s:4:"tunk";a:0:{}s:6:"dyndns";a:2:{s:2:"go";a:0:{}s:4:"home";a:0:{}}s:7:"blogdns";a:0:{}s:8:"blogsite";a:0:{}s:18:"boldlygoingnowhere";a:0:{}s:8:"dnsalias";a:0:{}s:7:"dnsdojo";a:0:{}s:11:"doesntexist";a:0:{}s:9:"dontexist";a:0:{}s:7:"doomdns";a:0:{}s:6:"dvrdns";a:0:{}s:8:"dynalias";a:0:{}s:13:"endofinternet";a:0:{}s:16:"endoftheinternet";a:0:{}s:7:"from-me";a:0:{}s:9:"game-host";a:0:{}s:6:"gotdns";a:0:{}s:10:"hobby-site";a:0:{}s:7:"homedns";a:0:{}s:7:"homeftp";a:0:{}s:9:"homelinux";a:0:{}s:8:"homeunix";a:0:{}s:14:"is-a-bruinsfan";a:0:{}s:14:"is-a-candidate";a:0:{}s:15:"is-a-celticsfan";a:0:{}s:9:"is-a-chef";a:0:{}s:9:"is-a-geek";a:0:{}s:11:"is-a-knight";a:0:{}s:15:"is-a-linux-user";a:0:{}s:12:"is-a-patsfan";a:0:{}s:11:"is-a-soxfan";a:0:{}s:8:"is-found";a:0:{}s:7:"is-lost";a:0:{}s:8:"is-saved";a:0:{}s:11:"is-very-bad";a:0:{}s:12:"is-very-evil";a:0:{}s:12:"is-very-good";a:0:{}s:12:"is-very-nice";a:0:{}s:13:"is-very-sweet";a:0:{}s:8:"isa-geek";a:0:{}s:9:"kicks-ass";a:0:{}s:11:"misconfused";a:0:{}s:7:"podzone";a:0:{}s:10:"readmyblog";a:0:{}s:6:"selfip";a:0:{}s:13:"sellsyourhome";a:0:{}s:8:"servebbs";a:0:{}s:8:"serveftp";a:0:{}s:9:"servegame";a:0:{}s:12:"stuff-4-sale";a:0:{}s:6:"webhop";a:0:{}s:5:"ddnss";a:0:{}s:9:"accesscam";a:0:{}s:6:"camdvr";a:0:{}s:8:"freeddns";a:0:{}s:6:"mywire";a:0:{}s:11:"webredirect";a:0:{}s:2:"eu";a:55:{s:2:"al";a:0:{}s:4:"asso";a:0:{}s:2:"at";a:0:{}s:2:"au";a:0:{}s:2:"be";a:0:{}s:2:"bg";a:0:{}s:2:"ca";a:0:{}s:2:"cd";a:0:{}s:2:"ch";a:0:{}s:2:"cn";a:0:{}s:2:"cy";a:0:{}s:2:"cz";a:0:{}s:2:"de";a:0:{}s:2:"dk";a:0:{}s:3:"edu";a:0:{}s:2:"ee";a:0:{}s:2:"es";a:0:{}s:2:"fi";a:0:{}s:2:"fr";a:0:{}s:2:"gr";a:0:{}s:2:"hr";a:0:{}s:2:"hu";a:0:{}s:2:"ie";a:0:{}s:2:"il";a:0:{}s:2:"in";a:0:{}s:3:"int";a:0:{}s:2:"is";a:0:{}s:2:"it";a:0:{}s:2:"jp";a:0:{}s:2:"kr";a:0:{}s:2:"lt";a:0:{}s:2:"lu";a:0:{}s:2:"lv";a:0:{}s:2:"mc";a:0:{}s:2:"me";a:0:{}s:2:"mk";a:0:{}s:2:"mt";a:0:{}s:2:"my";a:0:{}s:3:"net";a:0:{}s:2:"ng";a:0:{}s:2:"nl";a:0:{}s:2:"no";a:0:{}s:2:"nz";a:0:{}s:5:"paris";a:0:{}s:2:"pl";a:0:{}s:2:"pt";a:0:{}s:3:"q-a";a:0:{}s:2:"ro";a:0:{}s:2:"ru";a:0:{}s:2:"se";a:0:{}s:2:"si";a:0:{}s:2:"sk";a:0:{}s:2:"tr";a:0:{}s:2:"uk";a:0:{}s:2:"us";a:0:{}}s:6:"twmail";a:0:{}s:16:"fedorainfracloud";a:0:{}s:12:"fedorapeople";a:0:{}s:13:"fedoraproject";a:3:{s:5:"cloud";a:0:{}s:2:"os";a:1:{s:3:"app";a:0:{}}s:3:"stg";a:1:{s:2:"os";a:1:{s:3:"app";a:0:{}}}}s:11:"freedesktop";a:0:{}s:8:"hepforge";a:0:{}s:6:"in-dsl";a:0:{}s:6:"in-vpn";a:0:{}s:2:"js";a:0:{}s:5:"barsy";a:0:{}s:8:"mayfirst";a:0:{}s:11:"mozilla-iot";a:0:{}s:14:"bmoattachments";a:0:{}s:7:"dynserv";a:0:{}s:7:"now-dns";a:0:{}s:11:"cable-modem";a:0:{}s:10:"collegefan";a:0:{}s:16:"couchpotatofries";a:0:{}s:6:"mlbfan";a:0:{}s:16:"mysecuritycamera";a:0:{}s:6:"nflfan";a:0:{}s:10:"read-books";a:0:{}s:6:"ufcfan";a:0:{}s:5:"hopto";a:0:{}s:5:"myftp";a:0:{}s:5:"no-ip";a:0:{}s:5:"zapto";a:0:{}s:7:"httpbin";a:0:{}s:6:"pubtls";a:0:{}s:11:"my-firewall";a:0:{}s:10:"myfirewall";a:0:{}s:5:"spdns";a:0:{}s:9:"small-web";a:0:{}s:7:"dsmynas";a:0:{}s:8:"familyds";a:0:{}s:7:"teckids";a:1:{s:2:"s3";a:0:{}}s:9:"tuxfamily";a:0:{}s:11:"diskstation";a:0:{}s:2:"hk";a:0:{}s:7:"wmflabs";a:0:{}s:9:"toolforge";a:0:{}s:7:"wmcloud";a:0:{}s:2:"za";a:0:{}}s:2:"pa";a:11:{s:2:"ac";a:0:{}s:3:"gob";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"sld";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"ing";a:0:{}s:3:"abo";a:0:{}s:3:"med";a:0:{}s:3:"nom";a:0:{}}s:2:"pe";a:8:{s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"nom";a:0:{}s:3:"mil";a:0:{}s:3:"org";a:0:{}s:3:"com";a:0:{}s:3:"net";a:0:{}s:8:"blogspot";a:0:{}}s:2:"pf";a:3:{s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}}s:2:"pg";a:1:{s:1:"*";a:0:{}}s:2:"ph";a:8:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"ngo";a:0:{}s:3:"mil";a:0:{}s:1:"i";a:0:{}}s:2:"pk";a:14:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:3:"fam";a:0:{}s:3:"biz";a:0:{}s:3:"web";a:0:{}s:3:"gov";a:0:{}s:3:"gob";a:0:{}s:3:"gok";a:0:{}s:3:"gon";a:0:{}s:3:"gop";a:0:{}s:3:"gos";a:0:{}s:4:"info";a:0:{}}s:2:"pl";a:178:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"aid";a:0:{}s:4:"agro";a:0:{}s:3:"atm";a:0:{}s:4:"auto";a:0:{}s:3:"biz";a:0:{}s:3:"edu";a:0:{}s:5:"gmina";a:0:{}s:3:"gsm";a:0:{}s:4:"info";a:0:{}s:4:"mail";a:0:{}s:6:"miasta";a:0:{}s:5:"media";a:0:{}s:3:"mil";a:0:{}s:13:"nieruchomosci";a:0:{}s:3:"nom";a:0:{}s:2:"pc";a:0:{}s:6:"powiat";a:0:{}s:4:"priv";a:0:{}s:10:"realestate";a:0:{}s:3:"rel";a:0:{}s:3:"sex";a:0:{}s:4:"shop";a:0:{}s:5:"sklep";a:0:{}s:3:"sos";a:0:{}s:6:"szkola";a:0:{}s:5:"targi";a:0:{}s:2:"tm";a:0:{}s:7:"tourism";a:0:{}s:6:"travel";a:0:{}s:9:"turystyka";a:0:{}s:3:"gov";a:47:{s:2:"ap";a:0:{}s:2:"ic";a:0:{}s:2:"is";a:0:{}s:2:"us";a:0:{}s:5:"kmpsp";a:0:{}s:5:"kppsp";a:0:{}s:5:"kwpsp";a:0:{}s:3:"psp";a:0:{}s:4:"wskr";a:0:{}s:3:"kwp";a:0:{}s:2:"mw";a:0:{}s:2:"ug";a:0:{}s:2:"um";a:0:{}s:4:"umig";a:0:{}s:4:"ugim";a:0:{}s:4:"upow";a:0:{}s:2:"uw";a:0:{}s:9:"starostwo";a:0:{}s:2:"pa";a:0:{}s:2:"po";a:0:{}s:4:"psse";a:0:{}s:3:"pup";a:0:{}s:4:"rzgw";a:0:{}s:2:"sa";a:0:{}s:2:"so";a:0:{}s:2:"sr";a:0:{}s:3:"wsa";a:0:{}s:3:"sko";a:0:{}s:3:"uzs";a:0:{}s:4:"wiih";a:0:{}s:4:"winb";a:0:{}s:4:"pinb";a:0:{}s:4:"wios";a:0:{}s:4:"witd";a:0:{}s:6:"wzmiuw";a:0:{}s:3:"piw";a:0:{}s:3:"wiw";a:0:{}s:4:"griw";a:0:{}s:3:"wif";a:0:{}s:3:"oum";a:0:{}s:3:"sdn";a:0:{}s:2:"zp";a:0:{}s:4:"uppo";a:0:{}s:3:"mup";a:0:{}s:4:"wuoz";a:0:{}s:8:"konsulat";a:0:{}s:4:"oirm";a:0:{}}s:8:"augustow";a:0:{}s:10:"babia-gora";a:0:{}s:6:"bedzin";a:0:{}s:7:"beskidy";a:0:{}s:10:"bialowieza";a:0:{}s:9:"bialystok";a:0:{}s:7:"bielawa";a:0:{}s:10:"bieszczady";a:0:{}s:11:"boleslawiec";a:0:{}s:9:"bydgoszcz";a:0:{}s:5:"bytom";a:0:{}s:7:"cieszyn";a:0:{}s:7:"czeladz";a:0:{}s:5:"czest";a:0:{}s:9:"dlugoleka";a:0:{}s:6:"elblag";a:0:{}s:3:"elk";a:0:{}s:6:"glogow";a:0:{}s:7:"gniezno";a:0:{}s:7:"gorlice";a:0:{}s:7:"grajewo";a:0:{}s:5:"ilawa";a:0:{}s:8:"jaworzno";a:0:{}s:12:"jelenia-gora";a:0:{}s:5:"jgora";a:0:{}s:6:"kalisz";a:0:{}s:15:"kazimierz-dolny";a:0:{}s:7:"karpacz";a:0:{}s:7:"kartuzy";a:0:{}s:7:"kaszuby";a:0:{}s:8:"katowice";a:0:{}s:5:"kepno";a:0:{}s:7:"ketrzyn";a:0:{}s:7:"klodzko";a:0:{}s:10:"kobierzyce";a:0:{}s:9:"kolobrzeg";a:0:{}s:5:"konin";a:0:{}s:10:"konskowola";a:0:{}s:5:"kutno";a:0:{}s:4:"lapy";a:0:{}s:6:"lebork";a:0:{}s:7:"legnica";a:0:{}s:7:"lezajsk";a:0:{}s:8:"limanowa";a:0:{}s:5:"lomza";a:0:{}s:6:"lowicz";a:0:{}s:5:"lubin";a:0:{}s:5:"lukow";a:0:{}s:7:"malbork";a:0:{}s:10:"malopolska";a:0:{}s:8:"mazowsze";a:0:{}s:6:"mazury";a:0:{}s:6:"mielec";a:0:{}s:6:"mielno";a:0:{}s:7:"mragowo";a:0:{}s:5:"naklo";a:0:{}s:8:"nowaruda";a:0:{}s:4:"nysa";a:0:{}s:5:"olawa";a:0:{}s:6:"olecko";a:0:{}s:6:"olkusz";a:0:{}s:7:"olsztyn";a:0:{}s:7:"opoczno";a:0:{}s:5:"opole";a:0:{}s:7:"ostroda";a:0:{}s:9:"ostroleka";a:0:{}s:9:"ostrowiec";a:0:{}s:10:"ostrowwlkp";a:0:{}s:4:"pila";a:0:{}s:4:"pisz";a:0:{}s:7:"podhale";a:0:{}s:8:"podlasie";a:0:{}s:9:"polkowice";a:0:{}s:7:"pomorze";a:0:{}s:9:"pomorskie";a:0:{}s:10:"prochowice";a:0:{}s:8:"pruszkow";a:0:{}s:9:"przeworsk";a:0:{}s:6:"pulawy";a:0:{}s:5:"radom";a:0:{}s:8:"rawa-maz";a:0:{}s:6:"rybnik";a:0:{}s:7:"rzeszow";a:0:{}s:5:"sanok";a:0:{}s:5:"sejny";a:0:{}s:5:"slask";a:0:{}s:6:"slupsk";a:0:{}s:9:"sosnowiec";a:0:{}s:12:"stalowa-wola";a:0:{}s:7:"skoczow";a:0:{}s:12:"starachowice";a:0:{}s:8:"stargard";a:0:{}s:7:"suwalki";a:0:{}s:8:"swidnica";a:0:{}s:10:"swiebodzin";a:0:{}s:11:"swinoujscie";a:0:{}s:8:"szczecin";a:0:{}s:8:"szczytno";a:0:{}s:10:"tarnobrzeg";a:0:{}s:5:"tgory";a:0:{}s:5:"turek";a:0:{}s:5:"tychy";a:0:{}s:5:"ustka";a:0:{}s:9:"walbrzych";a:0:{}s:6:"warmia";a:0:{}s:8:"warszawa";a:0:{}s:3:"waw";a:0:{}s:6:"wegrow";a:0:{}s:6:"wielun";a:0:{}s:5:"wlocl";a:0:{}s:9:"wloclawek";a:0:{}s:9:"wodzislaw";a:0:{}s:7:"wolomin";a:0:{}s:7:"wroclaw";a:0:{}s:9:"zachpomor";a:0:{}s:5:"zagan";a:0:{}s:5:"zarow";a:0:{}s:5:"zgora";a:0:{}s:9:"zgorzelec";a:0:{}s:4:"beep";a:0:{}s:14:"ecommerce-shop";a:0:{}s:9:"shoparena";a:0:{}s:9:"homesklep";a:0:{}s:8:"sdscloud";a:0:{}s:8:"unicloud";a:0:{}s:7:"krasnik";a:0:{}s:6:"leczna";a:0:{}s:8:"lubartow";a:0:{}s:6:"lublin";a:0:{}s:9:"poniatowa";a:0:{}s:7:"swidnik";a:0:{}s:2:"co";a:0:{}s:3:"art";a:0:{}s:7:"gliwice";a:0:{}s:6:"krakow";a:0:{}s:6:"poznan";a:0:{}s:4:"wroc";a:0:{}s:8:"zakopane";a:0:{}s:12:"myspreadshop";a:0:{}s:3:"gda";a:0:{}s:6:"gdansk";a:0:{}s:6:"gdynia";a:0:{}s:3:"med";a:0:{}s:5:"sopot";a:0:{}}s:2:"pm";a:1:{s:3:"own";a:0:{}}s:2:"pn";a:5:{s:3:"gov";a:0:{}s:2:"co";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}}s:4:"post";a:0:{}s:2:"pr";a:13:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:4:"isla";a:0:{}s:3:"pro";a:0:{}s:3:"biz";a:0:{}s:4:"info";a:0:{}s:4:"name";a:0:{}s:3:"est";a:0:{}s:4:"prof";a:0:{}s:2:"ac";a:0:{}}s:3:"pro";a:14:{s:3:"aaa";a:0:{}s:3:"aca";a:0:{}s:4:"acct";a:0:{}s:6:"avocat";a:0:{}s:3:"bar";a:0:{}s:3:"cpa";a:0:{}s:3:"eng";a:0:{}s:3:"jur";a:0:{}s:3:"law";a:0:{}s:3:"med";a:0:{}s:5:"recht";a:0:{}s:7:"cloudns";a:0:{}s:8:"dnstrace";a:1:{s:3:"bci";a:0:{}}s:5:"barsy";a:0:{}}s:2:"ps";a:7:{s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"sec";a:0:{}s:3:"plo";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}}s:2:"pt";a:9:{s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"int";a:0:{}s:4:"publ";a:0:{}s:3:"com";a:0:{}s:4:"nome";a:0:{}s:8:"blogspot";a:0:{}}s:2:"pw";a:8:{s:2:"co";a:0:{}s:2:"ne";a:0:{}s:2:"or";a:0:{}s:2:"ed";a:0:{}s:2:"go";a:0:{}s:5:"belau";a:0:{}s:7:"cloudns";a:0:{}s:4:"x443";a:0:{}}s:2:"py";a:7:{s:3:"com";a:0:{}s:4:"coop";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"qa";a:9:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}s:8:"blogspot";a:0:{}}s:2:"re";a:4:{s:4:"asso";a:0:{}s:3:"com";a:0:{}s:3:"nom";a:0:{}s:8:"blogspot";a:0:{}}s:2:"ro";a:15:{s:4:"arts";a:0:{}s:3:"com";a:0:{}s:4:"firm";a:0:{}s:4:"info";a:0:{}s:3:"nom";a:0:{}s:2:"nt";a:0:{}s:3:"org";a:0:{}s:3:"rec";a:0:{}s:5:"store";a:0:{}s:2:"tm";a:0:{}s:3:"www";a:0:{}s:2:"co";a:0:{}s:4:"shop";a:0:{}s:8:"blogspot";a:0:{}s:5:"barsy";a:0:{}}s:2:"rs";a:10:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"in";a:0:{}s:3:"org";a:0:{}s:7:"brendly";a:1:{s:4:"shop";a:0:{}}s:8:"blogspot";a:0:{}s:2:"ua";a:0:{}s:2:"ox";a:0:{}}s:2:"ru";a:39:{s:2:"ac";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:4:"test";a:0:{}s:7:"eurodir";a:0:{}s:7:"adygeya";a:0:{}s:9:"bashkiria";a:0:{}s:3:"bir";a:0:{}s:3:"cbg";a:0:{}s:3:"com";a:0:{}s:8:"dagestan";a:0:{}s:6:"grozny";a:0:{}s:8:"kalmykia";a:0:{}s:8:"kustanai";a:0:{}s:6:"marine";a:0:{}s:8:"mordovia";a:0:{}s:3:"msk";a:0:{}s:5:"mytis";a:0:{}s:7:"nalchik";a:0:{}s:3:"nov";a:0:{}s:10:"pyatigorsk";a:0:{}s:3:"spb";a:0:{}s:11:"vladikavkaz";a:0:{}s:8:"vladimir";a:0:{}s:8:"blogspot";a:0:{}s:4:"na4u";a:0:{}s:8:"mircloud";a:0:{}s:12:"regruhosting";a:1:{s:8:"jelastic";a:0:{}}s:6:"myjino";a:4:{s:7:"hosting";a:1:{s:1:"*";a:0:{}}s:7:"landing";a:1:{s:1:"*";a:0:{}}s:8:"spectrum";a:1:{s:1:"*";a:0:{}}s:3:"vps";a:1:{s:1:"*";a:0:{}}}s:7:"cldmail";a:1:{s:2:"hb";a:0:{}}s:5:"mcdir";a:1:{s:3:"vps";a:0:{}}s:5:"mcpre";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"pp";a:0:{}s:3:"lk3";a:0:{}s:3:"ras";a:0:{}}s:2:"rw";a:7:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:4:"coop";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"sa";a:8:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"med";a:0:{}s:3:"pub";a:0:{}s:3:"edu";a:0:{}s:3:"sch";a:0:{}}s:2:"sb";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"sc";a:5:{s:3:"com";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}}s:2:"sd";a:8:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"med";a:0:{}s:2:"tv";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}}s:2:"se";a:46:{s:1:"a";a:0:{}s:2:"ac";a:0:{}s:1:"b";a:0:{}s:2:"bd";a:0:{}s:5:"brand";a:0:{}s:1:"c";a:0:{}s:1:"d";a:0:{}s:1:"e";a:0:{}s:1:"f";a:0:{}s:2:"fh";a:0:{}s:4:"fhsk";a:0:{}s:3:"fhv";a:0:{}s:1:"g";a:0:{}s:1:"h";a:0:{}s:1:"i";a:0:{}s:1:"k";a:0:{}s:7:"komforb";a:0:{}s:15:"kommunalforbund";a:0:{}s:6:"komvux";a:0:{}s:1:"l";a:0:{}s:6:"lanbib";a:0:{}s:1:"m";a:0:{}s:1:"n";a:0:{}s:14:"naturbruksgymn";a:0:{}s:1:"o";a:0:{}s:3:"org";a:0:{}s:1:"p";a:0:{}s:5:"parti";a:0:{}s:2:"pp";a:0:{}s:5:"press";a:0:{}s:1:"r";a:0:{}s:1:"s";a:0:{}s:1:"t";a:0:{}s:2:"tm";a:0:{}s:1:"u";a:0:{}s:1:"w";a:0:{}s:1:"x";a:0:{}s:1:"y";a:0:{}s:1:"z";a:0:{}s:3:"com";a:0:{}s:8:"blogspot";a:0:{}s:4:"conf";a:0:{}s:6:"iopsys";a:0:{}s:12:"itcouldbewor";a:0:{}s:12:"myspreadshop";a:0:{}s:4:"paba";a:1:{s:2:"su";a:0:{}}}s:2:"sg";a:8:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"per";a:0:{}s:8:"blogspot";a:0:{}s:8:"enscaled";a:0:{}}s:2:"sh";a:11:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"mil";a:0:{}s:3:"bip";a:0:{}s:8:"hashbang";a:0:{}s:8:"platform";a:4:{s:2:"bc";a:0:{}s:3:"ent";a:0:{}s:2:"eu";a:0:{}s:2:"us";a:0:{}}s:3:"now";a:0:{}s:3:"vxl";a:0:{}s:8:"wedeploy";a:0:{}}s:2:"si";a:3:{s:6:"gitapp";a:0:{}s:7:"gitpage";a:0:{}s:8:"blogspot";a:0:{}}s:2:"sj";a:0:{}s:2:"sk";a:1:{s:8:"blogspot";a:0:{}}s:2:"sl";a:5:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}}s:2:"sm";a:0:{}s:2:"sn";a:8:{s:3:"art";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:4:"gouv";a:0:{}s:3:"org";a:0:{}s:5:"perso";a:0:{}s:4:"univ";a:0:{}s:8:"blogspot";a:0:{}}s:2:"so";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"me";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}}s:2:"sr";a:0:{}s:2:"ss";a:8:{s:3:"biz";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"me";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}}s:2:"st";a:12:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:9:"consulado";a:0:{}s:3:"edu";a:0:{}s:9:"embaixada";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:8:"principe";a:0:{}s:7:"saotome";a:0:{}s:5:"store";a:0:{}s:4:"noho";a:0:{}}s:2:"su";a:52:{s:8:"abkhazia";a:0:{}s:7:"adygeya";a:0:{}s:10:"aktyubinsk";a:0:{}s:11:"arkhangelsk";a:0:{}s:7:"armenia";a:0:{}s:8:"ashgabad";a:0:{}s:10:"azerbaijan";a:0:{}s:8:"balashov";a:0:{}s:9:"bashkiria";a:0:{}s:7:"bryansk";a:0:{}s:7:"bukhara";a:0:{}s:8:"chimkent";a:0:{}s:8:"dagestan";a:0:{}s:15:"east-kazakhstan";a:0:{}s:5:"exnet";a:0:{}s:7:"georgia";a:0:{}s:6:"grozny";a:0:{}s:7:"ivanovo";a:0:{}s:6:"jambyl";a:0:{}s:8:"kalmykia";a:0:{}s:6:"kaluga";a:0:{}s:7:"karacol";a:0:{}s:9:"karaganda";a:0:{}s:7:"karelia";a:0:{}s:9:"khakassia";a:0:{}s:9:"krasnodar";a:0:{}s:6:"kurgan";a:0:{}s:8:"kustanai";a:0:{}s:5:"lenug";a:0:{}s:10:"mangyshlak";a:0:{}s:8:"mordovia";a:0:{}s:3:"msk";a:0:{}s:8:"murmansk";a:0:{}s:7:"nalchik";a:0:{}s:5:"navoi";a:0:{}s:16:"north-kazakhstan";a:0:{}s:3:"nov";a:0:{}s:7:"obninsk";a:0:{}s:5:"penza";a:0:{}s:8:"pokrovsk";a:0:{}s:5:"sochi";a:0:{}s:3:"spb";a:0:{}s:8:"tashkent";a:0:{}s:6:"termez";a:0:{}s:9:"togliatti";a:0:{}s:7:"troitsk";a:0:{}s:11:"tselinograd";a:0:{}s:4:"tula";a:0:{}s:4:"tuva";a:0:{}s:11:"vladikavkaz";a:0:{}s:8:"vladimir";a:0:{}s:7:"vologda";a:0:{}}s:2:"sv";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"org";a:0:{}s:3:"red";a:0:{}}s:2:"sx";a:1:{s:3:"gov";a:0:{}}s:2:"sy";a:6:{s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}}s:2:"sz";a:3:{s:2:"co";a:0:{}s:2:"ac";a:0:{}s:3:"org";a:0:{}}s:2:"tc";a:3:{s:2:"ch";a:0:{}s:2:"me";a:0:{}s:2:"we";a:0:{}}s:2:"td";a:1:{s:8:"blogspot";a:0:{}}s:3:"tel";a:0:{}s:2:"tf";a:0:{}s:2:"tg";a:0:{}s:2:"th";a:9:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:2:"go";a:0:{}s:2:"in";a:0:{}s:2:"mi";a:0:{}s:3:"net";a:0:{}s:2:"or";a:0:{}s:6:"online";a:0:{}s:4:"shop";a:0:{}}s:2:"tj";a:15:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:2:"go";a:0:{}s:3:"gov";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"nic";a:0:{}s:3:"org";a:0:{}s:4:"test";a:0:{}s:3:"web";a:0:{}}s:2:"tk";a:0:{}s:2:"tl";a:1:{s:3:"gov";a:0:{}}s:2:"tm";a:8:{s:3:"com";a:0:{}s:2:"co";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"nom";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"edu";a:0:{}}s:2:"tn";a:14:{s:3:"com";a:0:{}s:3:"ens";a:0:{}s:3:"fin";a:0:{}s:3:"gov";a:0:{}s:3:"ind";a:0:{}s:4:"info";a:0:{}s:4:"intl";a:0:{}s:6:"mincom";a:0:{}s:3:"nat";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:5:"perso";a:0:{}s:7:"tourism";a:0:{}s:11:"orangecloud";a:0:{}}s:2:"to";a:12:{s:3:"com";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"mil";a:0:{}i:611;a:0:{}s:3:"oya";a:0:{}s:3:"rdv";a:0:{}s:7:"vpnplus";a:0:{}s:12:"quickconnect";a:1:{s:6:"direct";a:0:{}}s:4:"nyan";a:0:{}}s:2:"tr";a:22:{s:2:"av";a:0:{}s:3:"bbs";a:0:{}s:3:"bel";a:0:{}s:3:"biz";a:0:{}s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:2:"dr";a:0:{}s:3:"edu";a:0:{}s:3:"gen";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"mil";a:0:{}s:3:"k12";a:0:{}s:3:"kep";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"pol";a:0:{}s:3:"tel";a:0:{}s:3:"tsk";a:0:{}s:2:"tv";a:0:{}s:3:"web";a:0:{}s:2:"nc";a:1:{s:3:"gov";a:0:{}}}s:2:"tt";a:17:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"biz";a:0:{}s:4:"info";a:0:{}s:3:"pro";a:0:{}s:3:"int";a:0:{}s:4:"coop";a:0:{}s:4:"jobs";a:0:{}s:4:"mobi";a:0:{}s:6:"travel";a:0:{}s:6:"museum";a:0:{}s:4:"aero";a:0:{}s:4:"name";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}}s:2:"tv";a:4:{s:6:"dyndns";a:0:{}s:11:"better-than";a:0:{}s:10:"on-the-web";a:0:{}s:10:"worse-than";a:0:{}}s:2:"tw";a:15:{s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:1:{s:8:"mymailer";a:0:{}}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"idv";a:0:{}s:4:"game";a:0:{}s:4:"ebiz";a:0:{}s:4:"club";a:0:{}s:6:"網路";a:0:{}s:6:"組織";a:0:{}s:6:"商業";a:0:{}s:3:"url";a:0:{}s:8:"blogspot";a:0:{}}s:2:"tz";a:12:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:2:"go";a:0:{}s:5:"hotel";a:0:{}s:4:"info";a:0:{}s:2:"me";a:0:{}s:3:"mil";a:0:{}s:4:"mobi";a:0:{}s:2:"ne";a:0:{}s:2:"or";a:0:{}s:2:"sc";a:0:{}s:2:"tv";a:0:{}}s:2:"ua";a:83:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"in";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:9:"cherkassy";a:0:{}s:8:"cherkasy";a:0:{}s:9:"chernigov";a:0:{}s:9:"chernihiv";a:0:{}s:10:"chernivtsi";a:0:{}s:10:"chernovtsy";a:0:{}s:2:"ck";a:0:{}s:2:"cn";a:0:{}s:2:"cr";a:0:{}s:6:"crimea";a:0:{}s:2:"cv";a:0:{}s:2:"dn";a:0:{}s:14:"dnepropetrovsk";a:0:{}s:14:"dnipropetrovsk";a:0:{}s:7:"donetsk";a:0:{}s:2:"dp";a:0:{}s:2:"if";a:0:{}s:15:"ivano-frankivsk";a:0:{}s:2:"kh";a:0:{}s:7:"kharkiv";a:0:{}s:7:"kharkov";a:0:{}s:7:"kherson";a:0:{}s:12:"khmelnitskiy";a:0:{}s:12:"khmelnytskyi";a:0:{}s:4:"kiev";a:0:{}s:10:"kirovograd";a:0:{}s:2:"km";a:0:{}s:2:"kr";a:0:{}s:4:"krym";a:0:{}s:2:"ks";a:0:{}s:2:"kv";a:0:{}s:4:"kyiv";a:0:{}s:2:"lg";a:0:{}s:2:"lt";a:0:{}s:7:"lugansk";a:0:{}s:5:"lutsk";a:0:{}s:2:"lv";a:0:{}s:4:"lviv";a:0:{}s:2:"mk";a:0:{}s:8:"mykolaiv";a:0:{}s:8:"nikolaev";a:0:{}s:2:"od";a:0:{}s:5:"odesa";a:0:{}s:6:"odessa";a:0:{}s:2:"pl";a:0:{}s:7:"poltava";a:0:{}s:5:"rivne";a:0:{}s:5:"rovno";a:0:{}s:2:"rv";a:0:{}s:2:"sb";a:0:{}s:10:"sebastopol";a:0:{}s:10:"sevastopol";a:0:{}s:2:"sm";a:0:{}s:4:"sumy";a:0:{}s:2:"te";a:0:{}s:8:"ternopil";a:0:{}s:2:"uz";a:0:{}s:8:"uzhgorod";a:0:{}s:7:"vinnica";a:0:{}s:9:"vinnytsia";a:0:{}s:2:"vn";a:0:{}s:5:"volyn";a:0:{}s:5:"yalta";a:0:{}s:11:"zaporizhzhe";a:0:{}s:12:"zaporizhzhia";a:0:{}s:8:"zhitomir";a:0:{}s:8:"zhytomyr";a:0:{}s:2:"zp";a:0:{}s:2:"zt";a:0:{}s:2:"cc";a:0:{}s:3:"inf";a:0:{}s:3:"ltd";a:0:{}s:2:"cx";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:2:"pp";a:0:{}s:1:"v";a:0:{}}s:2:"ug";a:9:{s:2:"co";a:0:{}s:2:"or";a:0:{}s:2:"ac";a:0:{}s:2:"sc";a:0:{}s:2:"go";a:0:{}s:2:"ne";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:8:"blogspot";a:0:{}}s:2:"uk";a:23:{s:2:"ac";a:0:{}s:2:"co";a:12:{s:8:"bytemark";a:2:{s:2:"dh";a:0:{}s:2:"vm";a:0:{}}s:8:"blogspot";a:0:{}s:10:"layershift";a:1:{s:1:"j";a:0:{}}s:5:"barsy";a:0:{}s:11:"barsyonline";a:0:{}s:9:"retrosnub";a:1:{s:4:"cust";a:0:{}}s:7:"nh-serv";a:0:{}s:5:"no-ip";a:0:{}s:13:"wellbeingzone";a:0:{}s:5:"adimo";a:0:{}s:12:"myspreadshop";a:0:{}s:7:"gwiddle";a:0:{}}s:3:"gov";a:4:{s:8:"campaign";a:0:{}s:7:"service";a:0:{}s:3:"api";a:0:{}s:10:"homeoffice";a:0:{}}s:3:"ltd";a:0:{}s:2:"me";a:0:{}s:3:"net";a:0:{}s:3:"nhs";a:0:{}s:3:"org";a:6:{s:4:"glug";a:0:{}s:3:"lug";a:0:{}s:4:"lugs";a:0:{}s:15:"affinitylottery";a:0:{}s:11:"raffleentry";a:0:{}s:13:"weeklylottery";a:0:{}}s:3:"plc";a:0:{}s:6:"police";a:0:{}s:3:"sch";a:1:{s:1:"*";a:0:{}}s:4:"conn";a:0:{}s:5:"copro";a:0:{}s:4:"hosp";a:0:{}s:22:"independent-commission";a:0:{}s:19:"independent-inquest";a:0:{}s:19:"independent-inquiry";a:0:{}s:17:"independent-panel";a:0:{}s:18:"independent-review";a:0:{}s:14:"public-inquiry";a:0:{}s:16:"royal-commission";a:0:{}s:5:"pymnt";a:0:{}s:5:"barsy";a:0:{}}s:2:"us";a:73:{s:3:"dni";a:0:{}s:3:"fed";a:0:{}s:3:"isa";a:0:{}s:4:"kids";a:0:{}s:3:"nsn";a:0:{}s:2:"ak";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"al";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ar";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"as";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"az";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ca";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"co";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ct";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"dc";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"de";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"fl";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ga";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"gu";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"hi";a:2:{s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ia";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"id";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"il";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"in";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ks";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ky";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"la";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ma";a:3:{s:3:"k12";a:3:{s:3:"pvt";a:0:{}s:4:"chtr";a:0:{}s:6:"paroch";a:0:{}}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"md";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"me";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"mi";a:11:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}s:9:"ann-arbor";a:0:{}s:3:"cog";a:0:{}s:3:"dst";a:0:{}s:5:"eaton";a:0:{}s:3:"gen";a:0:{}s:3:"mus";a:0:{}s:3:"tec";a:0:{}s:9:"washtenaw";a:0:{}}s:2:"mn";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"mo";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ms";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"mt";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nc";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nd";a:2:{s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ne";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nh";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nj";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nm";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nv";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ny";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"oh";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ok";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"or";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"pa";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"pr";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ri";a:2:{s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"sc";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"sd";a:2:{s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"tn";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"tx";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ut";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"vi";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"vt";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"va";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"wa";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"wi";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"wv";a:1:{s:2:"cc";a:0:{}}s:2:"wy";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:7:"graphox";a:0:{}s:7:"cloudns";a:0:{}s:4:"drud";a:0:{}s:5:"is-by";a:0:{}s:11:"land-4-sale";a:0:{}s:12:"stuff-4-sale";a:0:{}s:8:"enscaled";a:1:{s:3:"phx";a:0:{}}s:8:"mircloud";a:0:{}s:8:"freeddns";a:0:{}s:7:"golffan";a:0:{}s:4:"noip";a:0:{}s:7:"pointto";a:0:{}s:8:"platterp";a:0:{}}s:2:"uy";a:6:{s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:3:"gub";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"uz";a:4:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"va";a:0:{}s:2:"vc";a:8:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"edu";a:0:{}s:2:"gv";a:1:{s:1:"d";a:0:{}}s:2:"0e";a:0:{}}s:2:"ve";a:20:{s:4:"arts";a:0:{}s:3:"bib";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"e12";a:0:{}s:3:"edu";a:0:{}s:4:"firm";a:0:{}s:3:"gob";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"nom";a:0:{}s:3:"org";a:0:{}s:3:"rar";a:0:{}s:3:"rec";a:0:{}s:5:"store";a:0:{}s:3:"tec";a:0:{}s:3:"web";a:0:{}}s:2:"vg";a:1:{s:2:"at";a:0:{}}s:2:"vi";a:5:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"k12";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"vn";a:13:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"int";a:0:{}s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:4:"info";a:0:{}s:4:"name";a:0:{}s:3:"pro";a:0:{}s:6:"health";a:0:{}s:8:"blogspot";a:0:{}}s:2:"vu";a:8:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"cn";a:0:{}s:4:"blog";a:0:{}s:3:"dev";a:0:{}s:2:"me";a:0:{}}s:2:"wf";a:0:{}s:2:"ws";a:9:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:7:"advisor";a:1:{s:1:"*";a:0:{}}s:7:"cloud66";a:0:{}s:6:"dyndns";a:0:{}s:6:"mypets";a:0:{}}s:2:"yt";a:1:{s:3:"org";a:0:{}}s:12:"امارات";a:0:{}s:6:"հայ";a:0:{}s:15:"বাংলা";a:0:{}s:4:"бг";a:0:{}s:14:"البحرين";a:0:{}s:6:"бел";a:0:{}s:6:"中国";a:0:{}s:6:"中國";a:0:{}s:14:"الجزائر";a:0:{}s:6:"مصر";a:0:{}s:4:"ею";a:0:{}s:4:"ευ";a:0:{}s:18:"موريتانيا";a:0:{}s:6:"გე";a:0:{}s:4:"ελ";a:0:{}s:6:"香港";a:6:{s:6:"公司";a:0:{}s:6:"教育";a:0:{}s:6:"政府";a:0:{}s:6:"個人";a:0:{}s:6:"網絡";a:0:{}s:6:"組織";a:0:{}}s:12:"ಭಾರತ";a:0:{}s:12:"ଭାରତ";a:0:{}s:12:"ভাৰত";a:0:{}s:18:"भारतम्";a:0:{}s:15:"भारोत";a:0:{}s:8:"ڀارت";a:0:{}s:15:"ഭാരതം";a:0:{}s:12:"भारत";a:0:{}s:8:"بارت";a:0:{}s:10:"بھارت";a:0:{}s:15:"భారత్";a:0:{}s:12:"ભારત";a:0:{}s:12:"ਭਾਰਤ";a:0:{}s:12:"ভারত";a:0:{}s:21:"இந்தியா";a:0:{}s:10:"ایران";a:0:{}s:10:"ايران";a:0:{}s:8:"عراق";a:0:{}s:12:"الاردن";a:0:{}s:6:"한국";a:0:{}s:6:"қаз";a:0:{}s:9:"ລາວ";a:0:{}s:12:"ලංකා";a:0:{}s:18:"இலங்கை";a:0:{}s:12:"المغرب";a:0:{}s:6:"мкд";a:0:{}s:6:"мон";a:0:{}s:6:"澳門";a:0:{}s:6:"澳门";a:0:{}s:12:"مليسيا";a:0:{}s:8:"عمان";a:0:{}s:14:"پاکستان";a:0:{}s:14:"پاكستان";a:0:{}s:12:"فلسطين";a:0:{}s:6:"срб";a:6:{s:4:"пр";a:0:{}s:6:"орг";a:0:{}s:6:"обр";a:0:{}s:4:"од";a:0:{}s:6:"упр";a:0:{}s:4:"ак";a:0:{}}s:4:"рф";a:0:{}s:6:"قطر";a:0:{}s:16:"السعودية";a:0:{}s:16:"السعودیة";a:0:{}s:16:"السعودیۃ";a:0:{}s:16:"السعوديه";a:0:{}s:10:"سودان";a:0:{}s:9:"新加坡";a:0:{}s:33:"சிங்கப்பூர்";a:0:{}s:10:"سورية";a:0:{}s:10:"سوريا";a:0:{}s:9:"ไทย";a:6:{s:15:"ศึกษา";a:0:{}s:18:"ธุรกิจ";a:0:{}s:18:"รัฐบาล";a:0:{}s:12:"ทหาร";a:0:{}s:12:"เน็ต";a:0:{}s:18:"องค์กร";a:0:{}}s:8:"تونس";a:0:{}s:6:"台灣";a:0:{}s:6:"台湾";a:0:{}s:6:"臺灣";a:0:{}s:6:"укр";a:0:{}s:10:"اليمن";a:0:{}s:3:"xxx";a:0:{}s:2:"ye";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"mil";a:0:{}s:3:"org";a:0:{}}s:2:"za";a:18:{s:2:"ac";a:0:{}s:5:"agric";a:0:{}s:3:"alt";a:0:{}s:2:"co";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:7:"grondar";a:0:{}s:3:"law";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"ngo";a:0:{}s:3:"nic";a:0:{}s:3:"nis";a:0:{}s:3:"nom";a:0:{}s:3:"org";a:0:{}s:6:"school";a:0:{}s:2:"tm";a:0:{}s:3:"web";a:0:{}}s:2:"zm";a:11:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}}s:2:"zw";a:5:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"org";a:0:{}}s:3:"aaa";a:0:{}s:4:"aarp";a:0:{}s:6:"abarth";a:0:{}s:3:"abb";a:0:{}s:6:"abbott";a:0:{}s:6:"abbvie";a:0:{}s:3:"abc";a:0:{}s:4:"able";a:0:{}s:7:"abogado";a:0:{}s:8:"abudhabi";a:0:{}s:7:"academy";a:1:{s:8:"official";a:0:{}}s:9:"accenture";a:0:{}s:10:"accountant";a:0:{}s:11:"accountants";a:0:{}s:3:"aco";a:0:{}s:5:"actor";a:0:{}s:4:"adac";a:0:{}s:3:"ads";a:0:{}s:5:"adult";a:0:{}s:3:"aeg";a:0:{}s:5:"aetna";a:0:{}s:3:"afl";a:0:{}s:6:"africa";a:0:{}s:7:"agakhan";a:0:{}s:6:"agency";a:0:{}s:3:"aig";a:0:{}s:6:"airbus";a:0:{}s:8:"airforce";a:0:{}s:6:"airtel";a:0:{}s:4:"akdn";a:0:{}s:9:"alfaromeo";a:0:{}s:7:"alibaba";a:0:{}s:6:"alipay";a:0:{}s:9:"allfinanz";a:0:{}s:8:"allstate";a:0:{}s:4:"ally";a:0:{}s:6:"alsace";a:0:{}s:6:"alstom";a:0:{}s:6:"amazon";a:0:{}s:15:"americanexpress";a:0:{}s:14:"americanfamily";a:0:{}s:4:"amex";a:0:{}s:5:"amfam";a:0:{}s:5:"amica";a:0:{}s:9:"amsterdam";a:0:{}s:9:"analytics";a:0:{}s:7:"android";a:0:{}s:6:"anquan";a:0:{}s:3:"anz";a:0:{}s:3:"aol";a:0:{}s:10:"apartments";a:0:{}s:3:"app";a:24:{s:5:"beget";a:1:{s:1:"*";a:0:{}}s:5:"clerk";a:0:{}s:10:"clerkstage";a:0:{}s:5:"wnext";a:0:{}s:9:"platform0";a:0:{}s:4:"deta";a:0:{}s:14:"ondigitalocean";a:0:{}s:4:"encr";a:0:{}s:11:"edgecompute";a:0:{}s:7:"fireweb";a:0:{}s:12:"onflashdrive";a:0:{}s:6:"framer";a:0:{}s:3:"run";a:1:{s:1:"a";a:0:{}}s:3:"web";a:0:{}s:6:"hasura";a:0:{}s:9:"loginline";a:0:{}s:7:"netlify";a:0:{}s:9:"developer";a:1:{s:1:"*";a:0:{}}s:4:"noop";a:0:{}s:10:"northflank";a:1:{s:1:"*";a:0:{}}s:7:"telebit";a:0:{}s:9:"typedream";a:0:{}s:6:"vercel";a:0:{}s:10:"bookonline";a:0:{}}s:5:"apple";a:0:{}s:9:"aquarelle";a:0:{}s:4:"arab";a:0:{}s:6:"aramco";a:0:{}s:5:"archi";a:0:{}s:4:"army";a:0:{}s:3:"art";a:0:{}s:4:"arte";a:0:{}s:4:"asda";a:0:{}s:10:"associates";a:0:{}s:7:"athleta";a:0:{}s:8:"attorney";a:0:{}s:7:"auction";a:0:{}s:4:"audi";a:0:{}s:7:"audible";a:0:{}s:5:"audio";a:0:{}s:7:"auspost";a:0:{}s:6:"author";a:0:{}s:4:"auto";a:0:{}s:5:"autos";a:0:{}s:7:"avianca";a:0:{}s:3:"aws";a:0:{}s:3:"axa";a:0:{}s:5:"azure";a:0:{}s:4:"baby";a:0:{}s:5:"baidu";a:0:{}s:7:"banamex";a:0:{}s:14:"bananarepublic";a:0:{}s:4:"band";a:0:{}s:4:"bank";a:0:{}s:3:"bar";a:0:{}s:9:"barcelona";a:0:{}s:11:"barclaycard";a:0:{}s:8:"barclays";a:0:{}s:8:"barefoot";a:0:{}s:8:"bargains";a:0:{}s:8:"baseball";a:0:{}s:10:"basketball";a:2:{s:3:"aus";a:0:{}s:2:"nz";a:0:{}}s:7:"bauhaus";a:0:{}s:6:"bayern";a:0:{}s:3:"bbc";a:0:{}s:3:"bbt";a:0:{}s:4:"bbva";a:0:{}s:3:"bcg";a:0:{}s:3:"bcn";a:0:{}s:5:"beats";a:0:{}s:6:"beauty";a:0:{}s:4:"beer";a:0:{}s:7:"bentley";a:0:{}s:6:"berlin";a:0:{}s:4:"best";a:0:{}s:7:"bestbuy";a:0:{}s:3:"bet";a:0:{}s:6:"bharti";a:0:{}s:5:"bible";a:0:{}s:3:"bid";a:0:{}s:4:"bike";a:0:{}s:4:"bing";a:0:{}s:5:"bingo";a:0:{}s:3:"bio";a:0:{}s:5:"black";a:0:{}s:11:"blackfriday";a:0:{}s:11:"blockbuster";a:0:{}s:4:"blog";a:0:{}s:9:"bloomberg";a:0:{}s:4:"blue";a:0:{}s:3:"bms";a:0:{}s:3:"bmw";a:0:{}s:10:"bnpparibas";a:0:{}s:5:"boats";a:0:{}s:10:"boehringer";a:0:{}s:4:"bofa";a:0:{}s:3:"bom";a:0:{}s:4:"bond";a:0:{}s:3:"boo";a:0:{}s:4:"book";a:0:{}s:7:"booking";a:0:{}s:5:"bosch";a:0:{}s:6:"bostik";a:0:{}s:6:"boston";a:0:{}s:3:"bot";a:0:{}s:8:"boutique";a:0:{}s:3:"box";a:0:{}s:8:"bradesco";a:0:{}s:11:"bridgestone";a:0:{}s:8:"broadway";a:0:{}s:6:"broker";a:0:{}s:7:"brother";a:0:{}s:8:"brussels";a:0:{}s:7:"bugatti";a:0:{}s:5:"build";a:0:{}s:8:"builders";a:1:{s:9:"cloudsite";a:0:{}}s:8:"business";a:1:{s:2:"co";a:0:{}}s:3:"buy";a:0:{}s:4:"buzz";a:0:{}s:3:"bzh";a:0:{}s:3:"cab";a:0:{}s:4:"cafe";a:0:{}s:3:"cal";a:0:{}s:4:"call";a:0:{}s:11:"calvinklein";a:0:{}s:3:"cam";a:0:{}s:6:"camera";a:0:{}s:4:"camp";a:0:{}s:14:"cancerresearch";a:0:{}s:5:"canon";a:0:{}s:8:"capetown";a:0:{}s:7:"capital";a:0:{}s:10:"capitalone";a:0:{}s:3:"car";a:0:{}s:7:"caravan";a:0:{}s:5:"cards";a:0:{}s:4:"care";a:0:{}s:6:"career";a:0:{}s:7:"careers";a:0:{}s:4:"cars";a:0:{}s:4:"casa";a:1:{s:4:"nabu";a:1:{s:2:"ui";a:0:{}}}s:4:"case";a:0:{}s:4:"cash";a:0:{}s:6:"casino";a:0:{}s:8:"catering";a:0:{}s:8:"catholic";a:0:{}s:3:"cba";a:0:{}s:3:"cbn";a:0:{}s:4:"cbre";a:0:{}s:3:"cbs";a:0:{}s:6:"center";a:0:{}s:3:"ceo";a:0:{}s:4:"cern";a:0:{}s:3:"cfa";a:0:{}s:3:"cfd";a:0:{}s:6:"chanel";a:0:{}s:7:"channel";a:0:{}s:7:"charity";a:0:{}s:5:"chase";a:0:{}s:4:"chat";a:0:{}s:5:"cheap";a:0:{}s:7:"chintai";a:0:{}s:9:"christmas";a:0:{}s:6:"chrome";a:0:{}s:6:"church";a:0:{}s:8:"cipriani";a:0:{}s:6:"circle";a:0:{}s:5:"cisco";a:0:{}s:7:"citadel";a:0:{}s:4:"citi";a:0:{}s:5:"citic";a:0:{}s:4:"city";a:0:{}s:8:"cityeats";a:0:{}s:6:"claims";a:0:{}s:8:"cleaning";a:0:{}s:5:"click";a:0:{}s:6:"clinic";a:0:{}s:8:"clinique";a:0:{}s:8:"clothing";a:0:{}s:5:"cloud";a:27:{s:6:"banzai";a:1:{s:1:"*";a:0:{}}s:9:"elementor";a:0:{}s:7:"encoway";a:1:{s:2:"eu";a:0:{}}s:7:"statics";a:1:{s:1:"*";a:0:{}}s:7:"ravendb";a:0:{}s:7:"axarnet";a:1:{s:4:"es-1";a:0:{}}s:6:"diadem";a:0:{}s:8:"jelastic";a:1:{s:3:"vip";a:0:{}}s:4:"jele";a:0:{}s:10:"jenv-aruba";a:2:{s:5:"aruba";a:1:{s:3:"eur";a:1:{s:3:"it1";a:0:{}}}s:3:"it1";a:0:{}}s:7:"keliweb";a:1:{s:2:"cs";a:0:{}}s:3:"oxa";a:2:{s:2:"tn";a:0:{}s:2:"uk";a:0:{}}s:8:"primetel";a:1:{s:2:"uk";a:0:{}}s:7:"reclaim";a:3:{s:2:"ca";a:0:{}s:2:"uk";a:0:{}s:2:"us";a:0:{}}s:12:"trendhosting";a:2:{s:2:"ch";a:0:{}s:2:"de";a:0:{}}s:8:"jotelulu";a:0:{}s:8:"kuleuven";a:0:{}s:8:"linkyard";a:0:{}s:11:"magentosite";a:1:{s:1:"*";a:0:{}}s:9:"perspecta";a:0:{}s:5:"vapor";a:0:{}s:10:"on-rancher";a:1:{s:1:"*";a:0:{}}s:3:"scw";a:8:{s:9:"baremetal";a:3:{s:8:"fr-par-1";a:0:{}s:8:"fr-par-2";a:0:{}s:8:"nl-ams-1";a:0:{}}s:6:"fr-par";a:5:{s:3:"fnc";a:1:{s:9:"functions";a:0:{}}s:3:"k8s";a:1:{s:5:"nodes";a:0:{}}s:2:"s3";a:0:{}s:10:"s3-website";a:0:{}s:3:"whm";a:0:{}}s:9:"instances";a:2:{s:4:"priv";a:0:{}s:3:"pub";a:0:{}}s:3:"k8s";a:0:{}s:6:"nl-ams";a:4:{s:3:"k8s";a:1:{s:5:"nodes";a:0:{}}s:2:"s3";a:0:{}s:10:"s3-website";a:0:{}s:3:"whm";a:0:{}}s:6:"pl-waw";a:3:{s:3:"k8s";a:1:{s:5:"nodes";a:0:{}}s:2:"s3";a:0:{}s:10:"s3-website";a:0:{}}s:9:"scalebook";a:0:{}s:13:"smartlabeling";a:0:{}}s:10:"sensiosite";a:1:{s:1:"*";a:0:{}}s:11:"trafficplex";a:0:{}s:5:"urown";a:0:{}s:9:"voorloper";a:0:{}}s:4:"club";a:4:{s:7:"cloudns";a:0:{}s:4:"jele";a:0:{}s:5:"barsy";a:0:{}s:4:"pony";a:0:{}}s:7:"clubmed";a:0:{}s:5:"coach";a:0:{}s:5:"codes";a:1:{s:3:"owo";a:1:{s:1:"*";a:0:{}}}s:6:"coffee";a:0:{}s:7:"college";a:0:{}s:7:"cologne";a:0:{}s:7:"comcast";a:0:{}s:8:"commbank";a:0:{}s:9:"community";a:3:{s:3:"nog";a:0:{}s:7:"ravendb";a:0:{}s:7:"myforum";a:0:{}}s:7:"company";a:0:{}s:7:"compare";a:0:{}s:8:"computer";a:0:{}s:6:"comsec";a:0:{}s:6:"condos";a:0:{}s:12:"construction";a:0:{}s:10:"consulting";a:0:{}s:7:"contact";a:0:{}s:11:"contractors";a:0:{}s:7:"cooking";a:0:{}s:14:"cookingchannel";a:0:{}s:4:"cool";a:2:{s:9:"elementor";a:0:{}s:2:"de";a:0:{}}s:7:"corsica";a:0:{}s:7:"country";a:0:{}s:6:"coupon";a:0:{}s:7:"coupons";a:0:{}s:7:"courses";a:0:{}s:3:"cpa";a:0:{}s:6:"credit";a:0:{}s:10:"creditcard";a:0:{}s:11:"creditunion";a:0:{}s:7:"cricket";a:0:{}s:5:"crown";a:0:{}s:3:"crs";a:0:{}s:6:"cruise";a:0:{}s:7:"cruises";a:0:{}s:10:"cuisinella";a:0:{}s:5:"cymru";a:0:{}s:4:"cyou";a:0:{}s:5:"dabur";a:0:{}s:3:"dad";a:0:{}s:5:"dance";a:0:{}s:4:"data";a:0:{}s:4:"date";a:0:{}s:6:"dating";a:0:{}s:6:"datsun";a:0:{}s:3:"day";a:0:{}s:4:"dclk";a:0:{}s:3:"dds";a:0:{}s:4:"deal";a:0:{}s:6:"dealer";a:0:{}s:5:"deals";a:0:{}s:6:"degree";a:0:{}s:8:"delivery";a:0:{}s:4:"dell";a:0:{}s:8:"deloitte";a:0:{}s:5:"delta";a:0:{}s:8:"democrat";a:0:{}s:6:"dental";a:0:{}s:7:"dentist";a:0:{}s:4:"desi";a:0:{}s:6:"design";a:1:{s:3:"bss";a:0:{}}s:3:"dev";a:21:{s:3:"lcl";a:1:{s:1:"*";a:0:{}}s:8:"lclstage";a:1:{s:1:"*";a:0:{}}s:3:"stg";a:1:{s:1:"*";a:0:{}}s:8:"stgstage";a:1:{s:1:"*";a:0:{}}s:5:"pages";a:0:{}s:7:"workers";a:0:{}s:4:"curv";a:0:{}s:4:"deno";a:0:{}s:12:"deno-staging";a:0:{}s:4:"deta";a:0:{}s:3:"fly";a:0:{}s:13:"githubpreview";a:0:{}s:7:"gateway";a:1:{s:1:"*";a:0:{}}s:5:"iserv";a:0:{}s:9:"localcert";a:1:{s:4:"user";a:1:{s:1:"*";a:0:{}}}s:9:"loginline";a:0:{}s:9:"mediatech";a:0:{}s:11:"platter-app";a:0:{}s:11:"shiftcrypto";a:0:{}s:6:"vercel";a:0:{}s:7:"webhare";a:1:{s:1:"*";a:0:{}}}s:3:"dhl";a:0:{}s:8:"diamonds";a:0:{}s:4:"diet";a:0:{}s:7:"digital";a:1:{s:9:"cloudapps";a:1:{s:6:"london";a:0:{}}}s:6:"direct";a:0:{}s:9:"directory";a:0:{}s:8:"discount";a:0:{}s:8:"discover";a:0:{}s:4:"dish";a:0:{}s:3:"diy";a:0:{}s:3:"dnp";a:0:{}s:4:"docs";a:0:{}s:6:"doctor";a:0:{}s:3:"dog";a:0:{}s:7:"domains";a:0:{}s:3:"dot";a:0:{}s:8:"download";a:0:{}s:5:"drive";a:0:{}s:3:"dtv";a:0:{}s:5:"dubai";a:0:{}s:6:"dunlop";a:0:{}s:6:"dupont";a:0:{}s:6:"durban";a:0:{}s:4:"dvag";a:0:{}s:3:"dvr";a:0:{}s:5:"earth";a:1:{s:5:"dapps";a:2:{s:1:"*";a:0:{}s:3:"bzz";a:1:{s:1:"*";a:0:{}}}}s:3:"eat";a:0:{}s:3:"eco";a:0:{}s:5:"edeka";a:0:{}s:9:"education";a:1:{s:2:"co";a:0:{}}s:5:"email";a:0:{}s:6:"emerck";a:0:{}s:6:"energy";a:0:{}s:8:"engineer";a:0:{}s:11:"engineering";a:0:{}s:11:"enterprises";a:0:{}s:5:"epson";a:0:{}s:9:"equipment";a:0:{}s:8:"ericsson";a:0:{}s:4:"erni";a:0:{}s:3:"esq";a:0:{}s:6:"estate";a:1:{s:7:"compute";a:1:{s:1:"*";a:0:{}}}s:8:"etisalat";a:0:{}s:10:"eurovision";a:0:{}s:3:"eus";a:1:{s:5:"party";a:1:{s:4:"user";a:0:{}}}s:6:"events";a:2:{s:6:"koobin";a:0:{}s:2:"co";a:0:{}}s:8:"exchange";a:0:{}s:6:"expert";a:0:{}s:7:"exposed";a:0:{}s:7:"express";a:0:{}s:10:"extraspace";a:0:{}s:4:"fage";a:0:{}s:4:"fail";a:0:{}s:9:"fairwinds";a:0:{}s:5:"faith";a:1:{s:3:"ybo";a:0:{}}s:6:"family";a:0:{}s:3:"fan";a:0:{}s:4:"fans";a:0:{}s:4:"farm";a:1:{s:5:"storj";a:0:{}}s:7:"farmers";a:0:{}s:7:"fashion";a:1:{s:2:"of";a:0:{}}s:4:"fast";a:0:{}s:5:"fedex";a:0:{}s:8:"feedback";a:0:{}s:7:"ferrari";a:0:{}s:7:"ferrero";a:0:{}s:4:"fiat";a:0:{}s:8:"fidelity";a:0:{}s:4:"fido";a:0:{}s:4:"film";a:0:{}s:5:"final";a:0:{}s:7:"finance";a:0:{}s:9:"financial";a:1:{s:2:"co";a:0:{}}s:4:"fire";a:0:{}s:9:"firestone";a:0:{}s:8:"firmdale";a:0:{}s:4:"fish";a:0:{}s:7:"fishing";a:0:{}s:3:"fit";a:0:{}s:7:"fitness";a:0:{}s:6:"flickr";a:0:{}s:7:"flights";a:0:{}s:4:"flir";a:0:{}s:7:"florist";a:0:{}s:7:"flowers";a:0:{}s:3:"fly";a:0:{}s:3:"foo";a:0:{}s:4:"food";a:0:{}s:11:"foodnetwork";a:0:{}s:8:"football";a:0:{}s:4:"ford";a:0:{}s:5:"forex";a:0:{}s:7:"forsale";a:0:{}s:5:"forum";a:0:{}s:10:"foundation";a:0:{}s:3:"fox";a:0:{}s:4:"free";a:0:{}s:9:"fresenius";a:0:{}s:3:"frl";a:0:{}s:7:"frogans";a:0:{}s:9:"frontdoor";a:0:{}s:8:"frontier";a:0:{}s:3:"ftr";a:0:{}s:7:"fujitsu";a:0:{}s:3:"fun";a:0:{}s:4:"fund";a:0:{}s:9:"furniture";a:0:{}s:6:"futbol";a:0:{}s:3:"fyi";a:0:{}s:3:"gal";a:0:{}s:7:"gallery";a:0:{}s:5:"gallo";a:0:{}s:6:"gallup";a:0:{}s:4:"game";a:0:{}s:5:"games";a:0:{}s:3:"gap";a:0:{}s:6:"garden";a:0:{}s:3:"gay";a:0:{}s:4:"gbiz";a:0:{}s:3:"gdn";a:1:{s:4:"cnpy";a:0:{}}s:3:"gea";a:0:{}s:4:"gent";a:0:{}s:7:"genting";a:0:{}s:6:"george";a:0:{}s:4:"ggee";a:0:{}s:4:"gift";a:0:{}s:5:"gifts";a:0:{}s:5:"gives";a:0:{}s:6:"giving";a:0:{}s:5:"glass";a:0:{}s:3:"gle";a:0:{}s:6:"global";a:0:{}s:5:"globo";a:0:{}s:5:"gmail";a:0:{}s:4:"gmbh";a:0:{}s:3:"gmo";a:0:{}s:3:"gmx";a:0:{}s:7:"godaddy";a:0:{}s:4:"gold";a:0:{}s:9:"goldpoint";a:0:{}s:4:"golf";a:0:{}s:3:"goo";a:0:{}s:8:"goodyear";a:0:{}s:4:"goog";a:3:{s:5:"cloud";a:0:{}s:9:"translate";a:0:{}s:11:"usercontent";a:1:{s:1:"*";a:0:{}}}s:6:"google";a:0:{}s:3:"gop";a:0:{}s:3:"got";a:0:{}s:8:"grainger";a:0:{}s:8:"graphics";a:0:{}s:6:"gratis";a:0:{}s:5:"green";a:0:{}s:5:"gripe";a:0:{}s:7:"grocery";a:0:{}s:5:"group";a:1:{s:9:"discourse";a:0:{}}s:8:"guardian";a:0:{}s:5:"gucci";a:0:{}s:4:"guge";a:0:{}s:5:"guide";a:0:{}s:7:"guitars";a:0:{}s:4:"guru";a:0:{}s:4:"hair";a:0:{}s:7:"hamburg";a:0:{}s:7:"hangout";a:0:{}s:4:"haus";a:0:{}s:3:"hbo";a:0:{}s:4:"hdfc";a:0:{}s:8:"hdfcbank";a:0:{}s:6:"health";a:1:{s:3:"hra";a:0:{}}s:10:"healthcare";a:0:{}s:4:"help";a:0:{}s:8:"helsinki";a:0:{}s:4:"here";a:0:{}s:6:"hermes";a:0:{}s:4:"hgtv";a:0:{}s:6:"hiphop";a:0:{}s:9:"hisamitsu";a:0:{}s:7:"hitachi";a:0:{}s:3:"hiv";a:0:{}s:3:"hkt";a:0:{}s:6:"hockey";a:0:{}s:8:"holdings";a:0:{}s:7:"holiday";a:0:{}s:9:"homedepot";a:0:{}s:9:"homegoods";a:0:{}s:5:"homes";a:0:{}s:9:"homesense";a:0:{}s:5:"honda";a:0:{}s:5:"horse";a:0:{}s:8:"hospital";a:0:{}s:4:"host";a:10:{s:11:"cloudaccess";a:0:{}s:8:"freesite";a:0:{}s:7:"fastvps";a:0:{}s:6:"myfast";a:0:{}s:7:"tempurl";a:0:{}s:7:"wpmudev";a:0:{}s:4:"jele";a:0:{}s:8:"mircloud";a:0:{}s:6:"pcloud";a:0:{}s:4:"half";a:0:{}}s:7:"hosting";a:1:{s:9:"opencraft";a:0:{}}s:3:"hot";a:0:{}s:7:"hoteles";a:0:{}s:6:"hotels";a:0:{}s:7:"hotmail";a:0:{}s:5:"house";a:0:{}s:3:"how";a:0:{}s:4:"hsbc";a:0:{}s:6:"hughes";a:0:{}s:5:"hyatt";a:0:{}s:7:"hyundai";a:0:{}s:3:"ibm";a:0:{}s:4:"icbc";a:0:{}s:3:"ice";a:0:{}s:3:"icu";a:0:{}s:4:"ieee";a:0:{}s:3:"ifm";a:0:{}s:5:"ikano";a:0:{}s:6:"imamat";a:0:{}s:4:"imdb";a:0:{}s:4:"immo";a:0:{}s:10:"immobilien";a:0:{}s:3:"inc";a:0:{}s:10:"industries";a:0:{}s:8:"infiniti";a:0:{}s:3:"ing";a:0:{}s:3:"ink";a:0:{}s:9:"institute";a:0:{}s:9:"insurance";a:0:{}s:6:"insure";a:0:{}s:13:"international";a:0:{}s:6:"intuit";a:0:{}s:11:"investments";a:0:{}s:8:"ipiranga";a:0:{}s:5:"irish";a:0:{}s:7:"ismaili";a:0:{}s:3:"ist";a:0:{}s:8:"istanbul";a:0:{}s:4:"itau";a:0:{}s:3:"itv";a:0:{}s:6:"jaguar";a:0:{}s:4:"java";a:0:{}s:3:"jcb";a:0:{}s:4:"jeep";a:0:{}s:5:"jetzt";a:0:{}s:7:"jewelry";a:0:{}s:3:"jio";a:0:{}s:3:"jll";a:0:{}s:3:"jmp";a:0:{}s:3:"jnj";a:0:{}s:6:"joburg";a:0:{}s:3:"jot";a:0:{}s:3:"joy";a:0:{}s:8:"jpmorgan";a:0:{}s:4:"jprs";a:0:{}s:6:"juegos";a:0:{}s:7:"juniper";a:0:{}s:6:"kaufen";a:0:{}s:4:"kddi";a:0:{}s:11:"kerryhotels";a:0:{}s:14:"kerrylogistics";a:0:{}s:15:"kerryproperties";a:0:{}s:3:"kfh";a:0:{}s:3:"kia";a:0:{}s:4:"kids";a:0:{}s:3:"kim";a:0:{}s:6:"kinder";a:0:{}s:6:"kindle";a:0:{}s:7:"kitchen";a:0:{}s:4:"kiwi";a:0:{}s:5:"koeln";a:0:{}s:7:"komatsu";a:0:{}s:6:"kosher";a:0:{}s:4:"kpmg";a:0:{}s:3:"kpn";a:0:{}s:3:"krd";a:2:{s:2:"co";a:0:{}s:3:"edu";a:0:{}}s:4:"kred";a:0:{}s:9:"kuokgroup";a:0:{}s:5:"kyoto";a:0:{}s:7:"lacaixa";a:0:{}s:11:"lamborghini";a:0:{}s:5:"lamer";a:0:{}s:9:"lancaster";a:0:{}s:6:"lancia";a:0:{}s:4:"land";a:1:{s:6:"static";a:2:{s:3:"dev";a:0:{}s:5:"sites";a:0:{}}}s:9:"landrover";a:0:{}s:7:"lanxess";a:0:{}s:7:"lasalle";a:0:{}s:3:"lat";a:0:{}s:6:"latino";a:0:{}s:7:"latrobe";a:0:{}s:3:"law";a:0:{}s:6:"lawyer";a:0:{}s:3:"lds";a:0:{}s:5:"lease";a:0:{}s:7:"leclerc";a:0:{}s:6:"lefrak";a:0:{}s:5:"legal";a:0:{}s:4:"lego";a:0:{}s:5:"lexus";a:0:{}s:4:"lgbt";a:0:{}s:4:"lidl";a:0:{}s:4:"life";a:0:{}s:13:"lifeinsurance";a:0:{}s:9:"lifestyle";a:0:{}s:8:"lighting";a:0:{}s:4:"like";a:0:{}s:5:"lilly";a:0:{}s:7:"limited";a:0:{}s:4:"limo";a:0:{}s:7:"lincoln";a:0:{}s:5:"linde";a:0:{}s:4:"link";a:3:{s:4:"cyon";a:0:{}s:5:"mypep";a:0:{}s:4:"dweb";a:1:{s:1:"*";a:0:{}}}s:5:"lipsy";a:0:{}s:4:"live";a:1:{s:3:"hlx";a:0:{}}s:6:"living";a:0:{}s:3:"llc";a:0:{}s:3:"llp";a:0:{}s:4:"loan";a:0:{}s:5:"loans";a:0:{}s:6:"locker";a:0:{}s:5:"locus";a:0:{}s:4:"loft";a:0:{}s:3:"lol";a:1:{s:3:"omg";a:0:{}}s:6:"london";a:2:{s:2:"in";a:0:{}s:2:"of";a:0:{}}s:5:"lotte";a:0:{}s:5:"lotto";a:0:{}s:4:"love";a:0:{}s:3:"lpl";a:0:{}s:12:"lplfinancial";a:0:{}s:3:"ltd";a:0:{}s:4:"ltda";a:0:{}s:8:"lundbeck";a:0:{}s:4:"luxe";a:0:{}s:6:"luxury";a:0:{}s:5:"macys";a:0:{}s:6:"madrid";a:0:{}s:4:"maif";a:0:{}s:6:"maison";a:0:{}s:6:"makeup";a:0:{}s:3:"man";a:0:{}s:10:"management";a:1:{s:6:"router";a:0:{}}s:5:"mango";a:0:{}s:3:"map";a:0:{}s:6:"market";a:0:{}s:9:"marketing";a:2:{s:4:"from";a:0:{}s:4:"with";a:0:{}}s:7:"markets";a:0:{}s:8:"marriott";a:0:{}s:9:"marshalls";a:0:{}s:8:"maserati";a:0:{}s:6:"mattel";a:0:{}s:3:"mba";a:0:{}s:8:"mckinsey";a:0:{}s:3:"med";a:0:{}s:5:"media";a:0:{}s:4:"meet";a:0:{}s:9:"melbourne";a:0:{}s:4:"meme";a:0:{}s:8:"memorial";a:0:{}s:3:"men";a:2:{s:3:"for";a:0:{}s:6:"repair";a:0:{}}s:4:"menu";a:1:{s:5:"barsy";a:0:{}}s:8:"merckmsd";a:0:{}s:5:"miami";a:0:{}s:9:"microsoft";a:0:{}s:4:"mini";a:0:{}s:4:"mint";a:0:{}s:3:"mit";a:0:{}s:10:"mitsubishi";a:0:{}s:3:"mlb";a:0:{}s:3:"mls";a:0:{}s:3:"mma";a:0:{}s:6:"mobile";a:0:{}s:4:"moda";a:0:{}s:3:"moe";a:0:{}s:3:"moi";a:0:{}s:3:"mom";a:2:{s:3:"and";a:0:{}s:3:"for";a:0:{}}s:6:"monash";a:0:{}s:5:"money";a:0:{}s:7:"monster";a:0:{}s:6:"mormon";a:0:{}s:8:"mortgage";a:0:{}s:6:"moscow";a:0:{}s:4:"moto";a:0:{}s:11:"motorcycles";a:0:{}s:3:"mov";a:0:{}s:5:"movie";a:0:{}s:3:"msd";a:0:{}s:3:"mtn";a:0:{}s:3:"mtr";a:0:{}s:5:"music";a:0:{}s:6:"mutual";a:0:{}s:3:"nab";a:0:{}s:6:"nagoya";a:0:{}s:6:"natura";a:0:{}s:4:"navy";a:0:{}s:3:"nba";a:0:{}s:3:"nec";a:0:{}s:7:"netbank";a:0:{}s:7:"netflix";a:0:{}s:7:"network";a:5:{s:5:"alces";a:1:{s:1:"*";a:0:{}}s:2:"co";a:0:{}s:4:"arvo";a:0:{}s:7:"azimuth";a:0:{}s:4:"tlon";a:0:{}}s:7:"neustar";a:0:{}s:3:"new";a:0:{}s:4:"news";a:1:{s:10:"noticeable";a:0:{}}s:4:"next";a:0:{}s:10:"nextdirect";a:0:{}s:5:"nexus";a:0:{}s:3:"nfl";a:0:{}s:3:"ngo";a:0:{}s:3:"nhk";a:0:{}s:4:"nico";a:0:{}s:4:"nike";a:0:{}s:5:"nikon";a:0:{}s:5:"ninja";a:0:{}s:6:"nissan";a:0:{}s:6:"nissay";a:0:{}s:5:"nokia";a:0:{}s:18:"northwesternmutual";a:0:{}s:6:"norton";a:0:{}s:3:"now";a:0:{}s:6:"nowruz";a:0:{}s:5:"nowtv";a:0:{}s:3:"nra";a:0:{}s:3:"nrw";a:0:{}s:3:"ntt";a:0:{}s:3:"nyc";a:0:{}s:3:"obi";a:0:{}s:8:"observer";a:0:{}s:6:"office";a:0:{}s:7:"okinawa";a:0:{}s:6:"olayan";a:0:{}s:11:"olayangroup";a:0:{}s:7:"oldnavy";a:0:{}s:4:"ollo";a:0:{}s:5:"omega";a:0:{}s:3:"one";a:5:{s:5:"onred";a:1:{s:7:"staging";a:0:{}}s:3:"for";a:0:{}s:5:"under";a:0:{}s:7:"service";a:0:{}s:8:"homelink";a:0:{}}s:3:"ong";a:0:{}s:3:"onl";a:0:{}s:6:"online";a:3:{s:4:"eero";a:0:{}s:10:"eero-stage";a:0:{}s:5:"barsy";a:0:{}}s:3:"ooo";a:0:{}s:4:"open";a:0:{}s:6:"oracle";a:0:{}s:6:"orange";a:1:{s:4:"tech";a:0:{}}s:7:"organic";a:0:{}s:7:"origins";a:0:{}s:5:"osaka";a:0:{}s:6:"otsuka";a:0:{}s:3:"ott";a:0:{}s:3:"ovh";a:1:{s:7:"nerdpol";a:0:{}}s:4:"page";a:9:{s:3:"hlx";a:0:{}s:4:"hlx3";a:0:{}s:10:"translated";a:0:{}s:8:"codeberg";a:0:{}s:4:"pdns";a:0:{}s:5:"plesk";a:0:{}s:5:"prvcy";a:0:{}s:5:"rocky";a:0:{}s:6:"magnet";a:0:{}}s:9:"panasonic";a:0:{}s:5:"paris";a:0:{}s:4:"pars";a:0:{}s:8:"partners";a:0:{}s:5:"parts";a:0:{}s:5:"party";a:1:{s:3:"ybo";a:0:{}}s:9:"passagens";a:0:{}s:3:"pay";a:0:{}s:4:"pccw";a:0:{}s:3:"pet";a:0:{}s:6:"pfizer";a:0:{}s:8:"pharmacy";a:0:{}s:3:"phd";a:0:{}s:7:"philips";a:0:{}s:5:"phone";a:0:{}s:5:"photo";a:0:{}s:11:"photography";a:0:{}s:6:"photos";a:0:{}s:6:"physio";a:0:{}s:4:"pics";a:0:{}s:6:"pictet";a:0:{}s:8:"pictures";a:1:{i:1337;a:0:{}}s:3:"pid";a:0:{}s:3:"pin";a:0:{}s:4:"ping";a:0:{}s:4:"pink";a:0:{}s:7:"pioneer";a:0:{}s:5:"pizza";a:0:{}s:5:"place";a:1:{s:2:"co";a:0:{}}s:4:"play";a:0:{}s:11:"playstation";a:0:{}s:8:"plumbing";a:0:{}s:4:"plus";a:0:{}s:3:"pnc";a:0:{}s:4:"pohl";a:0:{}s:5:"poker";a:0:{}s:7:"politie";a:0:{}s:4:"porn";a:1:{s:5:"indie";a:0:{}}s:9:"pramerica";a:0:{}s:5:"praxi";a:0:{}s:5:"press";a:0:{}s:5:"prime";a:0:{}s:4:"prod";a:0:{}s:11:"productions";a:0:{}s:4:"prof";a:0:{}s:11:"progressive";a:0:{}s:5:"promo";a:0:{}s:10:"properties";a:0:{}s:8:"property";a:0:{}s:10:"protection";a:0:{}s:3:"pru";a:0:{}s:10:"prudential";a:0:{}s:3:"pub";a:1:{s:5:"barsy";a:0:{}}s:3:"pwc";a:0:{}s:4:"qpon";a:0:{}s:6:"quebec";a:0:{}s:5:"quest";a:0:{}s:6:"racing";a:0:{}s:5:"radio";a:0:{}s:4:"read";a:0:{}s:10:"realestate";a:0:{}s:7:"realtor";a:0:{}s:6:"realty";a:0:{}s:7:"recipes";a:0:{}s:3:"red";a:0:{}s:8:"redstone";a:0:{}s:11:"redumbrella";a:0:{}s:5:"rehab";a:0:{}s:5:"reise";a:0:{}s:6:"reisen";a:0:{}s:4:"reit";a:0:{}s:8:"reliance";a:0:{}s:3:"ren";a:0:{}s:4:"rent";a:0:{}s:7:"rentals";a:0:{}s:6:"repair";a:0:{}s:6:"report";a:0:{}s:10:"republican";a:0:{}s:4:"rest";a:0:{}s:10:"restaurant";a:0:{}s:6:"review";a:1:{s:3:"ybo";a:0:{}}s:7:"reviews";a:0:{}s:7:"rexroth";a:0:{}s:4:"rich";a:0:{}s:9:"richardli";a:0:{}s:5:"ricoh";a:0:{}s:3:"ril";a:0:{}s:3:"rio";a:0:{}s:3:"rip";a:1:{s:4:"clan";a:0:{}}s:6:"rocher";a:0:{}s:5:"rocks";a:3:{s:6:"myddns";a:0:{}s:9:"lima-city";a:0:{}s:8:"webspace";a:0:{}}s:5:"rodeo";a:0:{}s:6:"rogers";a:0:{}s:4:"room";a:0:{}s:4:"rsvp";a:0:{}s:5:"rugby";a:0:{}s:4:"ruhr";a:0:{}s:3:"run";a:10:{s:2:"hs";a:0:{}s:11:"development";a:0:{}s:7:"ravendb";a:0:{}s:7:"servers";a:0:{}s:5:"build";a:1:{s:1:"*";a:0:{}}s:4:"code";a:1:{s:1:"*";a:0:{}}s:8:"database";a:1:{s:1:"*";a:0:{}}s:9:"migration";a:1:{s:1:"*";a:0:{}}s:8:"onporter";a:0:{}s:4:"repl";a:0:{}}s:3:"rwe";a:0:{}s:6:"ryukyu";a:0:{}s:8:"saarland";a:0:{}s:4:"safe";a:0:{}s:6:"safety";a:0:{}s:6:"sakura";a:0:{}s:4:"sale";a:1:{s:3:"for";a:0:{}}s:5:"salon";a:0:{}s:8:"samsclub";a:0:{}s:7:"samsung";a:0:{}s:7:"sandvik";a:0:{}s:15:"sandvikcoromant";a:0:{}s:6:"sanofi";a:0:{}s:3:"sap";a:0:{}s:4:"sarl";a:0:{}s:3:"sas";a:0:{}s:4:"save";a:0:{}s:4:"saxo";a:0:{}s:3:"sbi";a:0:{}s:3:"sbs";a:0:{}s:3:"sca";a:0:{}s:3:"scb";a:0:{}s:10:"schaeffler";a:0:{}s:7:"schmidt";a:0:{}s:12:"scholarships";a:0:{}s:6:"school";a:0:{}s:6:"schule";a:0:{}s:7:"schwarz";a:0:{}s:7:"science";a:1:{s:3:"ybo";a:0:{}}s:4:"scot";a:2:{s:3:"edu";a:0:{}s:3:"gov";a:1:{s:7:"service";a:0:{}}}s:6:"search";a:0:{}s:4:"seat";a:0:{}s:6:"secure";a:0:{}s:8:"security";a:0:{}s:4:"seek";a:0:{}s:6:"select";a:0:{}s:5:"sener";a:0:{}s:8:"services";a:1:{s:9:"loginline";a:0:{}}s:3:"ses";a:0:{}s:5:"seven";a:0:{}s:3:"sew";a:0:{}s:3:"sex";a:0:{}s:4:"sexy";a:0:{}s:3:"sfr";a:0:{}s:9:"shangrila";a:0:{}s:5:"sharp";a:0:{}s:4:"shaw";a:0:{}s:5:"shell";a:0:{}s:4:"shia";a:0:{}s:7:"shiksha";a:0:{}s:5:"shoes";a:0:{}s:4:"shop";a:3:{s:4:"base";a:0:{}s:6:"hoplix";a:0:{}s:5:"barsy";a:0:{}}s:8:"shopping";a:0:{}s:6:"shouji";a:0:{}s:4:"show";a:0:{}s:8:"showtime";a:0:{}s:4:"silk";a:0:{}s:4:"sina";a:0:{}s:7:"singles";a:0:{}s:4:"site";a:17:{s:8:"cloudera";a:1:{s:1:"*";a:0:{}}s:4:"cyon";a:0:{}s:4:"fnwk";a:0:{}s:12:"folionetwork";a:0:{}s:7:"fastvps";a:0:{}s:4:"jele";a:0:{}s:5:"lelux";a:0:{}s:9:"loginline";a:0:{}s:5:"barsy";a:0:{}s:7:"mintere";a:0:{}s:6:"omniwe";a:0:{}s:10:"opensocial";a:0:{}s:10:"platformsh";a:1:{s:1:"*";a:0:{}}s:3:"tst";a:1:{s:1:"*";a:0:{}}s:4:"byen";a:0:{}s:4:"srht";a:0:{}s:8:"novecore";a:0:{}}s:3:"ski";a:0:{}s:4:"skin";a:0:{}s:3:"sky";a:0:{}s:5:"skype";a:0:{}s:5:"sling";a:0:{}s:5:"smart";a:0:{}s:5:"smile";a:0:{}s:4:"sncf";a:0:{}s:6:"soccer";a:0:{}s:6:"social";a:0:{}s:8:"softbank";a:0:{}s:8:"software";a:0:{}s:4:"sohu";a:0:{}s:5:"solar";a:0:{}s:9:"solutions";a:1:{s:5:"diher";a:1:{s:1:"*";a:0:{}}}s:4:"song";a:0:{}s:4:"sony";a:0:{}s:3:"soy";a:0:{}s:3:"spa";a:0:{}s:5:"space";a:3:{s:6:"myfast";a:0:{}s:4:"uber";a:0:{}s:6:"xs4all";a:0:{}}s:5:"sport";a:0:{}s:4:"spot";a:0:{}s:3:"srl";a:0:{}s:5:"stada";a:0:{}s:7:"staples";a:0:{}s:4:"star";a:0:{}s:9:"statebank";a:0:{}s:9:"statefarm";a:0:{}s:3:"stc";a:0:{}s:8:"stcgroup";a:0:{}s:9:"stockholm";a:0:{}s:7:"storage";a:0:{}s:5:"store";a:3:{s:6:"sellfy";a:0:{}s:8:"shopware";a:0:{}s:9:"storebase";a:0:{}}s:6:"stream";a:0:{}s:6:"studio";a:0:{}s:5:"study";a:0:{}s:5:"style";a:0:{}s:5:"sucks";a:0:{}s:8:"supplies";a:0:{}s:6:"supply";a:0:{}s:7:"support";a:1:{s:5:"barsy";a:0:{}}s:4:"surf";a:0:{}s:7:"surgery";a:0:{}s:6:"suzuki";a:0:{}s:6:"swatch";a:0:{}s:5:"swiss";a:0:{}s:6:"sydney";a:0:{}s:7:"systems";a:1:{s:11:"knightpoint";a:0:{}}s:3:"tab";a:0:{}s:6:"taipei";a:0:{}s:4:"talk";a:0:{}s:6:"taobao";a:0:{}s:6:"target";a:0:{}s:10:"tatamotors";a:0:{}s:5:"tatar";a:0:{}s:6:"tattoo";a:0:{}s:3:"tax";a:0:{}s:4:"taxi";a:0:{}s:3:"tci";a:0:{}s:3:"tdk";a:0:{}s:4:"team";a:2:{s:9:"discourse";a:0:{}s:8:"jelastic";a:0:{}}s:4:"tech";a:0:{}s:10:"technology";a:1:{s:2:"co";a:0:{}}s:7:"temasek";a:0:{}s:6:"tennis";a:0:{}s:4:"teva";a:0:{}s:3:"thd";a:0:{}s:7:"theater";a:0:{}s:7:"theatre";a:0:{}s:4:"tiaa";a:0:{}s:7:"tickets";a:0:{}s:6:"tienda";a:0:{}s:7:"tiffany";a:0:{}s:4:"tips";a:0:{}s:5:"tires";a:0:{}s:5:"tirol";a:0:{}s:6:"tjmaxx";a:0:{}s:3:"tjx";a:0:{}s:6:"tkmaxx";a:0:{}s:5:"tmall";a:0:{}s:5:"today";a:1:{s:12:"prequalifyme";a:0:{}}s:5:"tokyo";a:0:{}s:5:"tools";a:0:{}s:3:"top";a:2:{s:7:"now-dns";a:0:{}s:5:"ntdll";a:0:{}}s:5:"toray";a:0:{}s:7:"toshiba";a:0:{}s:5:"total";a:0:{}s:5:"tours";a:0:{}s:4:"town";a:0:{}s:6:"toyota";a:0:{}s:4:"toys";a:0:{}s:5:"trade";a:1:{s:3:"ybo";a:0:{}}s:7:"trading";a:0:{}s:8:"training";a:0:{}s:6:"travel";a:0:{}s:13:"travelchannel";a:0:{}s:9:"travelers";a:0:{}s:18:"travelersinsurance";a:0:{}s:5:"trust";a:0:{}s:3:"trv";a:0:{}s:4:"tube";a:0:{}s:3:"tui";a:0:{}s:5:"tunes";a:0:{}s:5:"tushu";a:0:{}s:3:"tvs";a:0:{}s:5:"ubank";a:0:{}s:3:"ubs";a:0:{}s:6:"unicom";a:0:{}s:10:"university";a:0:{}s:3:"uno";a:0:{}s:3:"uol";a:0:{}s:3:"ups";a:0:{}s:9:"vacations";a:0:{}s:4:"vana";a:0:{}s:8:"vanguard";a:0:{}s:5:"vegas";a:0:{}s:8:"ventures";a:0:{}s:8:"verisign";a:0:{}s:12:"versicherung";a:0:{}s:3:"vet";a:0:{}s:6:"viajes";a:0:{}s:5:"video";a:0:{}s:3:"vig";a:0:{}s:6:"viking";a:0:{}s:6:"villas";a:0:{}s:3:"vin";a:0:{}s:3:"vip";a:0:{}s:6:"virgin";a:0:{}s:4:"visa";a:0:{}s:6:"vision";a:0:{}s:4:"viva";a:0:{}s:4:"vivo";a:0:{}s:10:"vlaanderen";a:0:{}s:5:"vodka";a:0:{}s:10:"volkswagen";a:0:{}s:5:"volvo";a:0:{}s:4:"vote";a:0:{}s:6:"voting";a:0:{}s:4:"voto";a:0:{}s:6:"voyage";a:0:{}s:6:"vuelos";a:0:{}s:5:"wales";a:0:{}s:7:"walmart";a:0:{}s:6:"walter";a:0:{}s:4:"wang";a:0:{}s:7:"wanggou";a:0:{}s:5:"watch";a:0:{}s:7:"watches";a:0:{}s:7:"weather";a:0:{}s:14:"weatherchannel";a:0:{}s:6:"webcam";a:0:{}s:5:"weber";a:0:{}s:7:"website";a:0:{}s:7:"wedding";a:0:{}s:5:"weibo";a:0:{}s:4:"weir";a:0:{}s:7:"whoswho";a:0:{}s:4:"wien";a:0:{}s:4:"wiki";a:0:{}s:11:"williamhill";a:0:{}s:3:"win";a:1:{s:4:"that";a:0:{}}s:7:"windows";a:0:{}s:4:"wine";a:0:{}s:7:"winners";a:0:{}s:3:"wme";a:0:{}s:13:"wolterskluwer";a:0:{}s:8:"woodside";a:0:{}s:4:"work";a:2:{s:4:"from";a:0:{}s:2:"to";a:0:{}}s:5:"works";a:0:{}s:5:"world";a:0:{}s:3:"wow";a:0:{}s:3:"wtc";a:0:{}s:3:"wtf";a:0:{}s:4:"xbox";a:0:{}s:5:"xerox";a:0:{}s:7:"xfinity";a:0:{}s:6:"xihuan";a:0:{}s:3:"xin";a:0:{}s:9:"कॉम";a:0:{}s:9:"セール";a:0:{}s:6:"佛山";a:0:{}s:6:"慈善";a:0:{}s:6:"集团";a:0:{}s:6:"在线";a:0:{}s:6:"点看";a:0:{}s:9:"คอม";a:0:{}s:6:"八卦";a:0:{}s:8:"موقع";a:0:{}s:6:"公益";a:0:{}s:6:"公司";a:0:{}s:12:"香格里拉";a:0:{}s:6:"网站";a:0:{}s:6:"移动";a:0:{}s:9:"我爱你";a:0:{}s:12:"москва";a:0:{}s:14:"католик";a:0:{}s:12:"онлайн";a:0:{}s:8:"сайт";a:0:{}s:6:"联通";a:0:{}s:6:"קום";a:0:{}s:6:"时尚";a:0:{}s:6:"微博";a:0:{}s:9:"淡马锡";a:0:{}s:18:"ファッション";a:0:{}s:6:"орг";a:0:{}s:9:"नेट";a:0:{}s:9:"ストア";a:0:{}s:12:"アマゾン";a:0:{}s:6:"삼성";a:0:{}s:6:"商标";a:0:{}s:6:"商店";a:0:{}s:6:"商城";a:0:{}s:8:"дети";a:0:{}s:12:"ポイント";a:0:{}s:6:"新闻";a:0:{}s:6:"家電";a:0:{}s:6:"كوم";a:0:{}s:9:"中文网";a:0:{}s:6:"中信";a:0:{}s:6:"娱乐";a:0:{}s:6:"谷歌";a:0:{}s:12:"電訊盈科";a:0:{}s:6:"购物";a:0:{}s:12:"クラウド";a:0:{}s:6:"通販";a:0:{}s:6:"网店";a:0:{}s:15:"संगठन";a:0:{}s:6:"餐厅";a:0:{}s:6:"网络";a:0:{}s:6:"ком";a:0:{}s:9:"亚马逊";a:0:{}s:9:"诺基亚";a:0:{}s:6:"食品";a:0:{}s:9:"飞利浦";a:0:{}s:6:"手机";a:0:{}s:12:"ارامكو";a:0:{}s:14:"العليان";a:0:{}s:14:"اتصالات";a:0:{}s:10:"بازار";a:0:{}s:12:"ابوظبي";a:0:{}s:14:"كاثوليك";a:0:{}s:10:"همراه";a:0:{}s:6:"닷컴";a:0:{}s:6:"政府";a:0:{}s:8:"شبكة";a:0:{}s:8:"بيتك";a:0:{}s:6:"عرب";a:0:{}s:6:"机构";a:0:{}s:12:"组织机构";a:0:{}s:6:"健康";a:0:{}s:6:"招聘";a:0:{}s:6:"рус";a:10:{s:6:"биз";a:0:{}s:6:"ком";a:0:{}s:8:"крым";a:0:{}s:6:"мир";a:0:{}s:6:"мск";a:0:{}s:6:"орг";a:0:{}s:12:"самара";a:0:{}s:8:"сочи";a:0:{}s:6:"спб";a:0:{}s:2:"я";a:0:{}}s:6:"大拿";a:0:{}s:9:"みんな";a:0:{}s:12:"グーグル";a:0:{}s:6:"世界";a:0:{}s:6:"書籍";a:0:{}s:6:"网址";a:0:{}s:6:"닷넷";a:0:{}s:6:"コム";a:0:{}s:9:"天主教";a:0:{}s:6:"游戏";a:0:{}s:17:"vermögensberater";a:0:{}s:18:"vermögensberatung";a:0:{}s:6:"企业";a:0:{}s:6:"信息";a:0:{}s:15:"嘉里大酒店";a:0:{}s:6:"嘉里";a:0:{}s:6:"广东";a:0:{}s:6:"政务";a:0:{}s:3:"xyz";a:5:{s:8:"blogsite";a:0:{}s:9:"localzone";a:0:{}s:8:"crafting";a:0:{}s:5:"zapto";a:0:{}s:7:"telebit";a:1:{s:1:"*";a:0:{}}}s:6:"yachts";a:0:{}s:5:"yahoo";a:0:{}s:7:"yamaxun";a:0:{}s:6:"yandex";a:0:{}s:9:"yodobashi";a:0:{}s:4:"yoga";a:0:{}s:8:"yokohama";a:0:{}s:3:"you";a:0:{}s:7:"youtube";a:0:{}s:3:"yun";a:0:{}s:6:"zappos";a:0:{}s:4:"zara";a:0:{}s:4:"zero";a:0:{}s:3:"zip";a:0:{}s:4:"zone";a:4:{s:7:"cloud66";a:0:{}s:2:"hs";a:0:{}s:6:"triton";a:1:{s:1:"*";a:0:{}}s:4:"lima";a:0:{}}s:7:"zuerich";a:0:{}} \ No newline at end of file +a:1457:{s:2:"ac";a:9:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"mil";a:0:{}s:3:"org";a:0:{}s:3:"drr";a:0:{}s:8:"feedback";a:0:{}s:5:"forms";a:0:{}}s:2:"ad";a:1:{s:3:"nom";a:0:{}}s:2:"ae";a:8:{s:2:"co";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}s:2:"ac";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:8:"blogspot";a:0:{}}s:4:"aero";a:86:{s:22:"accident-investigation";a:0:{}s:19:"accident-prevention";a:0:{}s:9:"aerobatic";a:0:{}s:8:"aeroclub";a:0:{}s:9:"aerodrome";a:0:{}s:6:"agents";a:0:{}s:8:"aircraft";a:0:{}s:7:"airline";a:0:{}s:7:"airport";a:0:{}s:16:"air-surveillance";a:0:{}s:10:"airtraffic";a:0:{}s:19:"air-traffic-control";a:0:{}s:9:"ambulance";a:0:{}s:9:"amusement";a:0:{}s:11:"association";a:0:{}s:6:"author";a:0:{}s:10:"ballooning";a:0:{}s:6:"broker";a:0:{}s:3:"caa";a:0:{}s:5:"cargo";a:0:{}s:8:"catering";a:0:{}s:13:"certification";a:0:{}s:12:"championship";a:0:{}s:7:"charter";a:0:{}s:13:"civilaviation";a:0:{}s:4:"club";a:0:{}s:10:"conference";a:0:{}s:10:"consultant";a:0:{}s:10:"consulting";a:0:{}s:7:"control";a:0:{}s:7:"council";a:0:{}s:4:"crew";a:0:{}s:6:"design";a:0:{}s:4:"dgca";a:0:{}s:8:"educator";a:0:{}s:9:"emergency";a:0:{}s:6:"engine";a:0:{}s:8:"engineer";a:0:{}s:13:"entertainment";a:0:{}s:9:"equipment";a:0:{}s:8:"exchange";a:0:{}s:7:"express";a:0:{}s:10:"federation";a:0:{}s:6:"flight";a:0:{}s:4:"fuel";a:0:{}s:7:"gliding";a:0:{}s:10:"government";a:0:{}s:14:"groundhandling";a:0:{}s:5:"group";a:0:{}s:11:"hanggliding";a:0:{}s:9:"homebuilt";a:0:{}s:9:"insurance";a:0:{}s:7:"journal";a:0:{}s:10:"journalist";a:0:{}s:7:"leasing";a:0:{}s:9:"logistics";a:0:{}s:8:"magazine";a:0:{}s:11:"maintenance";a:0:{}s:5:"media";a:0:{}s:10:"microlight";a:0:{}s:9:"modelling";a:0:{}s:10:"navigation";a:0:{}s:11:"parachuting";a:0:{}s:11:"paragliding";a:0:{}s:21:"passenger-association";a:0:{}s:5:"pilot";a:0:{}s:5:"press";a:0:{}s:10:"production";a:0:{}s:10:"recreation";a:0:{}s:7:"repbody";a:0:{}s:3:"res";a:0:{}s:8:"research";a:0:{}s:10:"rotorcraft";a:0:{}s:6:"safety";a:0:{}s:9:"scientist";a:0:{}s:8:"services";a:0:{}s:4:"show";a:0:{}s:9:"skydiving";a:0:{}s:8:"software";a:0:{}s:7:"student";a:0:{}s:6:"trader";a:0:{}s:7:"trading";a:0:{}s:7:"trainer";a:0:{}s:5:"union";a:0:{}s:12:"workinggroup";a:0:{}s:5:"works";a:0:{}}s:2:"af";a:5:{s:3:"gov";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"edu";a:0:{}}s:2:"ag";a:5:{s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:2:"co";a:0:{}s:3:"nom";a:0:{}}s:2:"ai";a:6:{s:3:"off";a:0:{}s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"uwu";a:0:{}s:6:"framer";a:0:{}}s:2:"al";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:8:"blogspot";a:0:{}}s:2:"am";a:7:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:7:"commune";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:5:"radio";a:0:{}s:8:"blogspot";a:0:{}}s:2:"ao";a:6:{s:2:"ed";a:0:{}s:2:"gv";a:0:{}s:2:"og";a:0:{}s:2:"co";a:0:{}s:2:"pb";a:0:{}s:2:"it";a:0:{}}s:2:"aq";a:0:{}s:2:"ar";a:14:{s:3:"bet";a:0:{}s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:4:"coop";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"gov";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:6:"musica";a:0:{}s:6:"mutual";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:6:"senasa";a:0:{}s:3:"tur";a:0:{}}s:4:"arpa";a:6:{s:4:"e164";a:0:{}s:7:"in-addr";a:0:{}s:3:"ip6";a:0:{}s:4:"iris";a:0:{}s:3:"uri";a:0:{}s:3:"urn";a:0:{}}s:2:"as";a:1:{s:3:"gov";a:0:{}}s:4:"asia";a:3:{s:7:"cloudns";a:0:{}s:6:"daemon";a:0:{}s:3:"dix";a:0:{}}s:2:"at";a:18:{s:2:"ac";a:1:{s:3:"sth";a:0:{}}s:2:"co";a:1:{s:8:"blogspot";a:0:{}}s:2:"gv";a:0:{}s:2:"or";a:0:{}s:9:"funkfeuer";a:1:{s:4:"wien";a:0:{}}s:9:"futurecms";a:3:{s:1:"*";a:0:{}s:2:"ex";a:1:{s:1:"*";a:0:{}}s:2:"in";a:1:{s:1:"*";a:0:{}}}s:13:"futurehosting";a:0:{}s:13:"futuremailing";a:0:{}s:8:"ortsinfo";a:2:{s:2:"ex";a:1:{s:1:"*";a:0:{}}s:6:"kunden";a:1:{s:1:"*";a:0:{}}}s:3:"biz";a:0:{}s:4:"info";a:0:{}s:11:"123webseite";a:0:{}s:4:"priv";a:0:{}s:12:"myspreadshop";a:0:{}s:4:"12hp";a:0:{}s:3:"2ix";a:0:{}s:5:"4lima";a:0:{}s:9:"lima-city";a:0:{}}s:2:"au";a:18:{s:3:"com";a:3:{s:8:"blogspot";a:0:{}s:9:"cloudlets";a:1:{s:3:"mel";a:0:{}}s:12:"myspreadshop";a:0:{}}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:9:{s:3:"act";a:0:{}s:8:"catholic";a:0:{}s:3:"nsw";a:1:{s:7:"schools";a:0:{}}s:2:"nt";a:0:{}s:3:"qld";a:0:{}s:2:"sa";a:0:{}s:3:"tas";a:0:{}s:3:"vic";a:0:{}s:2:"wa";a:0:{}}s:3:"gov";a:5:{s:3:"qld";a:0:{}s:2:"sa";a:0:{}s:3:"tas";a:0:{}s:3:"vic";a:0:{}s:2:"wa";a:0:{}}s:3:"asn";a:0:{}s:2:"id";a:0:{}s:4:"info";a:0:{}s:4:"conf";a:0:{}s:2:"oz";a:0:{}s:3:"act";a:0:{}s:3:"nsw";a:0:{}s:2:"nt";a:0:{}s:3:"qld";a:0:{}s:2:"sa";a:0:{}s:3:"tas";a:0:{}s:3:"vic";a:0:{}s:2:"wa";a:0:{}}s:2:"aw";a:1:{s:3:"com";a:0:{}}s:2:"ax";a:0:{}s:2:"az";a:12:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"int";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:4:"info";a:0:{}s:2:"pp";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"pro";a:0:{}s:3:"biz";a:0:{}}s:2:"ba";a:8:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"rs";a:0:{}s:8:"blogspot";a:0:{}}s:2:"bb";a:10:{s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:5:"store";a:0:{}s:2:"tv";a:0:{}}s:2:"bd";a:1:{s:1:"*";a:0:{}}s:2:"be";a:9:{s:2:"ac";a:0:{}s:7:"cloudns";a:0:{}s:10:"webhosting";a:0:{}s:8:"blogspot";a:0:{}s:18:"interhostsolutions";a:1:{s:5:"cloud";a:0:{}}s:8:"kuleuven";a:1:{s:7:"ezproxy";a:0:{}}s:10:"123website";a:0:{}s:12:"myspreadshop";a:0:{}s:8:"transurl";a:1:{s:1:"*";a:0:{}}}s:2:"bf";a:1:{s:3:"gov";a:0:{}}s:2:"bg";a:38:{s:1:"a";a:0:{}s:1:"b";a:0:{}s:1:"c";a:0:{}s:1:"d";a:0:{}s:1:"e";a:0:{}s:1:"f";a:0:{}s:1:"g";a:0:{}s:1:"h";a:0:{}s:1:"i";a:0:{}s:1:"j";a:0:{}s:1:"k";a:0:{}s:1:"l";a:0:{}s:1:"m";a:0:{}s:1:"n";a:0:{}s:1:"o";a:0:{}s:1:"p";a:0:{}s:1:"q";a:0:{}s:1:"r";a:0:{}s:1:"s";a:0:{}s:1:"t";a:0:{}s:1:"u";a:0:{}s:1:"v";a:0:{}s:1:"w";a:0:{}s:1:"x";a:0:{}s:1:"y";a:0:{}s:1:"z";a:0:{}i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}i:8;a:0:{}i:9;a:0:{}s:8:"blogspot";a:0:{}s:5:"barsy";a:0:{}}s:2:"bh";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}}s:2:"bi";a:5:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:2:"or";a:0:{}s:3:"org";a:0:{}}s:3:"biz";a:15:{s:11:"activetrail";a:0:{}s:7:"cloudns";a:0:{}s:4:"jozi";a:0:{}s:6:"dyndns";a:0:{}s:10:"for-better";a:0:{}s:8:"for-more";a:0:{}s:8:"for-some";a:0:{}s:7:"for-the";a:0:{}s:6:"selfip";a:0:{}s:6:"webhop";a:0:{}s:3:"orx";a:0:{}s:6:"mmafan";a:0:{}s:5:"myftp";a:0:{}s:5:"no-ip";a:0:{}s:7:"dscloud";a:0:{}}s:2:"bj";a:21:{s:6:"africa";a:0:{}s:4:"agro";a:0:{}s:11:"architectes";a:0:{}s:5:"assur";a:0:{}s:7:"avocats";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"eco";a:0:{}s:5:"econo";a:0:{}s:3:"edu";a:0:{}s:4:"info";a:0:{}s:7:"loisirs";a:0:{}s:5:"money";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"ote";a:0:{}s:5:"resto";a:0:{}s:10:"restaurant";a:0:{}s:7:"tourism";a:0:{}s:4:"univ";a:0:{}s:8:"blogspot";a:0:{}}s:2:"bm";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"bn";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"co";a:0:{}}s:2:"bo";a:41:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"int";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"mil";a:0:{}s:2:"tv";a:0:{}s:3:"web";a:0:{}s:8:"academia";a:0:{}s:4:"agro";a:0:{}s:4:"arte";a:0:{}s:4:"blog";a:0:{}s:7:"bolivia";a:0:{}s:7:"ciencia";a:0:{}s:11:"cooperativa";a:0:{}s:10:"democracia";a:0:{}s:7:"deporte";a:0:{}s:8:"ecologia";a:0:{}s:8:"economia";a:0:{}s:7:"empresa";a:0:{}s:8:"indigena";a:0:{}s:9:"industria";a:0:{}s:4:"info";a:0:{}s:8:"medicina";a:0:{}s:10:"movimiento";a:0:{}s:6:"musica";a:0:{}s:7:"natural";a:0:{}s:6:"nombre";a:0:{}s:8:"noticias";a:0:{}s:6:"patria";a:0:{}s:8:"politica";a:0:{}s:11:"profesional";a:0:{}s:13:"plurinacional";a:0:{}s:6:"pueblo";a:0:{}s:7:"revista";a:0:{}s:5:"salud";a:0:{}s:10:"tecnologia";a:0:{}s:5:"tksat";a:0:{}s:10:"transporte";a:0:{}s:4:"wiki";a:0:{}}s:2:"br";a:141:{s:6:"9guacu";a:0:{}s:3:"abc";a:0:{}s:3:"adm";a:0:{}s:3:"adv";a:0:{}s:3:"agr";a:0:{}s:3:"aju";a:0:{}s:2:"am";a:0:{}s:5:"anani";a:0:{}s:9:"aparecida";a:0:{}s:3:"app";a:0:{}s:3:"arq";a:0:{}s:3:"art";a:0:{}s:3:"ato";a:0:{}s:1:"b";a:0:{}s:7:"barueri";a:0:{}s:5:"belem";a:0:{}s:3:"bhz";a:0:{}s:3:"bib";a:0:{}s:3:"bio";a:0:{}s:4:"blog";a:0:{}s:3:"bmd";a:0:{}s:8:"boavista";a:0:{}s:3:"bsb";a:0:{}s:13:"campinagrande";a:0:{}s:8:"campinas";a:0:{}s:6:"caxias";a:0:{}s:3:"cim";a:0:{}s:3:"cng";a:0:{}s:3:"cnt";a:0:{}s:3:"com";a:2:{s:8:"blogspot";a:0:{}s:10:"simplesite";a:0:{}}s:8:"contagem";a:0:{}s:4:"coop";a:0:{}s:3:"coz";a:0:{}s:3:"cri";a:0:{}s:6:"cuiaba";a:0:{}s:8:"curitiba";a:0:{}s:3:"def";a:0:{}s:3:"des";a:0:{}s:3:"det";a:0:{}s:3:"dev";a:0:{}s:3:"ecn";a:0:{}s:3:"eco";a:0:{}s:3:"edu";a:0:{}s:3:"emp";a:0:{}s:3:"enf";a:0:{}s:3:"eng";a:0:{}s:3:"esp";a:0:{}s:3:"etc";a:0:{}s:3:"eti";a:0:{}s:3:"far";a:0:{}s:5:"feira";a:0:{}s:4:"flog";a:0:{}s:7:"floripa";a:0:{}s:2:"fm";a:0:{}s:3:"fnd";a:0:{}s:6:"fortal";a:0:{}s:3:"fot";a:0:{}s:3:"foz";a:0:{}s:3:"fst";a:0:{}s:3:"g12";a:0:{}s:3:"geo";a:0:{}s:3:"ggf";a:0:{}s:7:"goiania";a:0:{}s:3:"gov";a:27:{s:2:"ac";a:0:{}s:2:"al";a:0:{}s:2:"am";a:0:{}s:2:"ap";a:0:{}s:2:"ba";a:0:{}s:2:"ce";a:0:{}s:2:"df";a:0:{}s:2:"es";a:0:{}s:2:"go";a:0:{}s:2:"ma";a:0:{}s:2:"mg";a:0:{}s:2:"ms";a:0:{}s:2:"mt";a:0:{}s:2:"pa";a:0:{}s:2:"pb";a:0:{}s:2:"pe";a:0:{}s:2:"pi";a:0:{}s:2:"pr";a:0:{}s:2:"rj";a:0:{}s:2:"rn";a:0:{}s:2:"ro";a:0:{}s:2:"rr";a:0:{}s:2:"rs";a:0:{}s:2:"sc";a:0:{}s:2:"se";a:0:{}s:2:"sp";a:0:{}s:2:"to";a:0:{}}s:3:"gru";a:0:{}s:3:"imb";a:0:{}s:3:"ind";a:0:{}s:3:"inf";a:0:{}s:3:"jab";a:0:{}s:5:"jampa";a:0:{}s:3:"jdf";a:0:{}s:9:"joinville";a:0:{}s:3:"jor";a:0:{}s:3:"jus";a:0:{}s:3:"leg";a:27:{s:2:"ac";a:0:{}s:2:"al";a:0:{}s:2:"am";a:0:{}s:2:"ap";a:0:{}s:2:"ba";a:0:{}s:2:"ce";a:0:{}s:2:"df";a:0:{}s:2:"es";a:0:{}s:2:"go";a:0:{}s:2:"ma";a:0:{}s:2:"mg";a:0:{}s:2:"ms";a:0:{}s:2:"mt";a:0:{}s:2:"pa";a:0:{}s:2:"pb";a:0:{}s:2:"pe";a:0:{}s:2:"pi";a:0:{}s:2:"pr";a:0:{}s:2:"rj";a:0:{}s:2:"rn";a:0:{}s:2:"ro";a:0:{}s:2:"rr";a:0:{}s:2:"rs";a:0:{}s:2:"sc";a:0:{}s:2:"se";a:0:{}s:2:"sp";a:0:{}s:2:"to";a:0:{}}s:3:"lel";a:0:{}s:3:"log";a:0:{}s:8:"londrina";a:0:{}s:6:"macapa";a:0:{}s:6:"maceio";a:0:{}s:6:"manaus";a:0:{}s:7:"maringa";a:0:{}s:3:"mat";a:0:{}s:3:"med";a:0:{}s:3:"mil";a:0:{}s:6:"morena";a:0:{}s:2:"mp";a:0:{}s:3:"mus";a:0:{}s:5:"natal";a:0:{}s:3:"net";a:0:{}s:7:"niteroi";a:0:{}s:3:"nom";a:1:{s:1:"*";a:0:{}}s:3:"not";a:0:{}s:3:"ntr";a:0:{}s:3:"odo";a:0:{}s:3:"ong";a:0:{}s:3:"org";a:0:{}s:6:"osasco";a:0:{}s:6:"palmas";a:0:{}s:3:"poa";a:0:{}s:3:"ppg";a:0:{}s:3:"pro";a:0:{}s:3:"psc";a:0:{}s:3:"psi";a:0:{}s:3:"pvh";a:0:{}s:3:"qsl";a:0:{}s:5:"radio";a:0:{}s:3:"rec";a:0:{}s:6:"recife";a:0:{}s:3:"rep";a:0:{}s:8:"ribeirao";a:0:{}s:3:"rio";a:0:{}s:9:"riobranco";a:0:{}s:8:"riopreto";a:0:{}s:8:"salvador";a:0:{}s:5:"sampa";a:0:{}s:10:"santamaria";a:0:{}s:10:"santoandre";a:0:{}s:11:"saobernardo";a:0:{}s:8:"saogonca";a:0:{}s:3:"seg";a:0:{}s:3:"sjc";a:0:{}s:3:"slg";a:0:{}s:3:"slz";a:0:{}s:8:"sorocaba";a:0:{}s:3:"srv";a:0:{}s:4:"taxi";a:0:{}s:2:"tc";a:0:{}s:3:"tec";a:0:{}s:3:"teo";a:0:{}s:3:"the";a:0:{}s:3:"tmp";a:0:{}s:3:"trd";a:0:{}s:3:"tur";a:0:{}s:2:"tv";a:0:{}s:3:"udi";a:0:{}s:3:"vet";a:0:{}s:3:"vix";a:0:{}s:4:"vlog";a:0:{}s:4:"wiki";a:0:{}s:3:"zlg";a:0:{}}s:2:"bs";a:6:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"we";a:0:{}}s:2:"bt";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"bv";a:0:{}s:2:"bw";a:2:{s:2:"co";a:0:{}s:3:"org";a:0:{}}s:2:"by";a:6:{s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:2:"of";a:0:{}s:7:"mycloud";a:0:{}s:9:"mediatech";a:0:{}}s:2:"bz";a:8:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"za";a:0:{}s:5:"mydns";a:0:{}s:3:"gsj";a:0:{}}s:2:"ca";a:22:{s:2:"ab";a:0:{}s:2:"bc";a:0:{}s:2:"mb";a:0:{}s:2:"nb";a:0:{}s:2:"nf";a:0:{}s:2:"nl";a:0:{}s:2:"ns";a:0:{}s:2:"nt";a:0:{}s:2:"nu";a:0:{}s:2:"on";a:0:{}s:2:"pe";a:0:{}s:2:"qc";a:0:{}s:2:"sk";a:0:{}s:2:"yk";a:0:{}s:2:"gc";a:0:{}s:5:"barsy";a:0:{}s:5:"awdev";a:1:{s:1:"*";a:0:{}}s:2:"co";a:0:{}s:8:"blogspot";a:0:{}s:5:"no-ip";a:0:{}s:12:"myspreadshop";a:0:{}s:3:"box";a:0:{}}s:3:"cat";a:0:{}s:2:"cc";a:10:{s:10:"cleverapps";a:0:{}s:7:"cloudns";a:0:{}s:9:"ftpaccess";a:0:{}s:11:"game-server";a:0:{}s:8:"myphotos";a:0:{}s:9:"scrapping";a:0:{}s:6:"twmail";a:0:{}s:3:"csx";a:0:{}s:13:"fantasyleague";a:0:{}s:5:"spawn";a:1:{s:9:"instances";a:0:{}}}s:2:"cd";a:1:{s:3:"gov";a:0:{}}s:2:"cf";a:1:{s:8:"blogspot";a:0:{}}s:2:"cg";a:0:{}s:2:"ch";a:15:{s:7:"square7";a:0:{}s:10:"cloudscale";a:3:{s:4:"cust";a:0:{}s:3:"lpg";a:1:{s:7:"objects";a:0:{}}s:3:"rma";a:1:{s:7:"objects";a:0:{}}}s:7:"cloudns";a:0:{}s:8:"blogspot";a:0:{}s:4:"flow";a:2:{s:2:"ae";a:1:{s:4:"alp1";a:0:{}}s:9:"appengine";a:0:{}}s:14:"linkyard-cloud";a:0:{}s:7:"dnsking";a:0:{}s:6:"gotdns";a:0:{}s:10:"123website";a:0:{}s:12:"myspreadshop";a:0:{}s:7:"firenet";a:2:{s:1:"*";a:0:{}s:3:"svc";a:1:{s:1:"*";a:0:{}}}s:4:"12hp";a:0:{}s:3:"2ix";a:0:{}s:5:"4lima";a:0:{}s:9:"lima-city";a:0:{}}s:2:"ci";a:16:{s:3:"org";a:0:{}s:2:"or";a:0:{}s:3:"com";a:0:{}s:2:"co";a:0:{}s:3:"edu";a:0:{}s:2:"ed";a:0:{}s:2:"ac";a:0:{}s:3:"net";a:0:{}s:2:"go";a:0:{}s:4:"asso";a:0:{}s:9:"aéroport";a:0:{}s:3:"int";a:0:{}s:6:"presse";a:0:{}s:2:"md";a:0:{}s:4:"gouv";a:0:{}s:3:"fin";a:0:{}}s:2:"ck";a:2:{s:1:"*";a:0:{}s:3:"www";a:1:{s:1:"!";s:0:"";}}s:2:"cl";a:6:{s:2:"co";a:0:{}s:3:"gob";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:7:"cloudns";a:0:{}s:8:"blogspot";a:0:{}}s:2:"cm";a:4:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}}s:2:"cn";a:48:{s:2:"ac";a:0:{}s:3:"com";a:2:{s:9:"amazonaws";a:6:{s:10:"cn-north-1";a:10:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:13:"s3-deprecated";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}}s:14:"cn-northwest-1";a:9:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}}s:7:"compute";a:1:{s:1:"*";a:0:{}}s:7:"airflow";a:2:{s:10:"cn-north-1";a:1:{s:1:"*";a:0:{}}s:14:"cn-northwest-1";a:1:{s:1:"*";a:0:{}}}s:2:"eb";a:2:{s:10:"cn-north-1";a:0:{}s:14:"cn-northwest-1";a:0:{}}s:3:"elb";a:1:{s:1:"*";a:0:{}}}s:9:"sagemaker";a:2:{s:10:"cn-north-1";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:14:"cn-northwest-1";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}}}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"mil";a:0:{}s:6:"公司";a:0:{}s:6:"网络";a:0:{}s:6:"網絡";a:0:{}s:2:"ah";a:0:{}s:2:"bj";a:0:{}s:2:"cq";a:0:{}s:2:"fj";a:0:{}s:2:"gd";a:0:{}s:2:"gs";a:0:{}s:2:"gz";a:0:{}s:2:"gx";a:0:{}s:2:"ha";a:0:{}s:2:"hb";a:0:{}s:2:"he";a:0:{}s:2:"hi";a:0:{}s:2:"hl";a:0:{}s:2:"hn";a:0:{}s:2:"jl";a:0:{}s:2:"js";a:0:{}s:2:"jx";a:0:{}s:2:"ln";a:0:{}s:2:"nm";a:0:{}s:2:"nx";a:0:{}s:2:"qh";a:0:{}s:2:"sc";a:0:{}s:2:"sd";a:0:{}s:2:"sh";a:1:{s:2:"as";a:0:{}}s:2:"sn";a:0:{}s:2:"sx";a:0:{}s:2:"tj";a:0:{}s:2:"xj";a:0:{}s:2:"xz";a:0:{}s:2:"yn";a:0:{}s:2:"zj";a:0:{}s:2:"hk";a:0:{}s:2:"mo";a:0:{}s:2:"tw";a:0:{}s:10:"canva-apps";a:0:{}s:9:"canvasite";a:1:{s:2:"my";a:1:{s:1:"*";a:0:{}}}s:11:"myqnapcloud";a:0:{}s:12:"quickconnect";a:1:{s:6:"direct";a:0:{}}}s:2:"co";a:24:{s:4:"arts";a:0:{}s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:4:"firm";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"nom";a:0:{}s:3:"org";a:0:{}s:3:"rec";a:0:{}s:3:"web";a:0:{}s:5:"carrd";a:0:{}s:3:"crd";a:0:{}s:4:"otap";a:1:{s:1:"*";a:0:{}}s:9:"leadpages";a:0:{}s:6:"lpages";a:0:{}s:4:"mypi";a:0:{}s:3:"n4t";a:0:{}s:4:"xmit";a:1:{s:1:"*";a:0:{}}s:16:"firewalledreplit";a:1:{s:2:"id";a:0:{}}s:4:"repl";a:1:{s:2:"id";a:0:{}}s:8:"supabase";a:0:{}}s:3:"com";a:430:{s:8:"a2hosted";a:0:{}s:8:"cpserver";a:0:{}s:13:"devcdnaccesso";a:1:{s:1:"*";a:0:{}}s:13:"adobeaemcloud";a:1:{s:3:"dev";a:1:{s:1:"*";a:0:{}}}s:10:"airkitapps";a:0:{}s:13:"airkitapps-au";a:0:{}s:10:"aivencloud";a:0:{}s:9:"kasserver";a:0:{}s:9:"amazonaws";a:70:{s:10:"af-south-1";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:9:"ap-east-1";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:14:"ap-northeast-1";a:12:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:17:"analytics-gateway";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:14:"ap-northeast-2";a:12:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:17:"analytics-gateway";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:14:"ap-northeast-3";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:10:"ap-south-1";a:12:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:17:"analytics-gateway";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:10:"ap-south-2";a:9:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}}s:14:"ap-southeast-1";a:12:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:17:"analytics-gateway";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:14:"ap-southeast-2";a:12:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:17:"analytics-gateway";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:14:"ap-southeast-3";a:9:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}}s:14:"ap-southeast-4";a:9:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}}s:12:"ca-central-1";a:13:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:5:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:9:"ca-west-1";a:10:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:5:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}s:10:"s3-website";a:0:{}}s:12:"eu-central-1";a:12:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:17:"analytics-gateway";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:12:"eu-central-2";a:9:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}}s:10:"eu-north-1";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:10:"eu-south-1";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:10:"eu-south-2";a:9:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}}s:9:"eu-west-1";a:13:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:13:"s3-deprecated";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:17:"analytics-gateway";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:9:"eu-west-2";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:9:"eu-west-3";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:12:"il-central-1";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:1:{s:3:"vfs";a:0:{}}}s:12:"me-central-1";a:9:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}}s:10:"me-south-1";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:2:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:9:"sa-east-1";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:3:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:9:"us-east-1";a:15:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:5:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:13:"s3-deprecated";a:0:{}s:7:"s3-fips";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:17:"analytics-gateway";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:9:"us-east-2";a:15:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:4:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:13:"s3-deprecated";a:0:{}s:7:"s3-fips";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:17:"analytics-gateway";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:13:"us-gov-east-1";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:4:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}}s:13:"us-gov-west-1";a:11:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:4:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}}s:9:"us-west-1";a:13:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:5:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:9:"us-west-2";a:15:{s:11:"execute-api";a:0:{}s:13:"emrappui-prod";a:0:{}s:17:"emrnotebooks-prod";a:0:{}s:14:"emrstudio-prod";a:0:{}s:9:"dualstack";a:5:{s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:7:"s3-fips";a:0:{}s:10:"s3-website";a:0:{}}s:2:"s3";a:0:{}s:14:"s3-accesspoint";a:0:{}s:19:"s3-accesspoint-fips";a:0:{}s:13:"s3-deprecated";a:0:{}s:7:"s3-fips";a:0:{}s:16:"s3-object-lambda";a:0:{}s:10:"s3-website";a:0:{}s:17:"analytics-gateway";a:0:{}s:10:"aws-cloud9";a:1:{s:14:"webview-assets";a:0:{}}s:6:"cloud9";a:2:{s:3:"vfs";a:0:{}s:14:"webview-assets";a:0:{}}}s:7:"compute";a:1:{s:1:"*";a:0:{}}s:9:"compute-1";a:1:{s:1:"*";a:0:{}}s:7:"airflow";a:20:{s:10:"af-south-1";a:1:{s:1:"*";a:0:{}}s:9:"ap-east-1";a:1:{s:1:"*";a:0:{}}s:14:"ap-northeast-1";a:1:{s:1:"*";a:0:{}}s:14:"ap-northeast-2";a:1:{s:1:"*";a:0:{}}s:10:"ap-south-1";a:1:{s:1:"*";a:0:{}}s:14:"ap-southeast-1";a:1:{s:1:"*";a:0:{}}s:14:"ap-southeast-2";a:1:{s:1:"*";a:0:{}}s:12:"ca-central-1";a:1:{s:1:"*";a:0:{}}s:12:"eu-central-1";a:1:{s:1:"*";a:0:{}}s:10:"eu-north-1";a:1:{s:1:"*";a:0:{}}s:10:"eu-south-1";a:1:{s:1:"*";a:0:{}}s:9:"eu-west-1";a:1:{s:1:"*";a:0:{}}s:9:"eu-west-2";a:1:{s:1:"*";a:0:{}}s:9:"eu-west-3";a:1:{s:1:"*";a:0:{}}s:10:"me-south-1";a:1:{s:1:"*";a:0:{}}s:9:"sa-east-1";a:1:{s:1:"*";a:0:{}}s:9:"us-east-1";a:1:{s:1:"*";a:0:{}}s:9:"us-east-2";a:1:{s:1:"*";a:0:{}}s:9:"us-west-1";a:1:{s:1:"*";a:0:{}}s:9:"us-west-2";a:1:{s:1:"*";a:0:{}}}s:2:"s3";a:0:{}s:4:"s3-1";a:0:{}s:12:"s3-ap-east-1";a:0:{}s:17:"s3-ap-northeast-1";a:0:{}s:17:"s3-ap-northeast-2";a:0:{}s:17:"s3-ap-northeast-3";a:0:{}s:13:"s3-ap-south-1";a:0:{}s:17:"s3-ap-southeast-1";a:0:{}s:17:"s3-ap-southeast-2";a:0:{}s:15:"s3-ca-central-1";a:0:{}s:15:"s3-eu-central-1";a:0:{}s:13:"s3-eu-north-1";a:0:{}s:12:"s3-eu-west-1";a:0:{}s:12:"s3-eu-west-2";a:0:{}s:12:"s3-eu-west-3";a:0:{}s:13:"s3-external-1";a:0:{}s:21:"s3-fips-us-gov-east-1";a:0:{}s:21:"s3-fips-us-gov-west-1";a:0:{}s:9:"s3-global";a:1:{s:11:"accesspoint";a:1:{s:4:"mrap";a:0:{}}}s:13:"s3-me-south-1";a:0:{}s:12:"s3-sa-east-1";a:0:{}s:12:"s3-us-east-2";a:0:{}s:16:"s3-us-gov-east-1";a:0:{}s:16:"s3-us-gov-west-1";a:0:{}s:12:"s3-us-west-1";a:0:{}s:12:"s3-us-west-2";a:0:{}s:25:"s3-website-ap-northeast-1";a:0:{}s:25:"s3-website-ap-southeast-1";a:0:{}s:25:"s3-website-ap-southeast-2";a:0:{}s:20:"s3-website-eu-west-1";a:0:{}s:20:"s3-website-sa-east-1";a:0:{}s:20:"s3-website-us-east-1";a:0:{}s:24:"s3-website-us-gov-west-1";a:0:{}s:20:"s3-website-us-west-1";a:0:{}s:20:"s3-website-us-west-2";a:0:{}s:3:"elb";a:1:{s:1:"*";a:0:{}}}s:13:"amazoncognito";a:28:{s:10:"af-south-1";a:1:{s:4:"auth";a:0:{}}s:14:"ap-northeast-1";a:1:{s:4:"auth";a:0:{}}s:14:"ap-northeast-2";a:1:{s:4:"auth";a:0:{}}s:14:"ap-northeast-3";a:1:{s:4:"auth";a:0:{}}s:10:"ap-south-1";a:1:{s:4:"auth";a:0:{}}s:10:"ap-south-2";a:1:{s:4:"auth";a:0:{}}s:14:"ap-southeast-1";a:1:{s:4:"auth";a:0:{}}s:14:"ap-southeast-2";a:1:{s:4:"auth";a:0:{}}s:14:"ap-southeast-3";a:1:{s:4:"auth";a:0:{}}s:14:"ap-southeast-4";a:1:{s:4:"auth";a:0:{}}s:12:"ca-central-1";a:1:{s:4:"auth";a:0:{}}s:12:"eu-central-1";a:1:{s:4:"auth";a:0:{}}s:12:"eu-central-2";a:1:{s:4:"auth";a:0:{}}s:10:"eu-north-1";a:1:{s:4:"auth";a:0:{}}s:10:"eu-south-1";a:1:{s:4:"auth";a:0:{}}s:10:"eu-south-2";a:1:{s:4:"auth";a:0:{}}s:9:"eu-west-1";a:1:{s:4:"auth";a:0:{}}s:9:"eu-west-2";a:1:{s:4:"auth";a:0:{}}s:9:"eu-west-3";a:1:{s:4:"auth";a:0:{}}s:12:"il-central-1";a:1:{s:4:"auth";a:0:{}}s:12:"me-central-1";a:1:{s:4:"auth";a:0:{}}s:10:"me-south-1";a:1:{s:4:"auth";a:0:{}}s:9:"sa-east-1";a:1:{s:4:"auth";a:0:{}}s:9:"us-east-1";a:2:{s:4:"auth";a:0:{}s:9:"auth-fips";a:0:{}}s:9:"us-east-2";a:2:{s:4:"auth";a:0:{}s:9:"auth-fips";a:0:{}}s:13:"us-gov-west-1";a:1:{s:9:"auth-fips";a:0:{}}s:9:"us-west-1";a:2:{s:4:"auth";a:0:{}s:9:"auth-fips";a:0:{}}s:9:"us-west-2";a:2:{s:4:"auth";a:0:{}s:9:"auth-fips";a:0:{}}}s:10:"amplifyapp";a:1:{s:1:"*";a:0:{}}s:12:"awsapprunner";a:1:{s:1:"*";a:0:{}}s:7:"awsapps";a:0:{}s:16:"elasticbeanstalk";a:25:{s:10:"af-south-1";a:0:{}s:9:"ap-east-1";a:0:{}s:14:"ap-northeast-1";a:0:{}s:14:"ap-northeast-2";a:0:{}s:14:"ap-northeast-3";a:0:{}s:10:"ap-south-1";a:0:{}s:14:"ap-southeast-1";a:0:{}s:14:"ap-southeast-2";a:0:{}s:14:"ap-southeast-3";a:0:{}s:12:"ca-central-1";a:0:{}s:12:"eu-central-1";a:0:{}s:10:"eu-north-1";a:0:{}s:10:"eu-south-1";a:0:{}s:9:"eu-west-1";a:0:{}s:9:"eu-west-2";a:0:{}s:9:"eu-west-3";a:0:{}s:12:"il-central-1";a:0:{}s:10:"me-south-1";a:0:{}s:9:"sa-east-1";a:0:{}s:9:"us-east-1";a:0:{}s:9:"us-east-2";a:0:{}s:13:"us-gov-east-1";a:0:{}s:13:"us-gov-west-1";a:0:{}s:9:"us-west-1";a:0:{}s:9:"us-west-2";a:0:{}}s:20:"awsglobalaccelerator";a:0:{}s:7:"siiites";a:0:{}s:14:"appspacehosted";a:0:{}s:19:"appspaceusercontent";a:0:{}s:10:"on-aptible";a:0:{}s:9:"myasustor";a:0:{}s:14:"balena-devices";a:0:{}s:10:"betainabox";a:0:{}s:6:"boutir";a:0:{}s:7:"bplaced";a:0:{}s:5:"cafjs";a:0:{}s:10:"canva-apps";a:0:{}s:2:"br";a:0:{}s:2:"cn";a:0:{}s:2:"de";a:0:{}s:2:"eu";a:0:{}s:3:"jpn";a:0:{}s:3:"mex";a:0:{}s:2:"ru";a:0:{}s:2:"sa";a:0:{}s:2:"uk";a:0:{}s:2:"us";a:0:{}s:2:"za";a:0:{}s:2:"ar";a:0:{}s:2:"hu";a:0:{}s:2:"kr";a:0:{}s:2:"no";a:0:{}s:2:"qc";a:0:{}s:2:"uy";a:0:{}s:6:"africa";a:0:{}s:2:"gr";a:0:{}s:2:"co";a:0:{}s:12:"clever-cloud";a:1:{s:8:"services";a:1:{s:1:"*";a:0:{}}}s:9:"jdevcloud";a:0:{}s:10:"wpdevcloud";a:0:{}s:15:"cloudcontrolapp";a:0:{}s:15:"cloudcontrolled";a:0:{}s:7:"cf-ipfs";a:0:{}s:15:"cloudflare-ipfs";a:0:{}s:13:"trycloudflare";a:0:{}s:13:"cdn77-storage";a:0:{}s:6:"dnsabr";a:0:{}s:12:"customer-oci";a:4:{s:1:"*";a:0:{}s:3:"oci";a:1:{s:1:"*";a:0:{}}s:3:"ocp";a:1:{s:1:"*";a:0:{}}s:3:"ocs";a:1:{s:1:"*";a:0:{}}}s:10:"cyclic-app";a:0:{}s:10:"dattolocal";a:0:{}s:10:"dattorelay";a:0:{}s:8:"dattoweb";a:0:{}s:7:"mydatto";a:0:{}s:13:"builtwithdark";a:0:{}s:10:"datadetect";a:2:{s:4:"demo";a:0:{}s:8:"instance";a:0:{}}s:5:"ddns5";a:0:{}s:11:"discordsays";a:0:{}s:10:"discordsez";a:0:{}s:8:"drayddns";a:0:{}s:12:"dreamhosters";a:0:{}s:7:"durumis";a:0:{}s:7:"mydrobo";a:0:{}s:7:"blogdns";a:0:{}s:7:"cechire";a:0:{}s:8:"dnsalias";a:0:{}s:7:"dnsdojo";a:0:{}s:11:"doesntexist";a:0:{}s:9:"dontexist";a:0:{}s:7:"doomdns";a:0:{}s:10:"dyn-o-saur";a:0:{}s:8:"dynalias";a:0:{}s:14:"dyndns-at-home";a:0:{}s:14:"dyndns-at-work";a:0:{}s:11:"dyndns-blog";a:0:{}s:11:"dyndns-free";a:0:{}s:11:"dyndns-home";a:0:{}s:9:"dyndns-ip";a:0:{}s:11:"dyndns-mail";a:0:{}s:13:"dyndns-office";a:0:{}s:11:"dyndns-pics";a:0:{}s:13:"dyndns-remote";a:0:{}s:13:"dyndns-server";a:0:{}s:10:"dyndns-web";a:0:{}s:11:"dyndns-wiki";a:0:{}s:11:"dyndns-work";a:0:{}s:15:"est-a-la-maison";a:0:{}s:15:"est-a-la-masion";a:0:{}s:13:"est-le-patron";a:0:{}s:16:"est-mon-blogueur";a:0:{}s:7:"from-ak";a:0:{}s:7:"from-al";a:0:{}s:7:"from-ar";a:0:{}s:7:"from-ca";a:0:{}s:7:"from-ct";a:0:{}s:7:"from-dc";a:0:{}s:7:"from-de";a:0:{}s:7:"from-fl";a:0:{}s:7:"from-ga";a:0:{}s:7:"from-hi";a:0:{}s:7:"from-ia";a:0:{}s:7:"from-id";a:0:{}s:7:"from-il";a:0:{}s:7:"from-in";a:0:{}s:7:"from-ks";a:0:{}s:7:"from-ky";a:0:{}s:7:"from-ma";a:0:{}s:7:"from-md";a:0:{}s:7:"from-mi";a:0:{}s:7:"from-mn";a:0:{}s:7:"from-mo";a:0:{}s:7:"from-ms";a:0:{}s:7:"from-mt";a:0:{}s:7:"from-nc";a:0:{}s:7:"from-nd";a:0:{}s:7:"from-ne";a:0:{}s:7:"from-nh";a:0:{}s:7:"from-nj";a:0:{}s:7:"from-nm";a:0:{}s:7:"from-nv";a:0:{}s:7:"from-oh";a:0:{}s:7:"from-ok";a:0:{}s:7:"from-or";a:0:{}s:7:"from-pa";a:0:{}s:7:"from-pr";a:0:{}s:7:"from-ri";a:0:{}s:7:"from-sc";a:0:{}s:7:"from-sd";a:0:{}s:7:"from-tn";a:0:{}s:7:"from-tx";a:0:{}s:7:"from-ut";a:0:{}s:7:"from-va";a:0:{}s:7:"from-vt";a:0:{}s:7:"from-wa";a:0:{}s:7:"from-wi";a:0:{}s:7:"from-wv";a:0:{}s:7:"from-wy";a:0:{}s:7:"getmyip";a:0:{}s:6:"gotdns";a:0:{}s:10:"hobby-site";a:0:{}s:9:"homelinux";a:0:{}s:8:"homeunix";a:0:{}s:9:"iamallama";a:0:{}s:14:"is-a-anarchist";a:0:{}s:12:"is-a-blogger";a:0:{}s:15:"is-a-bookkeeper";a:0:{}s:14:"is-a-bulls-fan";a:0:{}s:12:"is-a-caterer";a:0:{}s:9:"is-a-chef";a:0:{}s:17:"is-a-conservative";a:0:{}s:8:"is-a-cpa";a:0:{}s:18:"is-a-cubicle-slave";a:0:{}s:13:"is-a-democrat";a:0:{}s:13:"is-a-designer";a:0:{}s:11:"is-a-doctor";a:0:{}s:21:"is-a-financialadvisor";a:0:{}s:9:"is-a-geek";a:0:{}s:10:"is-a-green";a:0:{}s:9:"is-a-guru";a:0:{}s:16:"is-a-hard-worker";a:0:{}s:11:"is-a-hunter";a:0:{}s:15:"is-a-landscaper";a:0:{}s:11:"is-a-lawyer";a:0:{}s:12:"is-a-liberal";a:0:{}s:16:"is-a-libertarian";a:0:{}s:10:"is-a-llama";a:0:{}s:13:"is-a-musician";a:0:{}s:14:"is-a-nascarfan";a:0:{}s:10:"is-a-nurse";a:0:{}s:12:"is-a-painter";a:0:{}s:20:"is-a-personaltrainer";a:0:{}s:17:"is-a-photographer";a:0:{}s:11:"is-a-player";a:0:{}s:15:"is-a-republican";a:0:{}s:13:"is-a-rockstar";a:0:{}s:14:"is-a-socialist";a:0:{}s:12:"is-a-student";a:0:{}s:12:"is-a-teacher";a:0:{}s:11:"is-a-techie";a:0:{}s:14:"is-a-therapist";a:0:{}s:16:"is-an-accountant";a:0:{}s:11:"is-an-actor";a:0:{}s:13:"is-an-actress";a:0:{}s:15:"is-an-anarchist";a:0:{}s:12:"is-an-artist";a:0:{}s:14:"is-an-engineer";a:0:{}s:17:"is-an-entertainer";a:0:{}s:12:"is-certified";a:0:{}s:7:"is-gone";a:0:{}s:13:"is-into-anime";a:0:{}s:12:"is-into-cars";a:0:{}s:16:"is-into-cartoons";a:0:{}s:13:"is-into-games";a:0:{}s:7:"is-leet";a:0:{}s:16:"is-not-certified";a:0:{}s:8:"is-slick";a:0:{}s:11:"is-uberleet";a:0:{}s:15:"is-with-theband";a:0:{}s:8:"isa-geek";a:0:{}s:13:"isa-hockeynut";a:0:{}s:16:"issmarterthanyou";a:0:{}s:9:"likes-pie";a:0:{}s:10:"likescandy";a:0:{}s:8:"neat-url";a:0:{}s:16:"saves-the-whales";a:0:{}s:6:"selfip";a:0:{}s:14:"sells-for-less";a:0:{}s:11:"sells-for-u";a:0:{}s:8:"servebbs";a:0:{}s:10:"simple-url";a:0:{}s:13:"space-to-rent";a:0:{}s:12:"teaches-yoga";a:0:{}s:14:"writesthisblog";a:0:{}s:18:"digitaloceanspaces";a:1:{s:1:"*";a:0:{}}s:8:"ddnsfree";a:0:{}s:8:"ddnsgeek";a:0:{}s:5:"giize";a:0:{}s:6:"gleeze";a:0:{}s:5:"kozow";a:0:{}s:10:"loseyourip";a:0:{}s:5:"ooguy";a:0:{}s:9:"theworkpc";a:0:{}s:8:"mytuleap";a:0:{}s:15:"tuleap-partners";a:0:{}s:9:"encoreapi";a:0:{}s:8:"evennode";a:8:{s:4:"eu-1";a:0:{}s:4:"eu-2";a:0:{}s:4:"eu-3";a:0:{}s:4:"eu-4";a:0:{}s:4:"us-1";a:0:{}s:4:"us-2";a:0:{}s:4:"us-3";a:0:{}s:4:"us-4";a:0:{}}s:9:"onfabrica";a:0:{}s:11:"fastly-edge";a:0:{}s:16:"fastly-terrarium";a:0:{}s:14:"fastvps-server";a:0:{}s:8:"mydobiss";a:0:{}s:11:"firebaseapp";a:0:{}s:5:"fldrv";a:0:{}s:11:"forgeblocks";a:0:{}s:12:"framercanvas";a:0:{}s:10:"freebox-os";a:0:{}s:9:"freeboxos";a:0:{}s:8:"freemyip";a:0:{}s:10:"aliases121";a:0:{}s:8:"gentapps";a:0:{}s:12:"gentlentapis";a:0:{}s:17:"githubusercontent";a:0:{}s:4:"0emm";a:1:{s:1:"*";a:0:{}}s:7:"appspot";a:1:{s:1:"r";a:1:{s:1:"*";a:0:{}}}s:8:"blogspot";a:0:{}s:8:"codespot";a:0:{}s:10:"googleapis";a:0:{}s:10:"googlecode";a:0:{}s:18:"pagespeedmobilizer";a:0:{}s:12:"publishproxy";a:0:{}s:10:"withgoogle";a:0:{}s:11:"withyoutube";a:0:{}s:14:"grayjayleagues";a:0:{}s:7:"awsmppl";a:0:{}s:9:"herokuapp";a:0:{}s:9:"herokussl";a:0:{}s:9:"impertrix";a:0:{}s:12:"impertrixcdn";a:0:{}s:8:"smushcdn";a:0:{}s:12:"wphostedmail";a:0:{}s:7:"wpmucdn";a:0:{}s:8:"pixolino";a:0:{}s:10:"amscompute";a:0:{}s:6:"dopaas";a:0:{}s:18:"hosted-by-previder";a:1:{s:4:"paas";a:0:{}}s:7:"hosteur";a:2:{s:9:"rag-cloud";a:0:{}s:12:"rag-cloud-ch";a:0:{}}s:9:"ik-server";a:2:{s:6:"jcloud";a:0:{}s:14:"jcloud-ver-jpc";a:0:{}}s:8:"jelastic";a:1:{s:4:"demo";a:0:{}}s:9:"kilatiron";a:0:{}s:11:"massivegrid";a:1:{s:4:"paas";a:0:{}}s:10:"wafaicloud";a:3:{s:3:"jed";a:0:{}s:3:"lon";a:0:{}s:3:"ryd";a:0:{}}s:11:"webadorsite";a:0:{}s:6:"joyent";a:1:{s:3:"cns";a:1:{s:1:"*";a:0:{}}}s:8:"ktistory";a:0:{}s:13:"lpusercontent";a:0:{}s:6:"linode";a:2:{s:7:"members";a:0:{}s:12:"nodebalancer";a:1:{s:1:"*";a:0:{}}}s:13:"linodeobjects";a:1:{s:1:"*";a:0:{}}s:17:"linodeusercontent";a:1:{s:2:"ip";a:0:{}}s:11:"barsycenter";a:0:{}s:11:"barsyonline";a:0:{}s:8:"mazeplay";a:0:{}s:10:"miniserver";a:0:{}s:6:"atmeta";a:0:{}s:5:"fbsbx";a:1:{s:4:"apps";a:0:{}}s:9:"meteorapp";a:1:{s:2:"eu";a:0:{}}s:8:"hostedpi";a:0:{}s:13:"mythic-beasts";a:11:{s:7:"caracal";a:0:{}s:8:"customer";a:0:{}s:8:"fentiger";a:0:{}s:4:"lynx";a:0:{}s:6:"ocelot";a:0:{}s:7:"oncilla";a:0:{}s:4:"onza";a:0:{}s:6:"sphinx";a:0:{}s:2:"vs";a:0:{}s:1:"x";a:0:{}s:4:"yali";a:0:{}}s:11:"nospamproxy";a:1:{s:5:"cloud";a:0:{}}s:2:"4u";a:0:{}s:7:"nfshost";a:0:{}s:6:"001www";a:0:{}s:8:"ddnslive";a:0:{}s:8:"myiphost";a:0:{}s:10:"3utilities";a:0:{}s:8:"blogsyte";a:0:{}s:10:"ciscofreak";a:0:{}s:10:"damnserver";a:0:{}s:8:"ddnsking";a:0:{}s:11:"ditchyourip";a:0:{}s:10:"dnsiskinky";a:0:{}s:5:"dynns";a:0:{}s:10:"geekgalaxy";a:0:{}s:17:"health-carereform";a:0:{}s:15:"homesecuritymac";a:0:{}s:14:"homesecuritypc";a:0:{}s:17:"myactivedirectory";a:0:{}s:16:"mysecuritycamera";a:0:{}s:5:"myvnc";a:0:{}s:10:"net-freaks";a:0:{}s:9:"onthewifi";a:0:{}s:10:"point2this";a:0:{}s:10:"quicksytes";a:0:{}s:15:"securitytactics";a:0:{}s:9:"servebeer";a:0:{}s:18:"servecounterstrike";a:0:{}s:13:"serveexchange";a:0:{}s:8:"serveftp";a:0:{}s:9:"servegame";a:0:{}s:13:"servehalflife";a:0:{}s:9:"servehttp";a:0:{}s:11:"servehumour";a:0:{}s:8:"serveirc";a:0:{}s:8:"servemp3";a:0:{}s:8:"servep2p";a:0:{}s:9:"servepics";a:0:{}s:10:"servequake";a:0:{}s:12:"servesarcasm";a:0:{}s:11:"stufftoread";a:0:{}s:13:"unusualperson";a:0:{}s:12:"workisboring";a:0:{}s:21:"observableusercontent";a:1:{s:6:"static";a:0:{}}s:10:"simplesite";a:0:{}s:7:"orsites";a:0:{}s:10:"operaunite";a:0:{}s:16:"authgear-staging";a:0:{}s:12:"authgearapps";a:0:{}s:10:"skygearapp";a:0:{}s:15:"outsystemscloud";a:0:{}s:11:"ownprovider";a:0:{}s:5:"pgfog";a:0:{}s:12:"pagefrontapp";a:0:{}s:6:"pagexl";a:0:{}s:8:"paywhirl";a:1:{s:1:"*";a:0:{}}s:11:"gotpantheon";a:0:{}s:8:"upsunapp";a:0:{}s:11:"platter-app";a:0:{}s:12:"postman-echo";a:0:{}s:5:"prgmr";a:1:{s:3:"xen";a:0:{}}s:14:"pythonanywhere";a:1:{s:2:"eu";a:0:{}}s:11:"qualifioapp";a:0:{}s:6:"ladesk";a:0:{}s:6:"qbuser";a:0:{}s:3:"qa2";a:0:{}s:17:"alpha-myqnapcloud";a:0:{}s:15:"dev-myqnapcloud";a:0:{}s:10:"mycloudnas";a:0:{}s:10:"mynascloud";a:0:{}s:11:"myqnapcloud";a:0:{}s:12:"quipelements";a:1:{s:1:"*";a:0:{}}s:8:"rackmaze";a:0:{}s:7:"rhcloud";a:0:{}s:8:"onrender";a:0:{}s:6:"render";a:1:{s:3:"app";a:0:{}}s:4:"180r";a:0:{}s:5:"dojin";a:0:{}s:9:"sakuratan";a:0:{}s:9:"sakuraweb";a:0:{}s:2:"x0";a:0:{}s:4:"code";a:3:{s:7:"builder";a:1:{s:1:"*";a:0:{}}s:11:"dev-builder";a:1:{s:1:"*";a:0:{}}s:11:"stg-builder";a:1:{s:1:"*";a:0:{}}}s:10:"salesforce";a:1:{s:8:"platform";a:1:{s:16:"code-builder-stg";a:1:{s:4:"test";a:1:{s:3:"001";a:1:{s:1:"*";a:0:{}}}}}}s:6:"logoip";a:0:{}s:7:"scrysec";a:0:{}s:16:"firewall-gateway";a:0:{}s:12:"myshopblocks";a:0:{}s:9:"myshopify";a:0:{}s:10:"shopitsite";a:0:{}s:5:"1kapp";a:0:{}s:8:"appchizi";a:0:{}s:8:"applinzi";a:0:{}s:7:"sinaapp";a:0:{}s:10:"vipsinaapp";a:0:{}s:11:"bounty-full";a:2:{s:5:"alpha";a:0:{}s:4:"beta";a:0:{}}s:12:"streamlitapp";a:0:{}s:12:"try-snowplow";a:0:{}s:18:"w-corp-staticblitz";a:0:{}s:28:"w-credentialless-staticblitz";a:0:{}s:13:"w-staticblitz";a:0:{}s:17:"stackhero-network";a:0:{}s:9:"strapiapp";a:1:{s:5:"media";a:0:{}}s:17:"playstation-cloud";a:0:{}s:12:"myspreadshop";a:0:{}s:6:"stdlib";a:1:{s:3:"api";a:0:{}}s:11:"streak-link";a:0:{}s:11:"streaklinks";a:0:{}s:17:"streakusercontent";a:0:{}s:8:"temp-dns";a:0:{}s:7:"dsmynas";a:0:{}s:8:"familyds";a:0:{}s:7:"mytabit";a:0:{}s:10:"tb-hosting";a:1:{s:4:"site";a:0:{}}s:7:"reservd";a:0:{}s:13:"thingdustdata";a:0:{}s:7:"bloxcms";a:0:{}s:16:"townnews-staging";a:0:{}s:8:"typeform";a:1:{s:3:"pro";a:0:{}}s:2:"hk";a:0:{}s:2:"it";a:0:{}s:12:"vultrobjects";a:1:{s:1:"*";a:0:{}}s:10:"wafflecell";a:0:{}s:15:"hotelwithflight";a:0:{}s:14:"reserve-online";a:0:{}s:7:"cprapid";a:0:{}s:7:"pleskns";a:0:{}s:8:"remotewd";a:0:{}s:8:"wiardweb";a:1:{s:5:"pages";a:0:{}}s:7:"wixsite";a:0:{}s:9:"wixstudio";a:0:{}s:11:"messwithdns";a:0:{}s:12:"woltlab-demo";a:0:{}s:15:"wpenginepowered";a:1:{s:2:"js";a:0:{}}s:5:"xnbay";a:2:{s:2:"u2";a:0:{}s:8:"u2-local";a:0:{}}s:8:"yolasite";a:0:{}}s:4:"coop";a:0:{}s:2:"cr";a:7:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:2:"ed";a:0:{}s:2:"fi";a:0:{}s:2:"go";a:0:{}s:2:"or";a:0:{}s:2:"sa";a:0:{}}s:2:"cu";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"inf";a:0:{}}s:2:"cv";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"int";a:0:{}s:4:"nome";a:0:{}s:3:"org";a:0:{}s:8:"blogspot";a:0:{}}s:2:"cw";a:4:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"cx";a:11:{s:3:"gov";a:0:{}s:7:"cloudns";a:0:{}s:3:"ath";a:0:{}s:4:"info";a:0:{}s:11:"assessments";a:0:{}s:11:"calculators";a:0:{}s:7:"funnels";a:0:{}s:6:"paynow";a:0:{}s:7:"quizzes";a:0:{}s:10:"researched";a:0:{}s:5:"tests";a:0:{}}s:2:"cy";a:12:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:3:"com";a:2:{s:8:"blogspot";a:0:{}s:10:"scaleforce";a:1:{s:1:"j";a:0:{}}}s:7:"ekloges";a:0:{}s:3:"gov";a:0:{}s:3:"ltd";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:5:"press";a:0:{}s:3:"pro";a:0:{}s:2:"tm";a:0:{}}s:2:"cz";a:7:{s:2:"co";a:0:{}s:13:"contentproxy9";a:1:{s:3:"rsc";a:0:{}}s:5:"realm";a:0:{}s:2:"e4";a:0:{}s:8:"blogspot";a:0:{}s:11:"metacentrum";a:2:{s:5:"cloud";a:1:{s:1:"*";a:0:{}}s:6:"custom";a:0:{}}s:4:"muni";a:1:{s:5:"cloud";a:2:{s:3:"flt";a:0:{}s:3:"usr";a:0:{}}}}s:2:"de";a:71:{s:7:"bplaced";a:0:{}s:7:"square7";a:0:{}s:3:"com";a:0:{}s:7:"cosidns";a:1:{s:3:"dyn";a:0:{}}s:10:"dnsupdater";a:0:{}s:15:"dynamisches-dns";a:0:{}s:12:"internet-dns";a:0:{}s:9:"l-o-g-i-n";a:0:{}s:7:"dnshome";a:0:{}s:15:"fuettertdasnetz";a:0:{}s:10:"isteingeek";a:0:{}s:7:"istmein";a:0:{}s:10:"lebtimnetz";a:0:{}s:10:"leitungsen";a:0:{}s:13:"traeumtgerade";a:0:{}s:5:"ddnss";a:2:{s:3:"dyn";a:0:{}s:6:"dyndns";a:0:{}}s:8:"dyn-ip24";a:0:{}s:7:"dyndns1";a:0:{}s:14:"home-webserver";a:1:{s:3:"dyn";a:0:{}}s:13:"myhome-server";a:0:{}s:6:"frusky";a:1:{s:1:"*";a:0:{}}s:4:"goip";a:0:{}s:8:"blogspot";a:0:{}s:17:"günstigbestellen";a:0:{}s:15:"günstigliefern";a:0:{}s:12:"hs-heilbronn";a:1:{s:2:"it";a:1:{s:5:"pages";a:0:{}}}s:10:"dyn-berlin";a:0:{}s:9:"in-berlin";a:0:{}s:6:"in-brb";a:0:{}s:9:"in-butter";a:0:{}s:6:"in-dsl";a:0:{}s:6:"in-vpn";a:0:{}s:11:"iservschule";a:0:{}s:10:"mein-iserv";a:0:{}s:14:"schulplattform";a:0:{}s:11:"schulserver";a:0:{}s:10:"test-iserv";a:0:{}s:10:"keymachine";a:0:{}s:9:"git-repos";a:0:{}s:12:"lcube-server";a:0:{}s:9:"svn-repos";a:0:{}s:5:"barsy";a:0:{}s:11:"123webseite";a:0:{}s:6:"logoip";a:0:{}s:16:"firewall-gateway";a:0:{}s:10:"my-gateway";a:0:{}s:9:"my-router";a:0:{}s:5:"spdns";a:0:{}s:12:"speedpartner";a:1:{s:8:"customer";a:0:{}}s:12:"myspreadshop";a:0:{}s:10:"taifun-dns";a:0:{}s:4:"12hp";a:0:{}s:3:"2ix";a:0:{}s:5:"4lima";a:0:{}s:9:"lima-city";a:0:{}s:6:"dd-dns";a:0:{}s:8:"dray-dns";a:0:{}s:7:"draydns";a:0:{}s:7:"dyn-vpn";a:0:{}s:6:"dynvpn";a:0:{}s:10:"mein-vigor";a:0:{}s:8:"my-vigor";a:0:{}s:6:"my-wan";a:0:{}s:7:"syno-ds";a:0:{}s:20:"synology-diskstation";a:0:{}s:11:"synology-ds";a:0:{}s:9:"uberspace";a:1:{s:1:"*";a:0:{}}s:12:"virtual-user";a:0:{}s:11:"virtualuser";a:0:{}s:13:"community-pro";a:0:{}s:18:"diskussionsbereich";a:0:{}}s:2:"dj";a:0:{}s:2:"dk";a:8:{s:3:"biz";a:0:{}s:2:"co";a:0:{}s:4:"firm";a:0:{}s:3:"reg";a:0:{}s:5:"store";a:0:{}s:8:"blogspot";a:0:{}s:13:"123hjemmeside";a:0:{}s:12:"myspreadshop";a:0:{}}s:2:"dm";a:5:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}}s:2:"do";a:10:{s:3:"art";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sld";a:0:{}s:3:"web";a:0:{}}s:2:"dz";a:10:{s:3:"art";a:0:{}s:4:"asso";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"pol";a:0:{}s:3:"soc";a:0:{}s:2:"tm";a:0:{}}s:2:"ec";a:14:{s:3:"com";a:0:{}s:4:"info";a:0:{}s:3:"net";a:0:{}s:3:"fin";a:0:{}s:3:"k12";a:0:{}s:3:"med";a:0:{}s:3:"pro";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"gob";a:0:{}s:3:"mil";a:0:{}s:4:"base";a:0:{}s:8:"official";a:0:{}}s:3:"edu";a:1:{s:3:"rit";a:1:{s:9:"git-pages";a:0:{}}}s:2:"ee";a:10:{s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"riik";a:0:{}s:3:"lib";a:0:{}s:3:"med";a:0:{}s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"pri";a:0:{}s:3:"aip";a:0:{}s:3:"org";a:0:{}s:3:"fie";a:0:{}}s:2:"eg";a:9:{s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:3:"eun";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sci";a:0:{}}s:2:"er";a:1:{s:1:"*";a:0:{}}s:2:"es";a:7:{s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"nom";a:0:{}s:3:"org";a:0:{}s:3:"gob";a:0:{}s:3:"edu";a:0:{}s:8:"123miweb";a:0:{}s:12:"myspreadshop";a:0:{}}s:2:"et";a:8:{s:3:"com";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"biz";a:0:{}s:4:"name";a:0:{}s:4:"info";a:0:{}s:3:"net";a:0:{}}s:2:"eu";a:9:{s:10:"airkitapps";a:0:{}s:4:"mycd";a:0:{}s:7:"cloudns";a:0:{}s:6:"dogado";a:1:{s:8:"jelastic";a:0:{}}s:5:"barsy";a:0:{}s:13:"wellbeingzone";a:0:{}s:5:"spdns";a:0:{}s:8:"transurl";a:1:{s:1:"*";a:0:{}}s:11:"diskstation";a:0:{}}s:2:"fi";a:10:{s:5:"aland";a:0:{}s:2:"dy";a:0:{}s:8:"blogspot";a:0:{}s:9:"häkkinen";a:0:{}s:3:"iki";a:0:{}s:13:"cloudplatform";a:1:{s:2:"fi";a:0:{}}s:10:"datacenter";a:2:{s:4:"demo";a:0:{}s:4:"paas";a:0:{}}s:5:"kapsi";a:0:{}s:11:"123kotisivu";a:0:{}s:12:"myspreadshop";a:0:{}}s:2:"fj";a:10:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:3:"com";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"pro";a:0:{}}s:2:"fk";a:1:{s:1:"*";a:0:{}}s:2:"fm";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:5:"radio";a:0:{}s:4:"user";a:1:{s:1:"*";a:0:{}}}s:2:"fo";a:0:{}s:2:"fr";a:33:{s:4:"asso";a:0:{}s:3:"com";a:0:{}s:4:"gouv";a:0:{}s:3:"nom";a:0:{}s:3:"prd";a:0:{}s:2:"tm";a:0:{}s:6:"avoues";a:0:{}s:3:"cci";a:0:{}s:5:"greta";a:0:{}s:16:"huissier-justice";a:0:{}s:7:"en-root";a:0:{}s:6:"fbx-os";a:0:{}s:5:"fbxos";a:0:{}s:10:"freebox-os";a:0:{}s:9:"freeboxos";a:0:{}s:8:"blogspot";a:0:{}s:7:"goupile";a:0:{}s:10:"123siteweb";a:0:{}s:6:"on-web";a:0:{}s:31:"chirurgiens-dentistes-en-france";a:0:{}s:7:"dedibox";a:0:{}s:8:"aeroport";a:0:{}s:6:"avocat";a:0:{}s:9:"chambagri";a:0:{}s:21:"chirurgiens-dentistes";a:0:{}s:18:"experts-comptables";a:0:{}s:7:"medecin";a:0:{}s:8:"notaires";a:0:{}s:10:"pharmacien";a:0:{}s:4:"port";a:0:{}s:11:"veterinaire";a:0:{}s:12:"myspreadshop";a:0:{}s:3:"ynh";a:0:{}}s:2:"ga";a:0:{}s:2:"gb";a:0:{}s:2:"gd";a:2:{s:3:"edu";a:0:{}s:3:"gov";a:0:{}}s:2:"ge";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"pvt";a:0:{}}s:2:"gf";a:0:{}s:2:"gg";a:7:{s:2:"co";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:4:"kaas";a:0:{}s:3:"cya";a:0:{}s:7:"stackit";a:0:{}s:5:"panel";a:1:{s:6:"daemon";a:0:{}}}s:2:"gh";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"mil";a:0:{}}s:2:"gi";a:6:{s:3:"com";a:0:{}s:3:"ltd";a:0:{}s:3:"gov";a:0:{}s:3:"mod";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}}s:2:"gl";a:6:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"biz";a:0:{}}s:2:"gm";a:0:{}s:2:"gn";a:6:{s:2:"ac";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}}s:3:"gov";a:0:{}s:2:"gp";a:6:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:4:"mobi";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:4:"asso";a:0:{}}s:2:"gq";a:0:{}s:2:"gr";a:8:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:8:"blogspot";a:0:{}s:5:"barsy";a:0:{}s:10:"simplesite";a:0:{}}s:2:"gs";a:0:{}s:2:"gt";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"ind";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"gu";a:8:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"guam";a:0:{}s:4:"info";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"web";a:0:{}}s:2:"gw";a:0:{}s:2:"gy";a:6:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"hk";a:25:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"idv";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:6:"公司";a:0:{}s:6:"教育";a:0:{}s:6:"敎育";a:0:{}s:6:"政府";a:0:{}s:6:"個人";a:0:{}s:6:"个人";a:0:{}s:6:"箇人";a:0:{}s:6:"網络";a:0:{}s:6:"网络";a:0:{}s:6:"组織";a:0:{}s:6:"網絡";a:0:{}s:6:"网絡";a:0:{}s:6:"组织";a:0:{}s:6:"組織";a:0:{}s:6:"組织";a:0:{}s:8:"blogspot";a:0:{}s:6:"secaas";a:0:{}s:3:"inc";a:0:{}s:3:"ltd";a:0:{}}s:2:"hm";a:0:{}s:2:"hn";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"mil";a:0:{}s:3:"gob";a:0:{}}s:2:"hr";a:7:{s:2:"iz";a:0:{}s:4:"from";a:0:{}s:4:"name";a:0:{}s:3:"com";a:0:{}s:7:"brendly";a:1:{s:4:"shop";a:0:{}}s:8:"blogspot";a:0:{}s:4:"free";a:0:{}}s:2:"ht";a:18:{s:3:"com";a:0:{}s:4:"shop";a:0:{}s:4:"firm";a:0:{}s:4:"info";a:0:{}s:5:"adult";a:0:{}s:3:"net";a:0:{}s:3:"pro";a:0:{}s:3:"org";a:0:{}s:3:"med";a:0:{}s:3:"art";a:0:{}s:4:"coop";a:0:{}s:3:"pol";a:0:{}s:4:"asso";a:0:{}s:3:"edu";a:0:{}s:3:"rel";a:0:{}s:4:"gouv";a:0:{}s:5:"perso";a:0:{}s:2:"rt";a:0:{}}s:2:"hu";a:32:{s:2:"co";a:0:{}s:4:"info";a:0:{}s:3:"org";a:0:{}s:4:"priv";a:0:{}s:5:"sport";a:0:{}s:2:"tm";a:0:{}i:2000;a:0:{}s:5:"agrar";a:0:{}s:4:"bolt";a:0:{}s:6:"casino";a:0:{}s:4:"city";a:0:{}s:7:"erotica";a:0:{}s:7:"erotika";a:0:{}s:4:"film";a:0:{}s:5:"forum";a:0:{}s:5:"games";a:0:{}s:5:"hotel";a:0:{}s:8:"ingatlan";a:0:{}s:6:"jogasz";a:0:{}s:8:"konyvelo";a:0:{}s:5:"lakas";a:0:{}s:5:"media";a:0:{}s:4:"news";a:0:{}s:6:"reklam";a:0:{}s:3:"sex";a:0:{}s:4:"shop";a:0:{}s:4:"suli";a:0:{}s:4:"szex";a:0:{}s:6:"tozsde";a:0:{}s:6:"utazas";a:0:{}s:5:"video";a:0:{}s:8:"blogspot";a:0:{}}s:2:"id";a:14:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:1:{s:8:"blogspot";a:0:{}}s:4:"desa";a:0:{}s:2:"go";a:0:{}s:3:"mil";a:0:{}s:2:"my";a:1:{s:3:"rss";a:1:{s:1:"*";a:0:{}}}s:3:"net";a:0:{}s:2:"or";a:0:{}s:6:"ponpes";a:0:{}s:3:"sch";a:0:{}s:3:"web";a:0:{}s:4:"flap";a:0:{}s:5:"forte";a:0:{}}s:2:"ie";a:3:{s:3:"gov";a:0:{}s:8:"blogspot";a:0:{}s:12:"myspreadshop";a:0:{}}s:2:"il";a:8:{s:2:"ac";a:0:{}s:2:"co";a:4:{s:7:"ravpage";a:0:{}s:8:"blogspot";a:0:{}s:7:"mytabit";a:0:{}s:10:"tabitorder";a:0:{}}s:3:"gov";a:0:{}s:3:"idf";a:0:{}s:3:"k12";a:0:{}s:4:"muni";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:10:"ישראל";a:4:{s:12:"אקדמיה";a:0:{}s:8:"ישוב";a:0:{}s:6:"צהל";a:0:{}s:8:"ממשל";a:0:{}}s:2:"im";a:7:{s:2:"ac";a:0:{}s:2:"co";a:2:{s:3:"ltd";a:0:{}s:3:"plc";a:0:{}}s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"tt";a:0:{}s:2:"tv";a:0:{}}s:2:"in";a:46:{s:2:"5g";a:0:{}s:2:"6g";a:0:{}s:2:"ac";a:0:{}s:2:"ai";a:0:{}s:2:"am";a:0:{}s:5:"bihar";a:0:{}s:3:"biz";a:0:{}s:8:"business";a:0:{}s:2:"ca";a:0:{}s:2:"cn";a:0:{}s:2:"co";a:1:{s:6:"cyclic";a:0:{}}s:3:"com";a:0:{}s:4:"coop";a:0:{}s:2:"cs";a:0:{}s:5:"delhi";a:0:{}s:2:"dr";a:0:{}s:3:"edu";a:0:{}s:2:"er";a:0:{}s:4:"firm";a:0:{}s:3:"gen";a:0:{}s:3:"gov";a:0:{}s:7:"gujarat";a:0:{}s:3:"ind";a:0:{}s:4:"info";a:0:{}s:3:"int";a:0:{}s:8:"internet";a:0:{}s:2:"io";a:0:{}s:2:"me";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"nic";a:0:{}s:3:"org";a:0:{}s:2:"pg";a:0:{}s:4:"post";a:0:{}s:3:"pro";a:0:{}s:3:"res";a:0:{}s:6:"travel";a:0:{}s:2:"tv";a:0:{}s:2:"uk";a:0:{}s:2:"up";a:0:{}s:2:"us";a:0:{}s:3:"web";a:0:{}s:7:"cloudns";a:0:{}s:8:"blogspot";a:0:{}s:5:"barsy";a:0:{}s:8:"supabase";a:0:{}}s:4:"info";a:21:{s:7:"cloudns";a:0:{}s:11:"dynamic-dns";a:0:{}s:19:"barrel-of-knowledge";a:0:{}s:20:"barrell-of-knowledge";a:0:{}s:6:"dyndns";a:0:{}s:7:"for-our";a:0:{}s:9:"groks-the";a:0:{}s:10:"groks-this";a:0:{}s:13:"here-for-more";a:0:{}s:10:"knowsitall";a:0:{}s:6:"selfip";a:0:{}s:6:"webhop";a:0:{}s:5:"barsy";a:0:{}s:8:"mayfirst";a:0:{}s:6:"forumz";a:0:{}s:8:"nsupdate";a:0:{}s:6:"dvrcam";a:0:{}s:12:"ilovecollege";a:0:{}s:5:"no-ip";a:0:{}s:9:"dnsupdate";a:0:{}s:6:"v-info";a:0:{}}s:3:"int";a:1:{s:2:"eu";a:0:{}}s:2:"io";a:80:{s:3:"com";a:0:{}s:8:"on-acorn";a:1:{s:1:"*";a:0:{}}s:6:"apigee";a:0:{}s:6:"b-data";a:0:{}s:12:"backplaneapp";a:0:{}s:11:"banzaicloud";a:2:{s:3:"app";a:0:{}s:9:"backyards";a:1:{s:1:"*";a:0:{}}}s:11:"beagleboard";a:0:{}s:9:"bitbucket";a:0:{}s:8:"bluebite";a:0:{}s:7:"boxfuse";a:0:{}s:5:"brave";a:1:{s:1:"s";a:1:{s:1:"*";a:0:{}}}s:17:"browsersafetymark";a:0:{}s:4:"bigv";a:1:{s:3:"uk0";a:0:{}}s:10:"cleverapps";a:0:{}s:8:"dappnode";a:1:{s:6:"dyndns";a:0:{}}s:8:"darklang";a:0:{}s:5:"dedyn";a:0:{}s:4:"drud";a:0:{}s:8:"definima";a:0:{}s:11:"fh-muenster";a:0:{}s:3:"shw";a:0:{}s:9:"forgerock";a:1:{s:2:"id";a:0:{}}s:6:"github";a:0:{}s:6:"gitlab";a:0:{}s:7:"lolipop";a:0:{}s:10:"hasura-app";a:0:{}s:12:"hostyhosting";a:0:{}s:9:"hypernode";a:0:{}s:9:"moonscale";a:1:{s:1:"*";a:0:{}}s:7:"beebyte";a:1:{s:4:"paas";a:0:{}}s:10:"beebyteapp";a:1:{s:5:"sekd1";a:0:{}}s:4:"jele";a:0:{}s:8:"unispace";a:1:{s:9:"cloud-fr1";a:0:{}}s:9:"webthings";a:0:{}s:9:"loginline";a:0:{}s:5:"barsy";a:0:{}s:14:"azurecontainer";a:1:{s:1:"*";a:0:{}}s:5:"ngrok";a:7:{s:2:"ap";a:0:{}s:2:"au";a:0:{}s:2:"eu";a:0:{}s:2:"in";a:0:{}s:2:"jp";a:0:{}s:2:"sa";a:0:{}s:2:"us";a:0:{}}s:7:"nodeart";a:1:{s:5:"stage";a:0:{}}s:3:"nid";a:0:{}s:12:"pantheonsite";a:0:{}s:5:"dyn53";a:0:{}s:5:"pstmn";a:1:{s:4:"mock";a:0:{}}s:8:"protonet";a:0:{}s:4:"qoto";a:0:{}s:6:"myrdbx";a:0:{}s:10:"rb-hosting";a:1:{s:4:"site";a:0:{}}s:3:"qcx";a:1:{s:3:"sys";a:1:{s:1:"*";a:0:{}}}s:10:"vaporcloud";a:0:{}s:8:"vbrplsbx";a:1:{s:1:"g";a:0:{}}s:6:"on-k3s";a:1:{s:1:"*";a:0:{}}s:6:"on-rio";a:1:{s:1:"*";a:0:{}}s:11:"readthedocs";a:0:{}s:11:"resindevice";a:0:{}s:12:"resinstaging";a:1:{s:7:"devices";a:0:{}}s:3:"hzc";a:0:{}s:8:"sandcats";a:0:{}s:8:"scrypted";a:1:{s:6:"client";a:0:{}}s:11:"shiftcrypto";a:0:{}s:9:"shiftedit";a:0:{}s:10:"mo-siemens";a:0:{}s:8:"musician";a:0:{}s:4:"lair";a:1:{s:4:"apps";a:0:{}}s:6:"stolos";a:1:{s:1:"*";a:0:{}}s:8:"spacekit";a:0:{}s:7:"utwente";a:0:{}s:3:"s5y";a:1:{s:1:"*";a:0:{}}s:6:"edugit";a:0:{}s:7:"telebit";a:0:{}s:9:"thingdust";a:4:{s:3:"dev";a:2:{s:4:"cust";a:0:{}s:7:"reservd";a:0:{}}s:6:"disrec";a:2:{s:4:"cust";a:0:{}s:7:"reservd";a:0:{}}s:4:"prod";a:1:{s:4:"cust";a:0:{}}s:7:"testing";a:2:{s:4:"cust";a:0:{}s:7:"reservd";a:0:{}}}s:7:"tickets";a:0:{}s:4:"upli";a:0:{}i:2038;a:0:{}s:7:"webflow";a:0:{}s:11:"webflowtest";a:0:{}s:8:"wedeploy";a:0:{}s:7:"editorx";a:0:{}s:9:"wixstudio";a:0:{}s:11:"basicserver";a:0:{}s:13:"virtualserver";a:0:{}}s:2:"iq";a:6:{s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}}s:2:"ir";a:9:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:3:"gov";a:0:{}s:2:"id";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}s:10:"ایران";a:0:{}s:10:"ايران";a:0:{}}s:2:"is";a:8:{s:3:"net";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"int";a:0:{}s:7:"cupcake";a:0:{}s:8:"blogspot";a:0:{}}s:2:"it";a:418:{s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"abr";a:0:{}s:7:"abruzzo";a:0:{}s:12:"aosta-valley";a:0:{}s:11:"aostavalley";a:0:{}s:3:"bas";a:0:{}s:10:"basilicata";a:0:{}s:3:"cal";a:0:{}s:8:"calabria";a:0:{}s:3:"cam";a:0:{}s:8:"campania";a:0:{}s:14:"emilia-romagna";a:0:{}s:13:"emiliaromagna";a:0:{}s:3:"emr";a:0:{}s:15:"friuli-v-giulia";a:0:{}s:16:"friuli-ve-giulia";a:0:{}s:15:"friuli-vegiulia";a:0:{}s:21:"friuli-venezia-giulia";a:0:{}s:20:"friuli-veneziagiulia";a:0:{}s:14:"friuli-vgiulia";a:0:{}s:14:"friuliv-giulia";a:0:{}s:15:"friulive-giulia";a:0:{}s:14:"friulivegiulia";a:0:{}s:20:"friulivenezia-giulia";a:0:{}s:19:"friuliveneziagiulia";a:0:{}s:13:"friulivgiulia";a:0:{}s:3:"fvg";a:0:{}s:3:"laz";a:0:{}s:5:"lazio";a:0:{}s:3:"lig";a:0:{}s:7:"liguria";a:0:{}s:3:"lom";a:0:{}s:9:"lombardia";a:0:{}s:8:"lombardy";a:0:{}s:7:"lucania";a:0:{}s:3:"mar";a:0:{}s:6:"marche";a:0:{}s:3:"mol";a:0:{}s:6:"molise";a:0:{}s:8:"piedmont";a:0:{}s:8:"piemonte";a:0:{}s:3:"pmn";a:0:{}s:3:"pug";a:0:{}s:6:"puglia";a:0:{}s:3:"sar";a:0:{}s:8:"sardegna";a:0:{}s:8:"sardinia";a:0:{}s:3:"sic";a:0:{}s:7:"sicilia";a:0:{}s:6:"sicily";a:0:{}s:3:"taa";a:0:{}s:3:"tos";a:0:{}s:7:"toscana";a:0:{}s:17:"trentin-sud-tirol";a:0:{}s:18:"trentin-süd-tirol";a:0:{}s:16:"trentin-sudtirol";a:0:{}s:17:"trentin-südtirol";a:0:{}s:18:"trentin-sued-tirol";a:0:{}s:17:"trentin-suedtirol";a:0:{}s:16:"trentino-a-adige";a:0:{}s:15:"trentino-aadige";a:0:{}s:19:"trentino-alto-adige";a:0:{}s:18:"trentino-altoadige";a:0:{}s:16:"trentino-s-tirol";a:0:{}s:15:"trentino-stirol";a:0:{}s:18:"trentino-sud-tirol";a:0:{}s:19:"trentino-süd-tirol";a:0:{}s:17:"trentino-sudtirol";a:0:{}s:18:"trentino-südtirol";a:0:{}s:19:"trentino-sued-tirol";a:0:{}s:18:"trentino-suedtirol";a:0:{}s:8:"trentino";a:0:{}s:15:"trentinoa-adige";a:0:{}s:14:"trentinoaadige";a:0:{}s:18:"trentinoalto-adige";a:0:{}s:17:"trentinoaltoadige";a:0:{}s:15:"trentinos-tirol";a:0:{}s:14:"trentinostirol";a:0:{}s:17:"trentinosud-tirol";a:0:{}s:18:"trentinosüd-tirol";a:0:{}s:16:"trentinosudtirol";a:0:{}s:17:"trentinosüdtirol";a:0:{}s:18:"trentinosued-tirol";a:0:{}s:17:"trentinosuedtirol";a:0:{}s:16:"trentinsud-tirol";a:0:{}s:17:"trentinsüd-tirol";a:0:{}s:15:"trentinsudtirol";a:0:{}s:16:"trentinsüdtirol";a:0:{}s:17:"trentinsued-tirol";a:0:{}s:16:"trentinsuedtirol";a:0:{}s:7:"tuscany";a:0:{}s:3:"umb";a:0:{}s:6:"umbria";a:0:{}s:11:"val-d-aosta";a:0:{}s:10:"val-daosta";a:0:{}s:10:"vald-aosta";a:0:{}s:9:"valdaosta";a:0:{}s:11:"valle-aosta";a:0:{}s:13:"valle-d-aosta";a:0:{}s:12:"valle-daosta";a:0:{}s:10:"valleaosta";a:0:{}s:12:"valled-aosta";a:0:{}s:11:"valledaosta";a:0:{}s:12:"vallee-aoste";a:0:{}s:13:"vallée-aoste";a:0:{}s:14:"vallee-d-aoste";a:0:{}s:15:"vallée-d-aoste";a:0:{}s:11:"valleeaoste";a:0:{}s:12:"valléeaoste";a:0:{}s:12:"valleedaoste";a:0:{}s:13:"valléedaoste";a:0:{}s:3:"vao";a:0:{}s:3:"vda";a:0:{}s:3:"ven";a:0:{}s:6:"veneto";a:0:{}s:2:"ag";a:0:{}s:9:"agrigento";a:0:{}s:2:"al";a:0:{}s:11:"alessandria";a:0:{}s:10:"alto-adige";a:0:{}s:9:"altoadige";a:0:{}s:2:"an";a:0:{}s:6:"ancona";a:0:{}s:21:"andria-barletta-trani";a:0:{}s:21:"andria-trani-barletta";a:0:{}s:19:"andriabarlettatrani";a:0:{}s:19:"andriatranibarletta";a:0:{}s:2:"ao";a:0:{}s:5:"aosta";a:0:{}s:5:"aoste";a:0:{}s:2:"ap";a:0:{}s:2:"aq";a:0:{}s:6:"aquila";a:0:{}s:2:"ar";a:0:{}s:6:"arezzo";a:0:{}s:13:"ascoli-piceno";a:0:{}s:12:"ascolipiceno";a:0:{}s:4:"asti";a:0:{}s:2:"at";a:0:{}s:2:"av";a:0:{}s:8:"avellino";a:0:{}s:2:"ba";a:0:{}s:15:"balsan-sudtirol";a:0:{}s:16:"balsan-südtirol";a:0:{}s:16:"balsan-suedtirol";a:0:{}s:6:"balsan";a:0:{}s:4:"bari";a:0:{}s:21:"barletta-trani-andria";a:0:{}s:19:"barlettatraniandria";a:0:{}s:7:"belluno";a:0:{}s:9:"benevento";a:0:{}s:7:"bergamo";a:0:{}s:2:"bg";a:0:{}s:2:"bi";a:0:{}s:6:"biella";a:0:{}s:2:"bl";a:0:{}s:2:"bn";a:0:{}s:2:"bo";a:0:{}s:7:"bologna";a:0:{}s:17:"bolzano-altoadige";a:0:{}s:7:"bolzano";a:0:{}s:14:"bozen-sudtirol";a:0:{}s:15:"bozen-südtirol";a:0:{}s:15:"bozen-suedtirol";a:0:{}s:5:"bozen";a:0:{}s:2:"br";a:0:{}s:7:"brescia";a:0:{}s:8:"brindisi";a:0:{}s:2:"bs";a:0:{}s:2:"bt";a:0:{}s:15:"bulsan-sudtirol";a:0:{}s:16:"bulsan-südtirol";a:0:{}s:16:"bulsan-suedtirol";a:0:{}s:6:"bulsan";a:0:{}s:2:"bz";a:0:{}s:2:"ca";a:0:{}s:8:"cagliari";a:0:{}s:13:"caltanissetta";a:0:{}s:15:"campidano-medio";a:0:{}s:14:"campidanomedio";a:0:{}s:10:"campobasso";a:0:{}s:17:"carbonia-iglesias";a:0:{}s:16:"carboniaiglesias";a:0:{}s:13:"carrara-massa";a:0:{}s:12:"carraramassa";a:0:{}s:7:"caserta";a:0:{}s:7:"catania";a:0:{}s:9:"catanzaro";a:0:{}s:2:"cb";a:0:{}s:2:"ce";a:0:{}s:12:"cesena-forli";a:0:{}s:13:"cesena-forlì";a:0:{}s:11:"cesenaforli";a:0:{}s:12:"cesenaforlì";a:0:{}s:2:"ch";a:0:{}s:6:"chieti";a:0:{}s:2:"ci";a:0:{}s:2:"cl";a:0:{}s:2:"cn";a:0:{}s:2:"co";a:0:{}s:4:"como";a:0:{}s:7:"cosenza";a:0:{}s:2:"cr";a:0:{}s:7:"cremona";a:0:{}s:7:"crotone";a:0:{}s:2:"cs";a:0:{}s:2:"ct";a:0:{}s:5:"cuneo";a:0:{}s:2:"cz";a:0:{}s:14:"dell-ogliastra";a:0:{}s:13:"dellogliastra";a:0:{}s:2:"en";a:0:{}s:4:"enna";a:0:{}s:2:"fc";a:0:{}s:2:"fe";a:0:{}s:5:"fermo";a:0:{}s:7:"ferrara";a:0:{}s:2:"fg";a:0:{}s:2:"fi";a:0:{}s:7:"firenze";a:0:{}s:8:"florence";a:0:{}s:2:"fm";a:0:{}s:6:"foggia";a:0:{}s:12:"forli-cesena";a:0:{}s:13:"forlì-cesena";a:0:{}s:11:"forlicesena";a:0:{}s:12:"forlìcesena";a:0:{}s:2:"fr";a:0:{}s:9:"frosinone";a:0:{}s:2:"ge";a:0:{}s:5:"genoa";a:0:{}s:6:"genova";a:0:{}s:2:"go";a:0:{}s:7:"gorizia";a:0:{}s:2:"gr";a:0:{}s:8:"grosseto";a:0:{}s:17:"iglesias-carbonia";a:0:{}s:16:"iglesiascarbonia";a:0:{}s:2:"im";a:0:{}s:7:"imperia";a:0:{}s:2:"is";a:0:{}s:7:"isernia";a:0:{}s:2:"kr";a:0:{}s:9:"la-spezia";a:0:{}s:7:"laquila";a:0:{}s:8:"laspezia";a:0:{}s:6:"latina";a:0:{}s:2:"lc";a:0:{}s:2:"le";a:0:{}s:5:"lecce";a:0:{}s:5:"lecco";a:0:{}s:2:"li";a:0:{}s:7:"livorno";a:0:{}s:2:"lo";a:0:{}s:4:"lodi";a:0:{}s:2:"lt";a:0:{}s:2:"lu";a:0:{}s:5:"lucca";a:0:{}s:8:"macerata";a:0:{}s:7:"mantova";a:0:{}s:13:"massa-carrara";a:0:{}s:12:"massacarrara";a:0:{}s:6:"matera";a:0:{}s:2:"mb";a:0:{}s:2:"mc";a:0:{}s:2:"me";a:0:{}s:15:"medio-campidano";a:0:{}s:14:"mediocampidano";a:0:{}s:7:"messina";a:0:{}s:2:"mi";a:0:{}s:5:"milan";a:0:{}s:6:"milano";a:0:{}s:2:"mn";a:0:{}s:2:"mo";a:0:{}s:6:"modena";a:0:{}s:13:"monza-brianza";a:0:{}s:21:"monza-e-della-brianza";a:0:{}s:5:"monza";a:0:{}s:12:"monzabrianza";a:0:{}s:13:"monzaebrianza";a:0:{}s:18:"monzaedellabrianza";a:0:{}s:2:"ms";a:0:{}s:2:"mt";a:0:{}s:2:"na";a:0:{}s:6:"naples";a:0:{}s:6:"napoli";a:0:{}s:2:"no";a:0:{}s:6:"novara";a:0:{}s:2:"nu";a:0:{}s:5:"nuoro";a:0:{}s:2:"og";a:0:{}s:9:"ogliastra";a:0:{}s:12:"olbia-tempio";a:0:{}s:11:"olbiatempio";a:0:{}s:2:"or";a:0:{}s:8:"oristano";a:0:{}s:2:"ot";a:0:{}s:2:"pa";a:0:{}s:6:"padova";a:0:{}s:5:"padua";a:0:{}s:7:"palermo";a:0:{}s:5:"parma";a:0:{}s:5:"pavia";a:0:{}s:2:"pc";a:0:{}s:2:"pd";a:0:{}s:2:"pe";a:0:{}s:7:"perugia";a:0:{}s:13:"pesaro-urbino";a:0:{}s:12:"pesarourbino";a:0:{}s:7:"pescara";a:0:{}s:2:"pg";a:0:{}s:2:"pi";a:0:{}s:8:"piacenza";a:0:{}s:4:"pisa";a:0:{}s:7:"pistoia";a:0:{}s:2:"pn";a:0:{}s:2:"po";a:0:{}s:9:"pordenone";a:0:{}s:7:"potenza";a:0:{}s:2:"pr";a:0:{}s:5:"prato";a:0:{}s:2:"pt";a:0:{}s:2:"pu";a:0:{}s:2:"pv";a:0:{}s:2:"pz";a:0:{}s:2:"ra";a:0:{}s:6:"ragusa";a:0:{}s:7:"ravenna";a:0:{}s:2:"rc";a:0:{}s:2:"re";a:0:{}s:15:"reggio-calabria";a:0:{}s:13:"reggio-emilia";a:0:{}s:14:"reggiocalabria";a:0:{}s:12:"reggioemilia";a:0:{}s:2:"rg";a:0:{}s:2:"ri";a:0:{}s:5:"rieti";a:0:{}s:6:"rimini";a:0:{}s:2:"rm";a:0:{}s:2:"rn";a:0:{}s:2:"ro";a:0:{}s:4:"roma";a:0:{}s:4:"rome";a:0:{}s:6:"rovigo";a:0:{}s:2:"sa";a:0:{}s:7:"salerno";a:0:{}s:7:"sassari";a:0:{}s:6:"savona";a:0:{}s:2:"si";a:0:{}s:5:"siena";a:0:{}s:8:"siracusa";a:0:{}s:2:"so";a:0:{}s:7:"sondrio";a:0:{}s:2:"sp";a:0:{}s:2:"sr";a:0:{}s:2:"ss";a:0:{}s:9:"suedtirol";a:0:{}s:9:"südtirol";a:0:{}s:2:"sv";a:0:{}s:2:"ta";a:0:{}s:7:"taranto";a:0:{}s:2:"te";a:0:{}s:12:"tempio-olbia";a:0:{}s:11:"tempioolbia";a:0:{}s:6:"teramo";a:0:{}s:5:"terni";a:0:{}s:2:"tn";a:0:{}s:2:"to";a:0:{}s:6:"torino";a:0:{}s:2:"tp";a:0:{}s:2:"tr";a:0:{}s:21:"trani-andria-barletta";a:0:{}s:21:"trani-barletta-andria";a:0:{}s:19:"traniandriabarletta";a:0:{}s:19:"tranibarlettaandria";a:0:{}s:7:"trapani";a:0:{}s:6:"trento";a:0:{}s:7:"treviso";a:0:{}s:7:"trieste";a:0:{}s:2:"ts";a:0:{}s:5:"turin";a:0:{}s:2:"tv";a:0:{}s:2:"ud";a:0:{}s:5:"udine";a:0:{}s:13:"urbino-pesaro";a:0:{}s:12:"urbinopesaro";a:0:{}s:2:"va";a:0:{}s:6:"varese";a:0:{}s:2:"vb";a:0:{}s:2:"vc";a:0:{}s:2:"ve";a:0:{}s:7:"venezia";a:0:{}s:6:"venice";a:0:{}s:8:"verbania";a:0:{}s:8:"vercelli";a:0:{}s:6:"verona";a:0:{}s:2:"vi";a:0:{}s:13:"vibo-valentia";a:0:{}s:12:"vibovalentia";a:0:{}s:7:"vicenza";a:0:{}s:7:"viterbo";a:0:{}s:2:"vr";a:0:{}s:2:"vs";a:0:{}s:2:"vt";a:0:{}s:2:"vv";a:0:{}s:7:"12chars";a:0:{}s:8:"blogspot";a:0:{}s:5:"ibxos";a:0:{}s:10:"iliadboxos";a:0:{}s:4:"neen";a:1:{s:2:"jc";a:0:{}}s:3:"tim";a:1:{s:4:"open";a:1:{s:8:"jelastic";a:1:{s:5:"cloud";a:0:{}}}}s:4:"16-b";a:0:{}s:4:"32-b";a:0:{}s:4:"64-b";a:0:{}s:11:"123homepage";a:0:{}s:12:"myspreadshop";a:0:{}s:8:"syncloud";a:0:{}}s:2:"je";a:4:{s:2:"co";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"of";a:0:{}}s:2:"jm";a:1:{s:1:"*";a:0:{}}s:2:"jo";a:8:{s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"edu";a:0:{}s:3:"sch";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}}s:4:"jobs";a:0:{}s:2:"jp";a:256:{s:2:"ac";a:0:{}s:2:"ad";a:0:{}s:2:"co";a:0:{}s:2:"ed";a:0:{}s:2:"go";a:0:{}s:2:"gr";a:0:{}s:2:"lg";a:0:{}s:2:"ne";a:10:{s:7:"aseinet";a:1:{s:4:"user";a:0:{}}s:6:"gehirn";a:0:{}s:5:"ivory";a:0:{}s:8:"mail-box";a:0:{}s:5:"mints";a:0:{}s:7:"mokuren";a:0:{}s:4:"opal";a:0:{}s:6:"sakura";a:0:{}s:6:"sumomo";a:0:{}s:5:"topaz";a:0:{}}s:2:"or";a:0:{}s:5:"aichi";a:52:{s:5:"aisai";a:0:{}s:3:"ama";a:0:{}s:4:"anjo";a:0:{}s:5:"asuke";a:0:{}s:6:"chiryu";a:0:{}s:5:"chita";a:0:{}s:4:"fuso";a:0:{}s:8:"gamagori";a:0:{}s:5:"handa";a:0:{}s:4:"hazu";a:0:{}s:7:"hekinan";a:0:{}s:10:"higashiura";a:0:{}s:10:"ichinomiya";a:0:{}s:7:"inazawa";a:0:{}s:7:"inuyama";a:0:{}s:7:"isshiki";a:0:{}s:7:"iwakura";a:0:{}s:5:"kanie";a:0:{}s:6:"kariya";a:0:{}s:7:"kasugai";a:0:{}s:4:"kira";a:0:{}s:6:"kiyosu";a:0:{}s:6:"komaki";a:0:{}s:5:"konan";a:0:{}s:4:"kota";a:0:{}s:6:"mihama";a:0:{}s:7:"miyoshi";a:0:{}s:6:"nishio";a:0:{}s:7:"nisshin";a:0:{}s:3:"obu";a:0:{}s:6:"oguchi";a:0:{}s:5:"oharu";a:0:{}s:7:"okazaki";a:0:{}s:10:"owariasahi";a:0:{}s:4:"seto";a:0:{}s:8:"shikatsu";a:0:{}s:9:"shinshiro";a:0:{}s:7:"shitara";a:0:{}s:6:"tahara";a:0:{}s:8:"takahama";a:0:{}s:9:"tobishima";a:0:{}s:4:"toei";a:0:{}s:4:"togo";a:0:{}s:5:"tokai";a:0:{}s:8:"tokoname";a:0:{}s:7:"toyoake";a:0:{}s:9:"toyohashi";a:0:{}s:8:"toyokawa";a:0:{}s:6:"toyone";a:0:{}s:6:"toyota";a:0:{}s:8:"tsushima";a:0:{}s:6:"yatomi";a:0:{}}s:5:"akita";a:28:{s:5:"akita";a:0:{}s:6:"daisen";a:0:{}s:8:"fujisato";a:0:{}s:6:"gojome";a:0:{}s:11:"hachirogata";a:0:{}s:6:"happou";a:0:{}s:13:"higashinaruse";a:0:{}s:5:"honjo";a:0:{}s:6:"honjyo";a:0:{}s:5:"ikawa";a:0:{}s:9:"kamikoani";a:0:{}s:7:"kamioka";a:0:{}s:8:"katagami";a:0:{}s:6:"kazuno";a:0:{}s:9:"kitaakita";a:0:{}s:6:"kosaka";a:0:{}s:5:"kyowa";a:0:{}s:6:"misato";a:0:{}s:6:"mitane";a:0:{}s:9:"moriyoshi";a:0:{}s:6:"nikaho";a:0:{}s:7:"noshiro";a:0:{}s:5:"odate";a:0:{}s:3:"oga";a:0:{}s:5:"ogata";a:0:{}s:7:"semboku";a:0:{}s:6:"yokote";a:0:{}s:9:"yurihonjo";a:0:{}}s:6:"aomori";a:22:{s:6:"aomori";a:0:{}s:6:"gonohe";a:0:{}s:9:"hachinohe";a:0:{}s:9:"hashikami";a:0:{}s:7:"hiranai";a:0:{}s:8:"hirosaki";a:0:{}s:9:"itayanagi";a:0:{}s:8:"kuroishi";a:0:{}s:6:"misawa";a:0:{}s:5:"mutsu";a:0:{}s:10:"nakadomari";a:0:{}s:6:"noheji";a:0:{}s:6:"oirase";a:0:{}s:5:"owani";a:0:{}s:8:"rokunohe";a:0:{}s:7:"sannohe";a:0:{}s:10:"shichinohe";a:0:{}s:6:"shingo";a:0:{}s:5:"takko";a:0:{}s:6:"towada";a:0:{}s:7:"tsugaru";a:0:{}s:7:"tsuruta";a:0:{}}s:5:"chiba";a:58:{s:5:"abiko";a:0:{}s:5:"asahi";a:0:{}s:6:"chonan";a:0:{}s:6:"chosei";a:0:{}s:6:"choshi";a:0:{}s:4:"chuo";a:0:{}s:9:"funabashi";a:0:{}s:6:"futtsu";a:0:{}s:10:"hanamigawa";a:0:{}s:8:"ichihara";a:0:{}s:8:"ichikawa";a:0:{}s:10:"ichinomiya";a:0:{}s:5:"inzai";a:0:{}s:5:"isumi";a:0:{}s:8:"kamagaya";a:0:{}s:8:"kamogawa";a:0:{}s:7:"kashiwa";a:0:{}s:6:"katori";a:0:{}s:8:"katsuura";a:0:{}s:7:"kimitsu";a:0:{}s:8:"kisarazu";a:0:{}s:6:"kozaki";a:0:{}s:8:"kujukuri";a:0:{}s:6:"kyonan";a:0:{}s:7:"matsudo";a:0:{}s:6:"midori";a:0:{}s:6:"mihama";a:0:{}s:10:"minamiboso";a:0:{}s:6:"mobara";a:0:{}s:9:"mutsuzawa";a:0:{}s:6:"nagara";a:0:{}s:10:"nagareyama";a:0:{}s:9:"narashino";a:0:{}s:6:"narita";a:0:{}s:4:"noda";a:0:{}s:13:"oamishirasato";a:0:{}s:7:"omigawa";a:0:{}s:6:"onjuku";a:0:{}s:5:"otaki";a:0:{}s:5:"sakae";a:0:{}s:6:"sakura";a:0:{}s:9:"shimofusa";a:0:{}s:7:"shirako";a:0:{}s:6:"shiroi";a:0:{}s:6:"shisui";a:0:{}s:9:"sodegaura";a:0:{}s:4:"sosa";a:0:{}s:4:"tako";a:0:{}s:8:"tateyama";a:0:{}s:6:"togane";a:0:{}s:8:"tohnosho";a:0:{}s:8:"tomisato";a:0:{}s:7:"urayasu";a:0:{}s:9:"yachimata";a:0:{}s:7:"yachiyo";a:0:{}s:10:"yokaichiba";a:0:{}s:15:"yokoshibahikari";a:0:{}s:10:"yotsukaido";a:0:{}}s:5:"ehime";a:22:{s:5:"ainan";a:0:{}s:5:"honai";a:0:{}s:5:"ikata";a:0:{}s:7:"imabari";a:0:{}s:3:"iyo";a:0:{}s:8:"kamijima";a:0:{}s:6:"kihoku";a:0:{}s:9:"kumakogen";a:0:{}s:6:"masaki";a:0:{}s:7:"matsuno";a:0:{}s:9:"matsuyama";a:0:{}s:8:"namikata";a:0:{}s:7:"niihama";a:0:{}s:3:"ozu";a:0:{}s:5:"saijo";a:0:{}s:5:"seiyo";a:0:{}s:11:"shikokuchuo";a:0:{}s:4:"tobe";a:0:{}s:4:"toon";a:0:{}s:6:"uchiko";a:0:{}s:7:"uwajima";a:0:{}s:10:"yawatahama";a:0:{}}s:5:"fukui";a:15:{s:7:"echizen";a:0:{}s:7:"eiheiji";a:0:{}s:5:"fukui";a:0:{}s:5:"ikeda";a:0:{}s:9:"katsuyama";a:0:{}s:6:"mihama";a:0:{}s:13:"minamiechizen";a:0:{}s:5:"obama";a:0:{}s:3:"ohi";a:0:{}s:3:"ono";a:0:{}s:5:"sabae";a:0:{}s:5:"sakai";a:0:{}s:8:"takahama";a:0:{}s:7:"tsuruga";a:0:{}s:6:"wakasa";a:0:{}}s:7:"fukuoka";a:63:{s:6:"ashiya";a:0:{}s:5:"buzen";a:0:{}s:7:"chikugo";a:0:{}s:7:"chikuho";a:0:{}s:7:"chikujo";a:0:{}s:10:"chikushino";a:0:{}s:8:"chikuzen";a:0:{}s:4:"chuo";a:0:{}s:7:"dazaifu";a:0:{}s:7:"fukuchi";a:0:{}s:6:"hakata";a:0:{}s:7:"higashi";a:0:{}s:8:"hirokawa";a:0:{}s:8:"hisayama";a:0:{}s:6:"iizuka";a:0:{}s:8:"inatsuki";a:0:{}s:4:"kaho";a:0:{}s:6:"kasuga";a:0:{}s:6:"kasuya";a:0:{}s:6:"kawara";a:0:{}s:6:"keisen";a:0:{}s:4:"koga";a:0:{}s:6:"kurate";a:0:{}s:6:"kurogi";a:0:{}s:6:"kurume";a:0:{}s:6:"minami";a:0:{}s:6:"miyako";a:0:{}s:6:"miyama";a:0:{}s:8:"miyawaka";a:0:{}s:8:"mizumaki";a:0:{}s:8:"munakata";a:0:{}s:8:"nakagawa";a:0:{}s:6:"nakama";a:0:{}s:5:"nishi";a:0:{}s:6:"nogata";a:0:{}s:5:"ogori";a:0:{}s:7:"okagaki";a:0:{}s:5:"okawa";a:0:{}s:3:"oki";a:0:{}s:5:"omuta";a:0:{}s:4:"onga";a:0:{}s:5:"onojo";a:0:{}s:3:"oto";a:0:{}s:7:"saigawa";a:0:{}s:8:"sasaguri";a:0:{}s:6:"shingu";a:0:{}s:13:"shinyoshitomi";a:0:{}s:6:"shonai";a:0:{}s:5:"soeda";a:0:{}s:3:"sue";a:0:{}s:9:"tachiarai";a:0:{}s:6:"tagawa";a:0:{}s:6:"takata";a:0:{}s:4:"toho";a:0:{}s:7:"toyotsu";a:0:{}s:6:"tsuiki";a:0:{}s:5:"ukiha";a:0:{}s:3:"umi";a:0:{}s:4:"usui";a:0:{}s:6:"yamada";a:0:{}s:4:"yame";a:0:{}s:8:"yanagawa";a:0:{}s:9:"yukuhashi";a:0:{}}s:9:"fukushima";a:51:{s:9:"aizubange";a:0:{}s:10:"aizumisato";a:0:{}s:13:"aizuwakamatsu";a:0:{}s:7:"asakawa";a:0:{}s:6:"bandai";a:0:{}s:4:"date";a:0:{}s:9:"fukushima";a:0:{}s:8:"furudono";a:0:{}s:6:"futaba";a:0:{}s:6:"hanawa";a:0:{}s:7:"higashi";a:0:{}s:6:"hirata";a:0:{}s:6:"hirono";a:0:{}s:6:"iitate";a:0:{}s:10:"inawashiro";a:0:{}s:8:"ishikawa";a:0:{}s:5:"iwaki";a:0:{}s:9:"izumizaki";a:0:{}s:10:"kagamiishi";a:0:{}s:8:"kaneyama";a:0:{}s:8:"kawamata";a:0:{}s:8:"kitakata";a:0:{}s:12:"kitashiobara";a:0:{}s:5:"koori";a:0:{}s:8:"koriyama";a:0:{}s:6:"kunimi";a:0:{}s:6:"miharu";a:0:{}s:7:"mishima";a:0:{}s:5:"namie";a:0:{}s:5:"nango";a:0:{}s:9:"nishiaizu";a:0:{}s:7:"nishigo";a:0:{}s:5:"okuma";a:0:{}s:7:"omotego";a:0:{}s:3:"ono";a:0:{}s:5:"otama";a:0:{}s:8:"samegawa";a:0:{}s:7:"shimogo";a:0:{}s:9:"shirakawa";a:0:{}s:5:"showa";a:0:{}s:4:"soma";a:0:{}s:8:"sukagawa";a:0:{}s:7:"taishin";a:0:{}s:8:"tamakawa";a:0:{}s:8:"tanagura";a:0:{}s:5:"tenei";a:0:{}s:6:"yabuki";a:0:{}s:6:"yamato";a:0:{}s:9:"yamatsuri";a:0:{}s:7:"yanaizu";a:0:{}s:6:"yugawa";a:0:{}}s:4:"gifu";a:38:{s:7:"anpachi";a:0:{}s:3:"ena";a:0:{}s:4:"gifu";a:0:{}s:5:"ginan";a:0:{}s:4:"godo";a:0:{}s:4:"gujo";a:0:{}s:7:"hashima";a:0:{}s:7:"hichiso";a:0:{}s:4:"hida";a:0:{}s:16:"higashishirakawa";a:0:{}s:7:"ibigawa";a:0:{}s:5:"ikeda";a:0:{}s:12:"kakamigahara";a:0:{}s:4:"kani";a:0:{}s:8:"kasahara";a:0:{}s:9:"kasamatsu";a:0:{}s:6:"kawaue";a:0:{}s:8:"kitagata";a:0:{}s:4:"mino";a:0:{}s:8:"minokamo";a:0:{}s:6:"mitake";a:0:{}s:8:"mizunami";a:0:{}s:6:"motosu";a:0:{}s:11:"nakatsugawa";a:0:{}s:5:"ogaki";a:0:{}s:8:"sakahogi";a:0:{}s:4:"seki";a:0:{}s:10:"sekigahara";a:0:{}s:9:"shirakawa";a:0:{}s:6:"tajimi";a:0:{}s:8:"takayama";a:0:{}s:5:"tarui";a:0:{}s:4:"toki";a:0:{}s:6:"tomika";a:0:{}s:8:"wanouchi";a:0:{}s:8:"yamagata";a:0:{}s:6:"yaotsu";a:0:{}s:4:"yoro";a:0:{}}s:5:"gunma";a:36:{s:6:"annaka";a:0:{}s:7:"chiyoda";a:0:{}s:7:"fujioka";a:0:{}s:15:"higashiagatsuma";a:0:{}s:7:"isesaki";a:0:{}s:7:"itakura";a:0:{}s:5:"kanna";a:0:{}s:5:"kanra";a:0:{}s:9:"katashina";a:0:{}s:6:"kawaba";a:0:{}s:5:"kiryu";a:0:{}s:7:"kusatsu";a:0:{}s:8:"maebashi";a:0:{}s:5:"meiwa";a:0:{}s:6:"midori";a:0:{}s:8:"minakami";a:0:{}s:10:"naganohara";a:0:{}s:8:"nakanojo";a:0:{}s:7:"nanmoku";a:0:{}s:6:"numata";a:0:{}s:6:"oizumi";a:0:{}s:3:"ora";a:0:{}s:3:"ota";a:0:{}s:9:"shibukawa";a:0:{}s:9:"shimonita";a:0:{}s:6:"shinto";a:0:{}s:5:"showa";a:0:{}s:8:"takasaki";a:0:{}s:8:"takayama";a:0:{}s:8:"tamamura";a:0:{}s:11:"tatebayashi";a:0:{}s:7:"tomioka";a:0:{}s:9:"tsukiyono";a:0:{}s:8:"tsumagoi";a:0:{}s:4:"ueno";a:0:{}s:8:"yoshioka";a:0:{}}s:9:"hiroshima";a:25:{s:9:"asaminami";a:0:{}s:5:"daiwa";a:0:{}s:7:"etajima";a:0:{}s:5:"fuchu";a:0:{}s:8:"fukuyama";a:0:{}s:11:"hatsukaichi";a:0:{}s:16:"higashihiroshima";a:0:{}s:5:"hongo";a:0:{}s:12:"jinsekikogen";a:0:{}s:5:"kaita";a:0:{}s:3:"kui";a:0:{}s:6:"kumano";a:0:{}s:4:"kure";a:0:{}s:6:"mihara";a:0:{}s:7:"miyoshi";a:0:{}s:4:"naka";a:0:{}s:8:"onomichi";a:0:{}s:13:"osakikamijima";a:0:{}s:5:"otake";a:0:{}s:4:"saka";a:0:{}s:4:"sera";a:0:{}s:9:"seranishi";a:0:{}s:8:"shinichi";a:0:{}s:7:"shobara";a:0:{}s:8:"takehara";a:0:{}}s:8:"hokkaido";a:142:{s:8:"abashiri";a:0:{}s:5:"abira";a:0:{}s:7:"aibetsu";a:0:{}s:7:"akabira";a:0:{}s:7:"akkeshi";a:0:{}s:9:"asahikawa";a:0:{}s:9:"ashibetsu";a:0:{}s:6:"ashoro";a:0:{}s:6:"assabu";a:0:{}s:6:"atsuma";a:0:{}s:5:"bibai";a:0:{}s:4:"biei";a:0:{}s:6:"bifuka";a:0:{}s:6:"bihoro";a:0:{}s:8:"biratori";a:0:{}s:11:"chippubetsu";a:0:{}s:7:"chitose";a:0:{}s:4:"date";a:0:{}s:6:"ebetsu";a:0:{}s:7:"embetsu";a:0:{}s:5:"eniwa";a:0:{}s:5:"erimo";a:0:{}s:4:"esan";a:0:{}s:6:"esashi";a:0:{}s:8:"fukagawa";a:0:{}s:9:"fukushima";a:0:{}s:6:"furano";a:0:{}s:8:"furubira";a:0:{}s:6:"haboro";a:0:{}s:8:"hakodate";a:0:{}s:12:"hamatonbetsu";a:0:{}s:6:"hidaka";a:0:{}s:13:"higashikagura";a:0:{}s:11:"higashikawa";a:0:{}s:5:"hiroo";a:0:{}s:7:"hokuryu";a:0:{}s:6:"hokuto";a:0:{}s:8:"honbetsu";a:0:{}s:9:"horokanai";a:0:{}s:8:"horonobe";a:0:{}s:5:"ikeda";a:0:{}s:7:"imakane";a:0:{}s:8:"ishikari";a:0:{}s:9:"iwamizawa";a:0:{}s:6:"iwanai";a:0:{}s:10:"kamifurano";a:0:{}s:8:"kamikawa";a:0:{}s:11:"kamishihoro";a:0:{}s:12:"kamisunagawa";a:0:{}s:8:"kamoenai";a:0:{}s:6:"kayabe";a:0:{}s:8:"kembuchi";a:0:{}s:7:"kikonai";a:0:{}s:9:"kimobetsu";a:0:{}s:13:"kitahiroshima";a:0:{}s:6:"kitami";a:0:{}s:8:"kiyosato";a:0:{}s:9:"koshimizu";a:0:{}s:8:"kunneppu";a:0:{}s:8:"kuriyama";a:0:{}s:12:"kuromatsunai";a:0:{}s:7:"kushiro";a:0:{}s:7:"kutchan";a:0:{}s:5:"kyowa";a:0:{}s:7:"mashike";a:0:{}s:8:"matsumae";a:0:{}s:6:"mikasa";a:0:{}s:12:"minamifurano";a:0:{}s:8:"mombetsu";a:0:{}s:8:"moseushi";a:0:{}s:6:"mukawa";a:0:{}s:7:"muroran";a:0:{}s:4:"naie";a:0:{}s:8:"nakagawa";a:0:{}s:12:"nakasatsunai";a:0:{}s:12:"nakatombetsu";a:0:{}s:5:"nanae";a:0:{}s:7:"nanporo";a:0:{}s:6:"nayoro";a:0:{}s:6:"nemuro";a:0:{}s:8:"niikappu";a:0:{}s:4:"niki";a:0:{}s:11:"nishiokoppe";a:0:{}s:11:"noboribetsu";a:0:{}s:6:"numata";a:0:{}s:7:"obihiro";a:0:{}s:5:"obira";a:0:{}s:5:"oketo";a:0:{}s:6:"okoppe";a:0:{}s:5:"otaru";a:0:{}s:5:"otobe";a:0:{}s:7:"otofuke";a:0:{}s:9:"otoineppu";a:0:{}s:4:"oumu";a:0:{}s:5:"ozora";a:0:{}s:5:"pippu";a:0:{}s:8:"rankoshi";a:0:{}s:5:"rebun";a:0:{}s:9:"rikubetsu";a:0:{}s:7:"rishiri";a:0:{}s:11:"rishirifuji";a:0:{}s:6:"saroma";a:0:{}s:9:"sarufutsu";a:0:{}s:8:"shakotan";a:0:{}s:5:"shari";a:0:{}s:8:"shibecha";a:0:{}s:8:"shibetsu";a:0:{}s:7:"shikabe";a:0:{}s:7:"shikaoi";a:0:{}s:9:"shimamaki";a:0:{}s:7:"shimizu";a:0:{}s:9:"shimokawa";a:0:{}s:12:"shinshinotsu";a:0:{}s:8:"shintoku";a:0:{}s:9:"shiranuka";a:0:{}s:7:"shiraoi";a:0:{}s:9:"shiriuchi";a:0:{}s:7:"sobetsu";a:0:{}s:8:"sunagawa";a:0:{}s:5:"taiki";a:0:{}s:6:"takasu";a:0:{}s:8:"takikawa";a:0:{}s:8:"takinoue";a:0:{}s:9:"teshikaga";a:0:{}s:7:"tobetsu";a:0:{}s:5:"tohma";a:0:{}s:9:"tomakomai";a:0:{}s:6:"tomari";a:0:{}s:4:"toya";a:0:{}s:6:"toyako";a:0:{}s:8:"toyotomi";a:0:{}s:7:"toyoura";a:0:{}s:8:"tsubetsu";a:0:{}s:9:"tsukigata";a:0:{}s:7:"urakawa";a:0:{}s:6:"urausu";a:0:{}s:4:"uryu";a:0:{}s:9:"utashinai";a:0:{}s:8:"wakkanai";a:0:{}s:7:"wassamu";a:0:{}s:6:"yakumo";a:0:{}s:6:"yoichi";a:0:{}}s:5:"hyogo";a:46:{s:4:"aioi";a:0:{}s:6:"akashi";a:0:{}s:3:"ako";a:0:{}s:9:"amagasaki";a:0:{}s:6:"aogaki";a:0:{}s:5:"asago";a:0:{}s:6:"ashiya";a:0:{}s:5:"awaji";a:0:{}s:8:"fukusaki";a:0:{}s:7:"goshiki";a:0:{}s:6:"harima";a:0:{}s:6:"himeji";a:0:{}s:8:"ichikawa";a:0:{}s:7:"inagawa";a:0:{}s:5:"itami";a:0:{}s:8:"kakogawa";a:0:{}s:8:"kamigori";a:0:{}s:8:"kamikawa";a:0:{}s:5:"kasai";a:0:{}s:6:"kasuga";a:0:{}s:9:"kawanishi";a:0:{}s:4:"miki";a:0:{}s:11:"minamiawaji";a:0:{}s:11:"nishinomiya";a:0:{}s:9:"nishiwaki";a:0:{}s:3:"ono";a:0:{}s:5:"sanda";a:0:{}s:6:"sannan";a:0:{}s:8:"sasayama";a:0:{}s:4:"sayo";a:0:{}s:6:"shingu";a:0:{}s:9:"shinonsen";a:0:{}s:5:"shiso";a:0:{}s:6:"sumoto";a:0:{}s:6:"taishi";a:0:{}s:4:"taka";a:0:{}s:10:"takarazuka";a:0:{}s:8:"takasago";a:0:{}s:6:"takino";a:0:{}s:5:"tamba";a:0:{}s:7:"tatsuno";a:0:{}s:7:"toyooka";a:0:{}s:4:"yabu";a:0:{}s:7:"yashiro";a:0:{}s:4:"yoka";a:0:{}s:6:"yokawa";a:0:{}}s:7:"ibaraki";a:51:{s:3:"ami";a:0:{}s:5:"asahi";a:0:{}s:5:"bando";a:0:{}s:8:"chikusei";a:0:{}s:5:"daigo";a:0:{}s:9:"fujishiro";a:0:{}s:7:"hitachi";a:0:{}s:11:"hitachinaka";a:0:{}s:12:"hitachiomiya";a:0:{}s:10:"hitachiota";a:0:{}s:7:"ibaraki";a:0:{}s:3:"ina";a:0:{}s:8:"inashiki";a:0:{}s:5:"itako";a:0:{}s:5:"iwama";a:0:{}s:4:"joso";a:0:{}s:6:"kamisu";a:0:{}s:6:"kasama";a:0:{}s:7:"kashima";a:0:{}s:11:"kasumigaura";a:0:{}s:4:"koga";a:0:{}s:4:"miho";a:0:{}s:4:"mito";a:0:{}s:6:"moriya";a:0:{}s:4:"naka";a:0:{}s:8:"namegata";a:0:{}s:5:"oarai";a:0:{}s:5:"ogawa";a:0:{}s:7:"omitama";a:0:{}s:9:"ryugasaki";a:0:{}s:5:"sakai";a:0:{}s:10:"sakuragawa";a:0:{}s:9:"shimodate";a:0:{}s:10:"shimotsuma";a:0:{}s:9:"shirosato";a:0:{}s:4:"sowa";a:0:{}s:5:"suifu";a:0:{}s:8:"takahagi";a:0:{}s:11:"tamatsukuri";a:0:{}s:5:"tokai";a:0:{}s:6:"tomobe";a:0:{}s:4:"tone";a:0:{}s:6:"toride";a:0:{}s:9:"tsuchiura";a:0:{}s:7:"tsukuba";a:0:{}s:8:"uchihara";a:0:{}s:6:"ushiku";a:0:{}s:7:"yachiyo";a:0:{}s:8:"yamagata";a:0:{}s:6:"yawara";a:0:{}s:4:"yuki";a:0:{}}s:8:"ishikawa";a:19:{s:7:"anamizu";a:0:{}s:5:"hakui";a:0:{}s:7:"hakusan";a:0:{}s:4:"kaga";a:0:{}s:6:"kahoku";a:0:{}s:8:"kanazawa";a:0:{}s:8:"kawakita";a:0:{}s:7:"komatsu";a:0:{}s:8:"nakanoto";a:0:{}s:5:"nanao";a:0:{}s:4:"nomi";a:0:{}s:8:"nonoichi";a:0:{}s:4:"noto";a:0:{}s:5:"shika";a:0:{}s:4:"suzu";a:0:{}s:7:"tsubata";a:0:{}s:7:"tsurugi";a:0:{}s:8:"uchinada";a:0:{}s:6:"wajima";a:0:{}}s:5:"iwate";a:34:{s:5:"fudai";a:0:{}s:8:"fujisawa";a:0:{}s:8:"hanamaki";a:0:{}s:9:"hiraizumi";a:0:{}s:6:"hirono";a:0:{}s:8:"ichinohe";a:0:{}s:10:"ichinoseki";a:0:{}s:8:"iwaizumi";a:0:{}s:5:"iwate";a:0:{}s:6:"joboji";a:0:{}s:8:"kamaishi";a:0:{}s:10:"kanegasaki";a:0:{}s:7:"karumai";a:0:{}s:5:"kawai";a:0:{}s:8:"kitakami";a:0:{}s:4:"kuji";a:0:{}s:6:"kunohe";a:0:{}s:8:"kuzumaki";a:0:{}s:6:"miyako";a:0:{}s:8:"mizusawa";a:0:{}s:7:"morioka";a:0:{}s:6:"ninohe";a:0:{}s:4:"noda";a:0:{}s:7:"ofunato";a:0:{}s:4:"oshu";a:0:{}s:7:"otsuchi";a:0:{}s:13:"rikuzentakata";a:0:{}s:5:"shiwa";a:0:{}s:11:"shizukuishi";a:0:{}s:6:"sumita";a:0:{}s:8:"tanohata";a:0:{}s:4:"tono";a:0:{}s:6:"yahaba";a:0:{}s:6:"yamada";a:0:{}}s:6:"kagawa";a:15:{s:7:"ayagawa";a:0:{}s:13:"higashikagawa";a:0:{}s:7:"kanonji";a:0:{}s:8:"kotohira";a:0:{}s:5:"manno";a:0:{}s:8:"marugame";a:0:{}s:6:"mitoyo";a:0:{}s:8:"naoshima";a:0:{}s:6:"sanuki";a:0:{}s:7:"tadotsu";a:0:{}s:9:"takamatsu";a:0:{}s:7:"tonosho";a:0:{}s:8:"uchinomi";a:0:{}s:5:"utazu";a:0:{}s:8:"zentsuji";a:0:{}}s:9:"kagoshima";a:20:{s:5:"akune";a:0:{}s:5:"amami";a:0:{}s:5:"hioki";a:0:{}s:3:"isa";a:0:{}s:4:"isen";a:0:{}s:5:"izumi";a:0:{}s:9:"kagoshima";a:0:{}s:6:"kanoya";a:0:{}s:8:"kawanabe";a:0:{}s:5:"kinko";a:0:{}s:7:"kouyama";a:0:{}s:10:"makurazaki";a:0:{}s:9:"matsumoto";a:0:{}s:10:"minamitane";a:0:{}s:8:"nakatane";a:0:{}s:12:"nishinoomote";a:0:{}s:13:"satsumasendai";a:0:{}s:3:"soo";a:0:{}s:8:"tarumizu";a:0:{}s:5:"yusui";a:0:{}}s:8:"kanagawa";a:30:{s:6:"aikawa";a:0:{}s:6:"atsugi";a:0:{}s:5:"ayase";a:0:{}s:9:"chigasaki";a:0:{}s:5:"ebina";a:0:{}s:8:"fujisawa";a:0:{}s:6:"hadano";a:0:{}s:6:"hakone";a:0:{}s:9:"hiratsuka";a:0:{}s:7:"isehara";a:0:{}s:6:"kaisei";a:0:{}s:8:"kamakura";a:0:{}s:8:"kiyokawa";a:0:{}s:7:"matsuda";a:0:{}s:14:"minamiashigara";a:0:{}s:5:"miura";a:0:{}s:5:"nakai";a:0:{}s:8:"ninomiya";a:0:{}s:7:"odawara";a:0:{}s:2:"oi";a:0:{}s:4:"oiso";a:0:{}s:10:"sagamihara";a:0:{}s:8:"samukawa";a:0:{}s:6:"tsukui";a:0:{}s:8:"yamakita";a:0:{}s:6:"yamato";a:0:{}s:8:"yokosuka";a:0:{}s:8:"yugawara";a:0:{}s:4:"zama";a:0:{}s:5:"zushi";a:0:{}}s:5:"kochi";a:31:{s:3:"aki";a:0:{}s:6:"geisei";a:0:{}s:6:"hidaka";a:0:{}s:12:"higashitsuno";a:0:{}s:3:"ino";a:0:{}s:6:"kagami";a:0:{}s:4:"kami";a:0:{}s:8:"kitagawa";a:0:{}s:5:"kochi";a:0:{}s:6:"mihara";a:0:{}s:8:"motoyama";a:0:{}s:6:"muroto";a:0:{}s:6:"nahari";a:0:{}s:8:"nakamura";a:0:{}s:7:"nankoku";a:0:{}s:9:"nishitosa";a:0:{}s:10:"niyodogawa";a:0:{}s:4:"ochi";a:0:{}s:5:"okawa";a:0:{}s:5:"otoyo";a:0:{}s:6:"otsuki";a:0:{}s:6:"sakawa";a:0:{}s:6:"sukumo";a:0:{}s:6:"susaki";a:0:{}s:4:"tosa";a:0:{}s:11:"tosashimizu";a:0:{}s:4:"toyo";a:0:{}s:5:"tsuno";a:0:{}s:5:"umaji";a:0:{}s:6:"yasuda";a:0:{}s:8:"yusuhara";a:0:{}}s:8:"kumamoto";a:23:{s:7:"amakusa";a:0:{}s:4:"arao";a:0:{}s:3:"aso";a:0:{}s:5:"choyo";a:0:{}s:7:"gyokuto";a:0:{}s:11:"kamiamakusa";a:0:{}s:7:"kikuchi";a:0:{}s:8:"kumamoto";a:0:{}s:7:"mashiki";a:0:{}s:6:"mifune";a:0:{}s:8:"minamata";a:0:{}s:11:"minamioguni";a:0:{}s:6:"nagasu";a:0:{}s:9:"nishihara";a:0:{}s:5:"oguni";a:0:{}s:3:"ozu";a:0:{}s:6:"sumoto";a:0:{}s:8:"takamori";a:0:{}s:3:"uki";a:0:{}s:3:"uto";a:0:{}s:6:"yamaga";a:0:{}s:6:"yamato";a:0:{}s:10:"yatsushiro";a:0:{}}s:5:"kyoto";a:31:{s:5:"ayabe";a:0:{}s:11:"fukuchiyama";a:0:{}s:11:"higashiyama";a:0:{}s:3:"ide";a:0:{}s:3:"ine";a:0:{}s:4:"joyo";a:0:{}s:7:"kameoka";a:0:{}s:4:"kamo";a:0:{}s:4:"kita";a:0:{}s:4:"kizu";a:0:{}s:8:"kumiyama";a:0:{}s:8:"kyotamba";a:0:{}s:9:"kyotanabe";a:0:{}s:8:"kyotango";a:0:{}s:7:"maizuru";a:0:{}s:6:"minami";a:0:{}s:15:"minamiyamashiro";a:0:{}s:6:"miyazu";a:0:{}s:4:"muko";a:0:{}s:10:"nagaokakyo";a:0:{}s:7:"nakagyo";a:0:{}s:6:"nantan";a:0:{}s:9:"oyamazaki";a:0:{}s:5:"sakyo";a:0:{}s:5:"seika";a:0:{}s:6:"tanabe";a:0:{}s:3:"uji";a:0:{}s:9:"ujitawara";a:0:{}s:6:"wazuka";a:0:{}s:9:"yamashina";a:0:{}s:6:"yawata";a:0:{}}s:3:"mie";a:30:{s:5:"asahi";a:0:{}s:5:"inabe";a:0:{}s:3:"ise";a:0:{}s:8:"kameyama";a:0:{}s:7:"kawagoe";a:0:{}s:4:"kiho";a:0:{}s:8:"kisosaki";a:0:{}s:4:"kiwa";a:0:{}s:6:"komono";a:0:{}s:6:"kumano";a:0:{}s:6:"kuwana";a:0:{}s:9:"matsusaka";a:0:{}s:5:"meiwa";a:0:{}s:6:"mihama";a:0:{}s:9:"minamiise";a:0:{}s:6:"misugi";a:0:{}s:6:"miyama";a:0:{}s:6:"nabari";a:0:{}s:5:"shima";a:0:{}s:6:"suzuka";a:0:{}s:4:"tado";a:0:{}s:5:"taiki";a:0:{}s:4:"taki";a:0:{}s:6:"tamaki";a:0:{}s:4:"toba";a:0:{}s:3:"tsu";a:0:{}s:5:"udono";a:0:{}s:8:"ureshino";a:0:{}s:7:"watarai";a:0:{}s:9:"yokkaichi";a:0:{}}s:6:"miyagi";a:32:{s:8:"furukawa";a:0:{}s:17:"higashimatsushima";a:0:{}s:10:"ishinomaki";a:0:{}s:7:"iwanuma";a:0:{}s:6:"kakuda";a:0:{}s:4:"kami";a:0:{}s:8:"kawasaki";a:0:{}s:8:"marumori";a:0:{}s:10:"matsushima";a:0:{}s:13:"minamisanriku";a:0:{}s:6:"misato";a:0:{}s:6:"murata";a:0:{}s:6:"natori";a:0:{}s:7:"ogawara";a:0:{}s:5:"ohira";a:0:{}s:7:"onagawa";a:0:{}s:5:"osaki";a:0:{}s:4:"rifu";a:0:{}s:6:"semine";a:0:{}s:7:"shibata";a:0:{}s:13:"shichikashuku";a:0:{}s:7:"shikama";a:0:{}s:8:"shiogama";a:0:{}s:9:"shiroishi";a:0:{}s:6:"tagajo";a:0:{}s:5:"taiwa";a:0:{}s:4:"tome";a:0:{}s:6:"tomiya";a:0:{}s:6:"wakuya";a:0:{}s:6:"watari";a:0:{}s:8:"yamamoto";a:0:{}s:3:"zao";a:0:{}}s:8:"miyazaki";a:27:{s:3:"aya";a:0:{}s:5:"ebino";a:0:{}s:6:"gokase";a:0:{}s:5:"hyuga";a:0:{}s:8:"kadogawa";a:0:{}s:10:"kawaminami";a:0:{}s:4:"kijo";a:0:{}s:8:"kitagawa";a:0:{}s:8:"kitakata";a:0:{}s:7:"kitaura";a:0:{}s:9:"kobayashi";a:0:{}s:8:"kunitomi";a:0:{}s:7:"kushima";a:0:{}s:6:"mimata";a:0:{}s:10:"miyakonojo";a:0:{}s:8:"miyazaki";a:0:{}s:9:"morotsuka";a:0:{}s:8:"nichinan";a:0:{}s:9:"nishimera";a:0:{}s:7:"nobeoka";a:0:{}s:5:"saito";a:0:{}s:6:"shiiba";a:0:{}s:8:"shintomi";a:0:{}s:8:"takaharu";a:0:{}s:8:"takanabe";a:0:{}s:8:"takazaki";a:0:{}s:5:"tsuno";a:0:{}}s:6:"nagano";a:75:{s:4:"achi";a:0:{}s:8:"agematsu";a:0:{}s:4:"anan";a:0:{}s:4:"aoki";a:0:{}s:5:"asahi";a:0:{}s:7:"azumino";a:0:{}s:9:"chikuhoku";a:0:{}s:7:"chikuma";a:0:{}s:5:"chino";a:0:{}s:6:"fujimi";a:0:{}s:6:"hakuba";a:0:{}s:4:"hara";a:0:{}s:6:"hiraya";a:0:{}s:4:"iida";a:0:{}s:6:"iijima";a:0:{}s:6:"iiyama";a:0:{}s:6:"iizuna";a:0:{}s:5:"ikeda";a:0:{}s:7:"ikusaka";a:0:{}s:3:"ina";a:0:{}s:9:"karuizawa";a:0:{}s:8:"kawakami";a:0:{}s:4:"kiso";a:0:{}s:13:"kisofukushima";a:0:{}s:8:"kitaaiki";a:0:{}s:8:"komagane";a:0:{}s:6:"komoro";a:0:{}s:9:"matsukawa";a:0:{}s:9:"matsumoto";a:0:{}s:5:"miasa";a:0:{}s:10:"minamiaiki";a:0:{}s:10:"minamimaki";a:0:{}s:12:"minamiminowa";a:0:{}s:6:"minowa";a:0:{}s:6:"miyada";a:0:{}s:6:"miyota";a:0:{}s:9:"mochizuki";a:0:{}s:6:"nagano";a:0:{}s:6:"nagawa";a:0:{}s:6:"nagiso";a:0:{}s:8:"nakagawa";a:0:{}s:6:"nakano";a:0:{}s:11:"nozawaonsen";a:0:{}s:5:"obuse";a:0:{}s:5:"ogawa";a:0:{}s:5:"okaya";a:0:{}s:6:"omachi";a:0:{}s:3:"omi";a:0:{}s:6:"ookuwa";a:0:{}s:7:"ooshika";a:0:{}s:5:"otaki";a:0:{}s:5:"otari";a:0:{}s:5:"sakae";a:0:{}s:6:"sakaki";a:0:{}s:4:"saku";a:0:{}s:6:"sakuho";a:0:{}s:9:"shimosuwa";a:0:{}s:12:"shinanomachi";a:0:{}s:8:"shiojiri";a:0:{}s:4:"suwa";a:0:{}s:6:"suzaka";a:0:{}s:6:"takagi";a:0:{}s:8:"takamori";a:0:{}s:8:"takayama";a:0:{}s:9:"tateshina";a:0:{}s:7:"tatsuno";a:0:{}s:9:"togakushi";a:0:{}s:6:"togura";a:0:{}s:4:"tomi";a:0:{}s:4:"ueda";a:0:{}s:4:"wada";a:0:{}s:8:"yamagata";a:0:{}s:10:"yamanouchi";a:0:{}s:6:"yasaka";a:0:{}s:7:"yasuoka";a:0:{}}s:8:"nagasaki";a:22:{s:7:"chijiwa";a:0:{}s:5:"futsu";a:0:{}s:4:"goto";a:0:{}s:6:"hasami";a:0:{}s:6:"hirado";a:0:{}s:3:"iki";a:0:{}s:7:"isahaya";a:0:{}s:8:"kawatana";a:0:{}s:10:"kuchinotsu";a:0:{}s:8:"matsuura";a:0:{}s:8:"nagasaki";a:0:{}s:5:"obama";a:0:{}s:5:"omura";a:0:{}s:5:"oseto";a:0:{}s:6:"saikai";a:0:{}s:6:"sasebo";a:0:{}s:5:"seihi";a:0:{}s:9:"shimabara";a:0:{}s:12:"shinkamigoto";a:0:{}s:7:"togitsu";a:0:{}s:8:"tsushima";a:0:{}s:5:"unzen";a:0:{}}s:4:"nara";a:38:{s:4:"ando";a:0:{}s:4:"gose";a:0:{}s:6:"heguri";a:0:{}s:14:"higashiyoshino";a:0:{}s:7:"ikaruga";a:0:{}s:5:"ikoma";a:0:{}s:12:"kamikitayama";a:0:{}s:7:"kanmaki";a:0:{}s:7:"kashiba";a:0:{}s:9:"kashihara";a:0:{}s:9:"katsuragi";a:0:{}s:5:"kawai";a:0:{}s:8:"kawakami";a:0:{}s:9:"kawanishi";a:0:{}s:5:"koryo";a:0:{}s:8:"kurotaki";a:0:{}s:6:"mitsue";a:0:{}s:6:"miyake";a:0:{}s:4:"nara";a:0:{}s:8:"nosegawa";a:0:{}s:3:"oji";a:0:{}s:4:"ouda";a:0:{}s:5:"oyodo";a:0:{}s:7:"sakurai";a:0:{}s:5:"sango";a:0:{}s:9:"shimoichi";a:0:{}s:13:"shimokitayama";a:0:{}s:6:"shinjo";a:0:{}s:4:"soni";a:0:{}s:8:"takatori";a:0:{}s:10:"tawaramoto";a:0:{}s:7:"tenkawa";a:0:{}s:5:"tenri";a:0:{}s:3:"uda";a:0:{}s:14:"yamatokoriyama";a:0:{}s:12:"yamatotakada";a:0:{}s:7:"yamazoe";a:0:{}s:7:"yoshino";a:0:{}}s:7:"niigata";a:34:{s:3:"aga";a:0:{}s:5:"agano";a:0:{}s:5:"gosen";a:0:{}s:8:"itoigawa";a:0:{}s:9:"izumozaki";a:0:{}s:6:"joetsu";a:0:{}s:4:"kamo";a:0:{}s:6:"kariwa";a:0:{}s:11:"kashiwazaki";a:0:{}s:12:"minamiuonuma";a:0:{}s:7:"mitsuke";a:0:{}s:5:"muika";a:0:{}s:8:"murakami";a:0:{}s:5:"myoko";a:0:{}s:7:"nagaoka";a:0:{}s:7:"niigata";a:0:{}s:5:"ojiya";a:0:{}s:3:"omi";a:0:{}s:4:"sado";a:0:{}s:5:"sanjo";a:0:{}s:5:"seiro";a:0:{}s:6:"seirou";a:0:{}s:8:"sekikawa";a:0:{}s:7:"shibata";a:0:{}s:6:"tagami";a:0:{}s:6:"tainai";a:0:{}s:6:"tochio";a:0:{}s:9:"tokamachi";a:0:{}s:7:"tsubame";a:0:{}s:6:"tsunan";a:0:{}s:6:"uonuma";a:0:{}s:6:"yahiko";a:0:{}s:5:"yoita";a:0:{}s:6:"yuzawa";a:0:{}}s:4:"oita";a:19:{s:5:"beppu";a:0:{}s:8:"bungoono";a:0:{}s:11:"bungotakada";a:0:{}s:6:"hasama";a:0:{}s:4:"hiji";a:0:{}s:9:"himeshima";a:0:{}s:4:"hita";a:0:{}s:8:"kamitsue";a:0:{}s:7:"kokonoe";a:0:{}s:4:"kuju";a:0:{}s:8:"kunisaki";a:0:{}s:4:"kusu";a:0:{}s:4:"oita";a:0:{}s:5:"saiki";a:0:{}s:6:"taketa";a:0:{}s:7:"tsukumi";a:0:{}s:3:"usa";a:0:{}s:5:"usuki";a:0:{}s:4:"yufu";a:0:{}}s:7:"okayama";a:26:{s:6:"akaiwa";a:0:{}s:8:"asakuchi";a:0:{}s:5:"bizen";a:0:{}s:9:"hayashima";a:0:{}s:5:"ibara";a:0:{}s:8:"kagamino";a:0:{}s:7:"kasaoka";a:0:{}s:8:"kibichuo";a:0:{}s:7:"kumenan";a:0:{}s:9:"kurashiki";a:0:{}s:6:"maniwa";a:0:{}s:6:"misaki";a:0:{}s:4:"nagi";a:0:{}s:5:"niimi";a:0:{}s:12:"nishiawakura";a:0:{}s:7:"okayama";a:0:{}s:7:"satosho";a:0:{}s:8:"setouchi";a:0:{}s:6:"shinjo";a:0:{}s:4:"shoo";a:0:{}s:4:"soja";a:0:{}s:9:"takahashi";a:0:{}s:6:"tamano";a:0:{}s:7:"tsuyama";a:0:{}s:4:"wake";a:0:{}s:6:"yakage";a:0:{}}s:7:"okinawa";a:42:{s:5:"aguni";a:0:{}s:7:"ginowan";a:0:{}s:6:"ginoza";a:0:{}s:9:"gushikami";a:0:{}s:7:"haebaru";a:0:{}s:7:"higashi";a:0:{}s:6:"hirara";a:0:{}s:5:"iheya";a:0:{}s:8:"ishigaki";a:0:{}s:8:"ishikawa";a:0:{}s:6:"itoman";a:0:{}s:5:"izena";a:0:{}s:6:"kadena";a:0:{}s:3:"kin";a:0:{}s:9:"kitadaito";a:0:{}s:14:"kitanakagusuku";a:0:{}s:8:"kumejima";a:0:{}s:8:"kunigami";a:0:{}s:11:"minamidaito";a:0:{}s:6:"motobu";a:0:{}s:4:"nago";a:0:{}s:4:"naha";a:0:{}s:10:"nakagusuku";a:0:{}s:7:"nakijin";a:0:{}s:5:"nanjo";a:0:{}s:9:"nishihara";a:0:{}s:5:"ogimi";a:0:{}s:7:"okinawa";a:0:{}s:4:"onna";a:0:{}s:7:"shimoji";a:0:{}s:8:"taketomi";a:0:{}s:6:"tarama";a:0:{}s:9:"tokashiki";a:0:{}s:10:"tomigusuku";a:0:{}s:6:"tonaki";a:0:{}s:6:"urasoe";a:0:{}s:5:"uruma";a:0:{}s:5:"yaese";a:0:{}s:7:"yomitan";a:0:{}s:8:"yonabaru";a:0:{}s:8:"yonaguni";a:0:{}s:6:"zamami";a:0:{}}s:5:"osaka";a:50:{s:5:"abeno";a:0:{}s:14:"chihayaakasaka";a:0:{}s:4:"chuo";a:0:{}s:5:"daito";a:0:{}s:9:"fujiidera";a:0:{}s:8:"habikino";a:0:{}s:6:"hannan";a:0:{}s:12:"higashiosaka";a:0:{}s:16:"higashisumiyoshi";a:0:{}s:15:"higashiyodogawa";a:0:{}s:8:"hirakata";a:0:{}s:7:"ibaraki";a:0:{}s:5:"ikeda";a:0:{}s:5:"izumi";a:0:{}s:9:"izumiotsu";a:0:{}s:9:"izumisano";a:0:{}s:6:"kadoma";a:0:{}s:7:"kaizuka";a:0:{}s:5:"kanan";a:0:{}s:9:"kashiwara";a:0:{}s:6:"katano";a:0:{}s:13:"kawachinagano";a:0:{}s:9:"kishiwada";a:0:{}s:4:"kita";a:0:{}s:8:"kumatori";a:0:{}s:9:"matsubara";a:0:{}s:6:"minato";a:0:{}s:5:"minoh";a:0:{}s:6:"misaki";a:0:{}s:9:"moriguchi";a:0:{}s:8:"neyagawa";a:0:{}s:5:"nishi";a:0:{}s:4:"nose";a:0:{}s:11:"osakasayama";a:0:{}s:5:"sakai";a:0:{}s:6:"sayama";a:0:{}s:6:"sennan";a:0:{}s:6:"settsu";a:0:{}s:11:"shijonawate";a:0:{}s:9:"shimamoto";a:0:{}s:5:"suita";a:0:{}s:7:"tadaoka";a:0:{}s:6:"taishi";a:0:{}s:6:"tajiri";a:0:{}s:8:"takaishi";a:0:{}s:9:"takatsuki";a:0:{}s:12:"tondabayashi";a:0:{}s:8:"toyonaka";a:0:{}s:6:"toyono";a:0:{}s:3:"yao";a:0:{}}s:4:"saga";a:26:{s:6:"ariake";a:0:{}s:5:"arita";a:0:{}s:8:"fukudomi";a:0:{}s:6:"genkai";a:0:{}s:8:"hamatama";a:0:{}s:5:"hizen";a:0:{}s:5:"imari";a:0:{}s:8:"kamimine";a:0:{}s:7:"kanzaki";a:0:{}s:7:"karatsu";a:0:{}s:7:"kashima";a:0:{}s:8:"kitagata";a:0:{}s:8:"kitahata";a:0:{}s:6:"kiyama";a:0:{}s:7:"kouhoku";a:0:{}s:7:"kyuragi";a:0:{}s:10:"nishiarita";a:0:{}s:3:"ogi";a:0:{}s:6:"omachi";a:0:{}s:5:"ouchi";a:0:{}s:4:"saga";a:0:{}s:9:"shiroishi";a:0:{}s:4:"taku";a:0:{}s:4:"tara";a:0:{}s:4:"tosu";a:0:{}s:11:"yoshinogari";a:0:{}}s:7:"saitama";a:69:{s:7:"arakawa";a:0:{}s:5:"asaka";a:0:{}s:8:"chichibu";a:0:{}s:6:"fujimi";a:0:{}s:8:"fujimino";a:0:{}s:6:"fukaya";a:0:{}s:5:"hanno";a:0:{}s:5:"hanyu";a:0:{}s:6:"hasuda";a:0:{}s:8:"hatogaya";a:0:{}s:8:"hatoyama";a:0:{}s:6:"hidaka";a:0:{}s:15:"higashichichibu";a:0:{}s:16:"higashimatsuyama";a:0:{}s:5:"honjo";a:0:{}s:3:"ina";a:0:{}s:5:"iruma";a:0:{}s:8:"iwatsuki";a:0:{}s:9:"kamiizumi";a:0:{}s:8:"kamikawa";a:0:{}s:8:"kamisato";a:0:{}s:8:"kasukabe";a:0:{}s:7:"kawagoe";a:0:{}s:9:"kawaguchi";a:0:{}s:8:"kawajima";a:0:{}s:4:"kazo";a:0:{}s:8:"kitamoto";a:0:{}s:9:"koshigaya";a:0:{}s:7:"kounosu";a:0:{}s:4:"kuki";a:0:{}s:8:"kumagaya";a:0:{}s:10:"matsubushi";a:0:{}s:6:"minano";a:0:{}s:6:"misato";a:0:{}s:9:"miyashiro";a:0:{}s:7:"miyoshi";a:0:{}s:8:"moroyama";a:0:{}s:8:"nagatoro";a:0:{}s:8:"namegawa";a:0:{}s:5:"niiza";a:0:{}s:5:"ogano";a:0:{}s:5:"ogawa";a:0:{}s:5:"ogose";a:0:{}s:7:"okegawa";a:0:{}s:5:"omiya";a:0:{}s:5:"otaki";a:0:{}s:6:"ranzan";a:0:{}s:7:"ryokami";a:0:{}s:7:"saitama";a:0:{}s:6:"sakado";a:0:{}s:5:"satte";a:0:{}s:6:"sayama";a:0:{}s:5:"shiki";a:0:{}s:8:"shiraoka";a:0:{}s:4:"soka";a:0:{}s:6:"sugito";a:0:{}s:4:"toda";a:0:{}s:8:"tokigawa";a:0:{}s:10:"tokorozawa";a:0:{}s:12:"tsurugashima";a:0:{}s:5:"urawa";a:0:{}s:6:"warabi";a:0:{}s:6:"yashio";a:0:{}s:6:"yokoze";a:0:{}s:4:"yono";a:0:{}s:5:"yorii";a:0:{}s:7:"yoshida";a:0:{}s:9:"yoshikawa";a:0:{}s:7:"yoshimi";a:0:{}}s:5:"shiga";a:23:{s:5:"aisho";a:0:{}s:4:"gamo";a:0:{}s:10:"higashiomi";a:0:{}s:6:"hikone";a:0:{}s:4:"koka";a:0:{}s:5:"konan";a:0:{}s:5:"kosei";a:0:{}s:4:"koto";a:0:{}s:7:"kusatsu";a:0:{}s:7:"maibara";a:0:{}s:8:"moriyama";a:0:{}s:8:"nagahama";a:0:{}s:9:"nishiazai";a:0:{}s:8:"notogawa";a:0:{}s:11:"omihachiman";a:0:{}s:4:"otsu";a:0:{}s:5:"ritto";a:0:{}s:5:"ryuoh";a:0:{}s:9:"takashima";a:0:{}s:9:"takatsuki";a:0:{}s:8:"torahime";a:0:{}s:8:"toyosato";a:0:{}s:4:"yasu";a:0:{}}s:7:"shimane";a:23:{s:5:"akagi";a:0:{}s:3:"ama";a:0:{}s:5:"gotsu";a:0:{}s:6:"hamada";a:0:{}s:12:"higashiizumo";a:0:{}s:6:"hikawa";a:0:{}s:6:"hikimi";a:0:{}s:5:"izumo";a:0:{}s:8:"kakinoki";a:0:{}s:6:"masuda";a:0:{}s:6:"matsue";a:0:{}s:6:"misato";a:0:{}s:12:"nishinoshima";a:0:{}s:4:"ohda";a:0:{}s:10:"okinoshima";a:0:{}s:8:"okuizumo";a:0:{}s:7:"shimane";a:0:{}s:6:"tamayu";a:0:{}s:7:"tsuwano";a:0:{}s:5:"unnan";a:0:{}s:6:"yakumo";a:0:{}s:6:"yasugi";a:0:{}s:7:"yatsuka";a:0:{}}s:8:"shizuoka";a:36:{s:4:"arai";a:0:{}s:5:"atami";a:0:{}s:4:"fuji";a:0:{}s:7:"fujieda";a:0:{}s:8:"fujikawa";a:0:{}s:10:"fujinomiya";a:0:{}s:7:"fukuroi";a:0:{}s:7:"gotemba";a:0:{}s:7:"haibara";a:0:{}s:9:"hamamatsu";a:0:{}s:10:"higashiizu";a:0:{}s:3:"ito";a:0:{}s:5:"iwata";a:0:{}s:3:"izu";a:0:{}s:9:"izunokuni";a:0:{}s:8:"kakegawa";a:0:{}s:7:"kannami";a:0:{}s:9:"kawanehon";a:0:{}s:6:"kawazu";a:0:{}s:8:"kikugawa";a:0:{}s:5:"kosai";a:0:{}s:10:"makinohara";a:0:{}s:9:"matsuzaki";a:0:{}s:9:"minamiizu";a:0:{}s:7:"mishima";a:0:{}s:9:"morimachi";a:0:{}s:8:"nishiizu";a:0:{}s:6:"numazu";a:0:{}s:8:"omaezaki";a:0:{}s:7:"shimada";a:0:{}s:7:"shimizu";a:0:{}s:7:"shimoda";a:0:{}s:8:"shizuoka";a:0:{}s:6:"susono";a:0:{}s:5:"yaizu";a:0:{}s:7:"yoshida";a:0:{}}s:7:"tochigi";a:31:{s:8:"ashikaga";a:0:{}s:4:"bato";a:0:{}s:4:"haga";a:0:{}s:7:"ichikai";a:0:{}s:7:"iwafune";a:0:{}s:10:"kaminokawa";a:0:{}s:6:"kanuma";a:0:{}s:10:"karasuyama";a:0:{}s:7:"kuroiso";a:0:{}s:7:"mashiko";a:0:{}s:4:"mibu";a:0:{}s:4:"moka";a:0:{}s:6:"motegi";a:0:{}s:4:"nasu";a:0:{}s:12:"nasushiobara";a:0:{}s:5:"nikko";a:0:{}s:9:"nishikata";a:0:{}s:4:"nogi";a:0:{}s:5:"ohira";a:0:{}s:8:"ohtawara";a:0:{}s:5:"oyama";a:0:{}s:6:"sakura";a:0:{}s:4:"sano";a:0:{}s:10:"shimotsuke";a:0:{}s:6:"shioya";a:0:{}s:10:"takanezawa";a:0:{}s:7:"tochigi";a:0:{}s:5:"tsuga";a:0:{}s:5:"ujiie";a:0:{}s:10:"utsunomiya";a:0:{}s:5:"yaita";a:0:{}}s:9:"tokushima";a:17:{s:6:"aizumi";a:0:{}s:4:"anan";a:0:{}s:6:"ichiba";a:0:{}s:5:"itano";a:0:{}s:6:"kainan";a:0:{}s:12:"komatsushima";a:0:{}s:10:"matsushige";a:0:{}s:4:"mima";a:0:{}s:6:"minami";a:0:{}s:7:"miyoshi";a:0:{}s:4:"mugi";a:0:{}s:8:"nakagawa";a:0:{}s:6:"naruto";a:0:{}s:9:"sanagochi";a:0:{}s:9:"shishikui";a:0:{}s:9:"tokushima";a:0:{}s:6:"wajiki";a:0:{}}s:5:"tokyo";a:57:{s:6:"adachi";a:0:{}s:7:"akiruno";a:0:{}s:8:"akishima";a:0:{}s:9:"aogashima";a:0:{}s:7:"arakawa";a:0:{}s:6:"bunkyo";a:0:{}s:7:"chiyoda";a:0:{}s:5:"chofu";a:0:{}s:4:"chuo";a:0:{}s:7:"edogawa";a:0:{}s:5:"fuchu";a:0:{}s:5:"fussa";a:0:{}s:7:"hachijo";a:0:{}s:8:"hachioji";a:0:{}s:6:"hamura";a:0:{}s:13:"higashikurume";a:0:{}s:15:"higashimurayama";a:0:{}s:13:"higashiyamato";a:0:{}s:4:"hino";a:0:{}s:6:"hinode";a:0:{}s:8:"hinohara";a:0:{}s:5:"inagi";a:0:{}s:8:"itabashi";a:0:{}s:10:"katsushika";a:0:{}s:4:"kita";a:0:{}s:6:"kiyose";a:0:{}s:7:"kodaira";a:0:{}s:7:"koganei";a:0:{}s:9:"kokubunji";a:0:{}s:5:"komae";a:0:{}s:4:"koto";a:0:{}s:10:"kouzushima";a:0:{}s:9:"kunitachi";a:0:{}s:7:"machida";a:0:{}s:6:"meguro";a:0:{}s:6:"minato";a:0:{}s:6:"mitaka";a:0:{}s:6:"mizuho";a:0:{}s:15:"musashimurayama";a:0:{}s:9:"musashino";a:0:{}s:6:"nakano";a:0:{}s:6:"nerima";a:0:{}s:9:"ogasawara";a:0:{}s:7:"okutama";a:0:{}s:3:"ome";a:0:{}s:6:"oshima";a:0:{}s:3:"ota";a:0:{}s:8:"setagaya";a:0:{}s:7:"shibuya";a:0:{}s:9:"shinagawa";a:0:{}s:8:"shinjuku";a:0:{}s:8:"suginami";a:0:{}s:6:"sumida";a:0:{}s:9:"tachikawa";a:0:{}s:5:"taito";a:0:{}s:4:"tama";a:0:{}s:7:"toshima";a:0:{}}s:7:"tottori";a:13:{s:5:"chizu";a:0:{}s:4:"hino";a:0:{}s:8:"kawahara";a:0:{}s:4:"koge";a:0:{}s:7:"kotoura";a:0:{}s:6:"misasa";a:0:{}s:5:"nanbu";a:0:{}s:8:"nichinan";a:0:{}s:11:"sakaiminato";a:0:{}s:7:"tottori";a:0:{}s:6:"wakasa";a:0:{}s:4:"yazu";a:0:{}s:6:"yonago";a:0:{}}s:6:"toyama";a:24:{s:5:"asahi";a:0:{}s:5:"fuchu";a:0:{}s:9:"fukumitsu";a:0:{}s:9:"funahashi";a:0:{}s:4:"himi";a:0:{}s:5:"imizu";a:0:{}s:5:"inami";a:0:{}s:6:"johana";a:0:{}s:8:"kamiichi";a:0:{}s:6:"kurobe";a:0:{}s:11:"nakaniikawa";a:0:{}s:10:"namerikawa";a:0:{}s:5:"nanto";a:0:{}s:6:"nyuzen";a:0:{}s:5:"oyabe";a:0:{}s:5:"taira";a:0:{}s:7:"takaoka";a:0:{}s:8:"tateyama";a:0:{}s:4:"toga";a:0:{}s:6:"tonami";a:0:{}s:6:"toyama";a:0:{}s:7:"unazuki";a:0:{}s:4:"uozu";a:0:{}s:6:"yamada";a:0:{}}s:8:"wakayama";a:29:{s:5:"arida";a:0:{}s:9:"aridagawa";a:0:{}s:4:"gobo";a:0:{}s:9:"hashimoto";a:0:{}s:6:"hidaka";a:0:{}s:8:"hirogawa";a:0:{}s:5:"inami";a:0:{}s:5:"iwade";a:0:{}s:6:"kainan";a:0:{}s:9:"kamitonda";a:0:{}s:9:"katsuragi";a:0:{}s:6:"kimino";a:0:{}s:8:"kinokawa";a:0:{}s:8:"kitayama";a:0:{}s:4:"koya";a:0:{}s:4:"koza";a:0:{}s:8:"kozagawa";a:0:{}s:8:"kudoyama";a:0:{}s:9:"kushimoto";a:0:{}s:6:"mihama";a:0:{}s:6:"misato";a:0:{}s:13:"nachikatsuura";a:0:{}s:6:"shingu";a:0:{}s:9:"shirahama";a:0:{}s:5:"taiji";a:0:{}s:6:"tanabe";a:0:{}s:8:"wakayama";a:0:{}s:5:"yuasa";a:0:{}s:4:"yura";a:0:{}}s:8:"yamagata";a:34:{s:5:"asahi";a:0:{}s:8:"funagata";a:0:{}s:9:"higashine";a:0:{}s:4:"iide";a:0:{}s:6:"kahoku";a:0:{}s:10:"kaminoyama";a:0:{}s:8:"kaneyama";a:0:{}s:9:"kawanishi";a:0:{}s:10:"mamurogawa";a:0:{}s:6:"mikawa";a:0:{}s:8:"murayama";a:0:{}s:5:"nagai";a:0:{}s:8:"nakayama";a:0:{}s:5:"nanyo";a:0:{}s:9:"nishikawa";a:0:{}s:9:"obanazawa";a:0:{}s:2:"oe";a:0:{}s:5:"oguni";a:0:{}s:6:"ohkura";a:0:{}s:7:"oishida";a:0:{}s:5:"sagae";a:0:{}s:6:"sakata";a:0:{}s:8:"sakegawa";a:0:{}s:6:"shinjo";a:0:{}s:9:"shirataka";a:0:{}s:6:"shonai";a:0:{}s:8:"takahata";a:0:{}s:5:"tendo";a:0:{}s:6:"tozawa";a:0:{}s:8:"tsuruoka";a:0:{}s:8:"yamagata";a:0:{}s:8:"yamanobe";a:0:{}s:8:"yonezawa";a:0:{}s:4:"yuza";a:0:{}}s:9:"yamaguchi";a:16:{s:3:"abu";a:0:{}s:4:"hagi";a:0:{}s:6:"hikari";a:0:{}s:4:"hofu";a:0:{}s:7:"iwakuni";a:0:{}s:9:"kudamatsu";a:0:{}s:5:"mitou";a:0:{}s:6:"nagato";a:0:{}s:6:"oshima";a:0:{}s:11:"shimonoseki";a:0:{}s:6:"shunan";a:0:{}s:6:"tabuse";a:0:{}s:8:"tokuyama";a:0:{}s:6:"toyota";a:0:{}s:3:"ube";a:0:{}s:3:"yuu";a:0:{}}s:9:"yamanashi";a:28:{s:4:"chuo";a:0:{}s:5:"doshi";a:0:{}s:7:"fuefuki";a:0:{}s:8:"fujikawa";a:0:{}s:15:"fujikawaguchiko";a:0:{}s:11:"fujiyoshida";a:0:{}s:8:"hayakawa";a:0:{}s:6:"hokuto";a:0:{}s:14:"ichikawamisato";a:0:{}s:3:"kai";a:0:{}s:4:"kofu";a:0:{}s:5:"koshu";a:0:{}s:6:"kosuge";a:0:{}s:11:"minami-alps";a:0:{}s:6:"minobu";a:0:{}s:9:"nakamichi";a:0:{}s:5:"nanbu";a:0:{}s:8:"narusawa";a:0:{}s:8:"nirasaki";a:0:{}s:12:"nishikatsura";a:0:{}s:6:"oshino";a:0:{}s:6:"otsuki";a:0:{}s:5:"showa";a:0:{}s:8:"tabayama";a:0:{}s:5:"tsuru";a:0:{}s:8:"uenohara";a:0:{}s:10:"yamanakako";a:0:{}s:9:"yamanashi";a:0:{}}s:6:"栃木";a:0:{}s:6:"愛知";a:0:{}s:6:"愛媛";a:0:{}s:6:"兵庫";a:0:{}s:6:"熊本";a:0:{}s:6:"茨城";a:0:{}s:9:"北海道";a:0:{}s:6:"千葉";a:0:{}s:9:"和歌山";a:0:{}s:6:"長崎";a:0:{}s:6:"長野";a:0:{}s:6:"新潟";a:0:{}s:6:"青森";a:0:{}s:6:"静岡";a:0:{}s:6:"東京";a:0:{}s:6:"石川";a:0:{}s:6:"埼玉";a:0:{}s:6:"三重";a:0:{}s:6:"京都";a:0:{}s:6:"佐賀";a:0:{}s:6:"大分";a:0:{}s:6:"大阪";a:0:{}s:6:"奈良";a:0:{}s:6:"宮城";a:0:{}s:6:"宮崎";a:0:{}s:6:"富山";a:0:{}s:6:"山口";a:0:{}s:6:"山形";a:0:{}s:6:"山梨";a:0:{}s:6:"岩手";a:0:{}s:6:"岐阜";a:0:{}s:6:"岡山";a:0:{}s:6:"島根";a:0:{}s:6:"広島";a:0:{}s:6:"徳島";a:0:{}s:6:"沖縄";a:0:{}s:6:"滋賀";a:0:{}s:9:"神奈川";a:0:{}s:6:"福井";a:0:{}s:6:"福岡";a:0:{}s:6:"福島";a:0:{}s:6:"秋田";a:0:{}s:6:"群馬";a:0:{}s:6:"香川";a:0:{}s:6:"高知";a:0:{}s:6:"鳥取";a:0:{}s:9:"鹿児島";a:0:{}s:8:"kawasaki";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:10:"kitakyushu";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:4:"kobe";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:6:"nagoya";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:7:"sapporo";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:6:"sendai";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:8:"yokohama";a:2:{s:1:"*";a:0:{}s:4:"city";a:1:{s:1:"!";s:0:"";}}s:7:"buyshop";a:0:{}s:12:"fashionstore";a:0:{}s:11:"handcrafted";a:0:{}s:10:"kawaiishop";a:0:{}s:9:"supersale";a:0:{}s:7:"theshop";a:0:{}s:3:"0am";a:0:{}s:3:"0g0";a:0:{}s:3:"0j0";a:0:{}s:3:"0t0";a:0:{}s:5:"mydns";a:0:{}s:3:"pgw";a:0:{}s:3:"wjg";a:0:{}s:11:"usercontent";a:0:{}s:5:"angry";a:0:{}s:8:"babyblue";a:0:{}s:8:"babymilk";a:0:{}s:8:"backdrop";a:0:{}s:7:"bambina";a:0:{}s:6:"bitter";a:0:{}s:5:"blush";a:0:{}s:3:"boo";a:0:{}s:3:"boy";a:0:{}s:9:"boyfriend";a:0:{}s:3:"but";a:0:{}s:8:"candypop";a:0:{}s:5:"capoo";a:0:{}s:7:"catfood";a:0:{}s:5:"cheap";a:0:{}s:8:"chicappa";a:0:{}s:8:"chillout";a:0:{}s:5:"chips";a:0:{}s:7:"chowder";a:0:{}s:3:"chu";a:0:{}s:4:"ciao";a:0:{}s:7:"cocotte";a:0:{}s:8:"coolblog";a:0:{}s:6:"cranky";a:0:{}s:8:"cutegirl";a:0:{}s:3:"daa";a:0:{}s:4:"deca";a:0:{}s:4:"deci";a:0:{}s:6:"digick";a:0:{}s:6:"egoism";a:0:{}s:7:"fakefur";a:0:{}s:3:"fem";a:0:{}s:5:"flier";a:0:{}s:6:"floppy";a:0:{}s:4:"fool";a:0:{}s:10:"frenchkiss";a:0:{}s:10:"girlfriend";a:0:{}s:5:"girly";a:0:{}s:6:"gloomy";a:0:{}s:5:"gonna";a:0:{}s:7:"greater";a:0:{}s:5:"hacca";a:0:{}s:5:"heavy";a:0:{}s:3:"her";a:0:{}s:4:"hiho";a:0:{}s:5:"hippy";a:0:{}s:4:"holy";a:0:{}s:6:"hungry";a:0:{}s:6:"icurus";a:0:{}s:5:"itigo";a:0:{}s:9:"jellybean";a:0:{}s:8:"kikirara";a:0:{}s:4:"kill";a:0:{}s:4:"kilo";a:0:{}s:5:"kuron";a:0:{}s:10:"littlestar";a:0:{}s:9:"lolipopmc";a:0:{}s:10:"lolitapunk";a:0:{}s:4:"lomo";a:0:{}s:7:"lovepop";a:0:{}s:8:"lovesick";a:0:{}s:4:"main";a:0:{}s:4:"mods";a:0:{}s:4:"mond";a:0:{}s:9:"mongolian";a:0:{}s:3:"moo";a:0:{}s:7:"namaste";a:0:{}s:6:"nikita";a:0:{}s:7:"nobushi";a:0:{}s:4:"noor";a:0:{}s:4:"oops";a:0:{}s:8:"parallel";a:0:{}s:8:"parasite";a:0:{}s:6:"pecori";a:0:{}s:6:"peewee";a:0:{}s:5:"penne";a:0:{}s:6:"pepper";a:0:{}s:5:"perma";a:0:{}s:7:"pigboat";a:0:{}s:6:"pinoko";a:0:{}s:5:"punyu";a:0:{}s:4:"pupu";a:0:{}s:8:"pussycat";a:0:{}s:3:"pya";a:0:{}s:8:"raindrop";a:0:{}s:9:"readymade";a:0:{}s:6:"sadist";a:0:{}s:9:"schoolbus";a:0:{}s:6:"secret";a:0:{}s:5:"staba";a:0:{}s:8:"stripper";a:0:{}s:3:"sub";a:0:{}s:8:"sunnyday";a:0:{}s:5:"thick";a:0:{}s:8:"tonkotsu";a:0:{}s:5:"under";a:0:{}s:5:"upper";a:0:{}s:6:"velvet";a:0:{}s:5:"verse";a:0:{}s:6:"versus";a:0:{}s:6:"vivian";a:0:{}s:6:"watson";a:0:{}s:7:"weblike";a:0:{}s:9:"whitesnow";a:0:{}s:6:"zombie";a:0:{}s:8:"blogspot";a:0:{}s:3:"2-d";a:0:{}s:4:"bona";a:0:{}s:4:"crap";a:0:{}s:8:"daynight";a:0:{}s:3:"eek";a:0:{}s:4:"flop";a:0:{}s:8:"halfmoon";a:0:{}s:4:"jeez";a:0:{}s:6:"matrix";a:0:{}s:6:"mimoza";a:0:{}s:9:"netgamers";a:0:{}s:6:"nyanta";a:0:{}s:4:"o0o0";a:0:{}s:3:"rdy";a:0:{}s:3:"rgr";a:0:{}s:5:"rulez";a:0:{}s:13:"sakurastorage";a:2:{s:5:"isk01";a:1:{s:2:"s3";a:0:{}}s:5:"isk02";a:1:{s:2:"s3";a:0:{}}}s:6:"saloon";a:0:{}s:4:"sblo";a:0:{}s:3:"skr";a:0:{}s:4:"tank";a:0:{}s:5:"uh-oh";a:0:{}s:4:"undo";a:0:{}s:8:"webaccel";a:2:{s:2:"rs";a:0:{}s:4:"user";a:0:{}}s:8:"websozai";a:0:{}s:3:"xii";a:0:{}}s:2:"ke";a:9:{s:2:"ac";a:0:{}s:2:"co";a:1:{s:8:"blogspot";a:0:{}}s:2:"go";a:0:{}s:4:"info";a:0:{}s:2:"me";a:0:{}s:4:"mobi";a:0:{}s:2:"ne";a:0:{}s:2:"or";a:0:{}s:2:"sc";a:0:{}}s:2:"kg";a:7:{s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:2:"us";a:0:{}}s:2:"kh";a:1:{s:1:"*";a:0:{}}s:2:"ki";a:7:{s:3:"edu";a:0:{}s:3:"biz";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"com";a:0:{}}s:2:"km";a:17:{s:3:"org";a:0:{}s:3:"nom";a:0:{}s:3:"gov";a:0:{}s:3:"prd";a:0:{}s:2:"tm";a:0:{}s:3:"edu";a:0:{}s:3:"mil";a:0:{}s:3:"ass";a:0:{}s:3:"com";a:0:{}s:4:"coop";a:0:{}s:4:"asso";a:0:{}s:6:"presse";a:0:{}s:7:"medecin";a:0:{}s:8:"notaires";a:0:{}s:11:"pharmaciens";a:0:{}s:11:"veterinaire";a:0:{}s:4:"gouv";a:0:{}}s:2:"kn";a:4:{s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}}s:2:"kp";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"rep";a:0:{}s:3:"tra";a:0:{}}s:2:"kr";a:30:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:2:"es";a:0:{}s:2:"go";a:0:{}s:2:"hs";a:0:{}s:2:"kg";a:0:{}s:3:"mil";a:0:{}s:2:"ms";a:0:{}s:2:"ne";a:0:{}s:2:"or";a:0:{}s:2:"pe";a:0:{}s:2:"re";a:0:{}s:2:"sc";a:0:{}s:5:"busan";a:0:{}s:8:"chungbuk";a:0:{}s:8:"chungnam";a:0:{}s:5:"daegu";a:0:{}s:7:"daejeon";a:0:{}s:7:"gangwon";a:0:{}s:7:"gwangju";a:0:{}s:9:"gyeongbuk";a:0:{}s:8:"gyeonggi";a:0:{}s:9:"gyeongnam";a:0:{}s:7:"incheon";a:0:{}s:4:"jeju";a:0:{}s:7:"jeonbuk";a:0:{}s:7:"jeonnam";a:0:{}s:5:"seoul";a:0:{}s:5:"ulsan";a:0:{}s:8:"blogspot";a:0:{}}s:2:"kw";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"emb";a:0:{}s:3:"gov";a:0:{}s:3:"ind";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"ky";a:4:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"kz";a:8:{s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:0:{}s:6:"jcloud";a:0:{}s:11:"kazteleport";a:1:{s:5:"upaas";a:0:{}}}s:2:"la";a:10:{s:3:"int";a:0:{}s:3:"net";a:0:{}s:4:"info";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"per";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"bnr";a:0:{}s:1:"c";a:0:{}}s:2:"lb";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"lc";a:7:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:2:"co";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"oy";a:0:{}}s:2:"li";a:2:{s:8:"blogspot";a:0:{}s:3:"caa";a:0:{}}s:2:"lk";a:15:{s:3:"gov";a:0:{}s:3:"sch";a:0:{}s:3:"net";a:0:{}s:3:"int";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"ngo";a:0:{}s:3:"soc";a:0:{}s:3:"web";a:0:{}s:3:"ltd";a:0:{}s:4:"assn";a:0:{}s:3:"grp";a:0:{}s:5:"hotel";a:0:{}s:2:"ac";a:0:{}}s:2:"lr";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}}s:2:"ls";a:9:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"sc";a:0:{}}s:2:"lt";a:2:{s:3:"gov";a:0:{}s:8:"blogspot";a:0:{}}s:2:"lu";a:2:{s:8:"blogspot";a:0:{}s:10:"123website";a:0:{}}s:2:"lv";a:9:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"mil";a:0:{}s:2:"id";a:0:{}s:3:"net";a:0:{}s:3:"asn";a:0:{}s:4:"conf";a:0:{}}s:2:"ly";a:9:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"plc";a:0:{}s:3:"edu";a:0:{}s:3:"sch";a:0:{}s:3:"med";a:0:{}s:3:"org";a:0:{}s:2:"id";a:0:{}}s:2:"ma";a:6:{s:2:"co";a:0:{}s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:2:"ac";a:0:{}s:5:"press";a:0:{}}s:2:"mc";a:2:{s:2:"tm";a:0:{}s:4:"asso";a:0:{}}s:2:"md";a:2:{s:8:"blogspot";a:0:{}s:2:"ir";a:0:{}}s:2:"me";a:42:{s:2:"co";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:2:"ac";a:0:{}s:3:"gov";a:0:{}s:3:"its";a:0:{}s:4:"priv";a:0:{}s:3:"c66";a:0:{}s:6:"daplie";a:1:{s:9:"localhost";a:0:{}}s:9:"edgestack";a:0:{}s:8:"filegear";a:0:{}s:11:"filegear-au";a:0:{}s:11:"filegear-de";a:0:{}s:11:"filegear-gb";a:0:{}s:11:"filegear-ie";a:0:{}s:11:"filegear-jp";a:0:{}s:11:"filegear-sg";a:0:{}s:6:"glitch";a:0:{}s:6:"lohmus";a:0:{}s:5:"barsy";a:0:{}s:4:"mcpe";a:0:{}s:5:"mcdir";a:0:{}s:9:"soundcast";a:0:{}s:4:"tcp4";a:0:{}s:8:"brasilia";a:0:{}s:4:"ddns";a:0:{}s:6:"dnsfor";a:0:{}s:5:"hopto";a:0:{}s:7:"loginto";a:0:{}s:4:"noip";a:0:{}s:6:"webhop";a:0:{}s:3:"vp4";a:0:{}s:11:"diskstation";a:0:{}s:7:"dscloud";a:0:{}s:4:"i234";a:0:{}s:4:"myds";a:0:{}s:8:"synology";a:0:{}s:7:"transip";a:1:{s:4:"site";a:0:{}}s:8:"wedeploy";a:0:{}s:5:"yombo";a:0:{}s:6:"nohost";a:0:{}}s:2:"mg";a:9:{s:3:"org";a:0:{}s:3:"nom";a:0:{}s:3:"gov";a:0:{}s:3:"prd";a:0:{}s:2:"tm";a:0:{}s:3:"edu";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:0:{}s:2:"co";a:0:{}}s:2:"mh";a:0:{}s:3:"mil";a:0:{}s:2:"mk";a:8:{s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"inf";a:0:{}s:4:"name";a:0:{}s:8:"blogspot";a:0:{}}s:2:"ml";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:4:"gouv";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:6:"presse";a:0:{}}s:2:"mm";a:1:{s:1:"*";a:0:{}}s:2:"mn";a:4:{s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:3:"nyc";a:0:{}}s:2:"mo";a:5:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}}s:4:"mobi";a:2:{s:5:"barsy";a:0:{}s:7:"dscloud";a:0:{}}s:2:"mp";a:1:{s:2:"ju";a:0:{}}s:2:"mq";a:0:{}s:2:"mr";a:2:{s:3:"gov";a:0:{}s:8:"blogspot";a:0:{}}s:2:"ms";a:7:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"lab";a:0:{}s:8:"minisite";a:0:{}}s:2:"mt";a:4:{s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"mu";a:7:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:2:"ac";a:0:{}s:2:"co";a:0:{}s:2:"or";a:0:{}}s:6:"museum";a:0:{}s:2:"mv";a:14:{s:4:"aero";a:0:{}s:3:"biz";a:0:{}s:3:"com";a:0:{}s:4:"coop";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:6:"museum";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"pro";a:0:{}}s:2:"mw";a:11:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:4:"coop";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"int";a:0:{}s:6:"museum";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"mx";a:6:{s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"gob";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:8:"blogspot";a:0:{}}s:2:"my";a:9:{s:3:"biz";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:8:"blogspot";a:0:{}}s:2:"mz";a:8:{s:2:"ac";a:0:{}s:3:"adv";a:0:{}s:2:"co";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"na";a:17:{s:4:"info";a:0:{}s:3:"pro";a:0:{}s:4:"name";a:0:{}s:6:"school";a:0:{}s:2:"or";a:0:{}s:2:"dr";a:0:{}s:2:"us";a:0:{}s:2:"mx";a:0:{}s:2:"ca";a:0:{}s:2:"in";a:0:{}s:2:"cc";a:0:{}s:2:"tv";a:0:{}s:2:"ws";a:0:{}s:4:"mobi";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}}s:4:"name";a:2:{s:3:"her";a:1:{s:6:"forgot";a:0:{}}s:3:"his";a:1:{s:6:"forgot";a:0:{}}}s:2:"nc";a:2:{s:4:"asso";a:0:{}s:3:"nom";a:0:{}}s:2:"ne";a:0:{}s:3:"net";a:180:{s:13:"adobeaemcloud";a:0:{}s:14:"adobeio-static";a:0:{}s:14:"adobeioruntime";a:0:{}s:6:"akadns";a:0:{}s:6:"akamai";a:0:{}s:14:"akamai-staging";a:0:{}s:10:"akamaiedge";a:0:{}s:18:"akamaiedge-staging";a:0:{}s:8:"akamaihd";a:0:{}s:16:"akamaihd-staging";a:0:{}s:12:"akamaiorigin";a:0:{}s:20:"akamaiorigin-staging";a:0:{}s:9:"akamaized";a:0:{}s:17:"akamaized-staging";a:0:{}s:7:"edgekey";a:0:{}s:15:"edgekey-staging";a:0:{}s:9:"edgesuite";a:0:{}s:17:"edgesuite-staging";a:0:{}s:10:"alwaysdata";a:0:{}s:7:"myamaze";a:0:{}s:10:"cloudfront";a:0:{}s:8:"t3l3p0rt";a:0:{}s:6:"appudo";a:0:{}s:13:"atlassian-dev";a:1:{s:4:"prod";a:1:{s:3:"cdn";a:0:{}}}s:7:"myfritz";a:0:{}s:9:"onavstack";a:0:{}s:10:"shopselect";a:0:{}s:12:"blackbaudcdn";a:0:{}s:6:"boomla";a:0:{}s:7:"bplaced";a:0:{}s:7:"square7";a:0:{}s:2:"gb";a:0:{}s:2:"hu";a:0:{}s:2:"jp";a:0:{}s:2:"se";a:0:{}s:2:"uk";a:0:{}s:2:"in";a:0:{}s:11:"clickrising";a:0:{}s:11:"cloudaccess";a:0:{}s:17:"cloudflareanycast";a:1:{s:3:"cdn";a:0:{}}s:12:"cloudflarecn";a:1:{s:3:"cdn";a:0:{}}s:16:"cloudflareglobal";a:1:{s:3:"cdn";a:0:{}}s:10:"cloudflare";a:1:{s:3:"cdn";a:0:{}}s:5:"cdn77";a:1:{s:1:"r";a:0:{}}s:9:"cdn77-ssl";a:0:{}s:9:"dns-cloud";a:0:{}s:11:"dns-dynamic";a:0:{}s:8:"feste-ip";a:0:{}s:10:"knx-server";a:0:{}s:13:"static-access";a:0:{}s:11:"cryptonomic";a:1:{s:1:"*";a:0:{}}s:10:"dattolocal";a:0:{}s:7:"mydatto";a:0:{}s:6:"debian";a:0:{}s:9:"bitbridge";a:0:{}s:12:"at-band-camp";a:0:{}s:7:"blogdns";a:0:{}s:8:"broke-it";a:0:{}s:10:"buyshouses";a:0:{}s:8:"dnsalias";a:0:{}s:7:"dnsdojo";a:0:{}s:7:"does-it";a:0:{}s:9:"dontexist";a:0:{}s:8:"dynalias";a:0:{}s:9:"dynathome";a:0:{}s:13:"endofinternet";a:0:{}s:7:"from-az";a:0:{}s:7:"from-co";a:0:{}s:7:"from-la";a:0:{}s:7:"from-ny";a:0:{}s:7:"gets-it";a:0:{}s:12:"ham-radio-op";a:0:{}s:7:"homeftp";a:0:{}s:6:"homeip";a:0:{}s:9:"homelinux";a:0:{}s:8:"homeunix";a:0:{}s:11:"in-the-band";a:0:{}s:9:"is-a-chef";a:0:{}s:9:"is-a-geek";a:0:{}s:8:"isa-geek";a:0:{}s:9:"kicks-ass";a:0:{}s:13:"office-on-the";a:0:{}s:7:"podzone";a:0:{}s:13:"scrapper-site";a:0:{}s:6:"selfip";a:0:{}s:8:"sells-it";a:0:{}s:8:"servebbs";a:0:{}s:8:"serveftp";a:0:{}s:8:"thruhere";a:0:{}s:6:"webhop";a:0:{}s:8:"definima";a:0:{}s:7:"casacam";a:0:{}s:4:"dynu";a:0:{}s:5:"dynv6";a:0:{}s:6:"twmail";a:0:{}s:2:"ru";a:0:{}s:11:"channelsdvr";a:1:{s:1:"u";a:0:{}}s:6:"fastly";a:4:{s:7:"freetls";a:0:{}s:3:"map";a:0:{}s:4:"prod";a:2:{s:1:"a";a:0:{}s:6:"global";a:0:{}}s:3:"ssl";a:3:{s:1:"a";a:0:{}s:1:"b";a:0:{}s:6:"global";a:0:{}}}s:8:"fastlylb";a:1:{s:3:"map";a:0:{}}s:7:"edgeapp";a:0:{}s:12:"flynnhosting";a:0:{}s:10:"keyword-on";a:0:{}s:7:"live-on";a:0:{}s:9:"server-on";a:0:{}s:9:"cdn-edges";a:0:{}s:9:"localcert";a:0:{}s:13:"localhostcert";a:0:{}s:6:"heteml";a:0:{}s:14:"cloudfunctions";a:0:{}s:9:"moonscale";a:0:{}s:6:"in-dsl";a:0:{}s:6:"in-vpn";a:0:{}s:7:"ipifony";a:0:{}s:4:"iobb";a:0:{}s:10:"cloudjiffy";a:2:{s:7:"fra1-de";a:0:{}s:8:"west1-us";a:0:{}}s:6:"elastx";a:3:{s:8:"jls-sto1";a:0:{}s:8:"jls-sto2";a:0:{}s:8:"jls-sto3";a:0:{}}s:10:"faststacks";a:0:{}s:11:"massivegrid";a:1:{s:4:"paas";a:6:{s:4:"fr-1";a:0:{}s:5:"lon-1";a:0:{}s:5:"lon-2";a:0:{}s:4:"ny-1";a:0:{}s:4:"ny-2";a:0:{}s:4:"sg-1";a:0:{}}}s:11:"saveincloud";a:2:{s:8:"jelastic";a:0:{}s:12:"nordeste-idc";a:0:{}}s:10:"scaleforce";a:1:{s:1:"j";a:0:{}}s:8:"tsukaeru";a:1:{s:8:"jelastic";a:0:{}}s:8:"kinghost";a:0:{}s:4:"uni5";a:0:{}s:8:"krellian";a:0:{}s:5:"barsy";a:0:{}s:6:"memset";a:0:{}s:9:"azure-api";a:0:{}s:12:"azure-mobile";a:0:{}s:9:"azureedge";a:0:{}s:7:"azurefd";a:0:{}s:15:"azurestaticapps";a:12:{i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}i:4;a:0:{}i:5;a:0:{}i:6;a:0:{}i:7;a:0:{}s:9:"centralus";a:0:{}s:8:"eastasia";a:0:{}s:7:"eastus2";a:0:{}s:10:"westeurope";a:0:{}s:7:"westus2";a:0:{}}s:13:"azurewebsites";a:0:{}s:8:"cloudapp";a:0:{}s:14:"trafficmanager";a:0:{}s:7:"windows";a:2:{s:4:"core";a:1:{s:4:"blob";a:0:{}}s:10:"servicebus";a:0:{}}s:5:"dnsup";a:0:{}s:5:"hicam";a:0:{}s:7:"now-dns";a:0:{}s:5:"ownip";a:0:{}s:6:"vpndns";a:0:{}s:8:"bounceme";a:0:{}s:4:"ddns";a:0:{}s:14:"eating-organic";a:0:{}s:9:"mydissent";a:0:{}s:8:"myeffect";a:0:{}s:9:"mymediapc";a:0:{}s:5:"mypsx";a:0:{}s:16:"mysecuritycamera";a:0:{}s:6:"nhlfan";a:0:{}s:5:"no-ip";a:0:{}s:6:"pgafan";a:0:{}s:24:"privatizehealthinsurance";a:0:{}s:10:"redirectme";a:0:{}s:9:"serveblog";a:0:{}s:14:"serveminecraft";a:0:{}s:5:"sytes";a:0:{}s:13:"cloudycluster";a:0:{}s:3:"ovh";a:2:{s:7:"hosting";a:1:{s:1:"*";a:0:{}}s:7:"webpaas";a:1:{s:1:"*";a:0:{}}}s:8:"myradweb";a:0:{}s:8:"rackmaze";a:0:{}s:7:"squares";a:0:{}s:10:"schokokeks";a:0:{}s:16:"firewall-gateway";a:0:{}s:6:"seidat";a:0:{}s:10:"senseering";a:0:{}s:8:"siteleaf";a:0:{}s:8:"vps-host";a:1:{s:8:"jelastic";a:3:{s:3:"atl";a:0:{}s:3:"njs";a:0:{}s:3:"ric";a:0:{}}}s:12:"myspreadshop";a:0:{}s:4:"srcf";a:2:{s:3:"soc";a:0:{}s:4:"user";a:0:{}}s:8:"supabase";a:0:{}s:7:"dsmynas";a:0:{}s:8:"familyds";a:0:{}s:9:"tailscale";a:1:{s:4:"beta";a:0:{}}s:2:"ts";a:1:{s:1:"c";a:1:{s:1:"*";a:0:{}}}s:10:"torproject";a:1:{s:5:"pages";a:0:{}}s:14:"reserve-online";a:0:{}s:13:"community-pro";a:0:{}s:9:"meinforum";a:0:{}s:11:"yandexcloud";a:2:{s:7:"storage";a:0:{}s:7:"website";a:0:{}}s:2:"za";a:0:{}}s:2:"nf";a:10:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"per";a:0:{}s:3:"rec";a:0:{}s:3:"web";a:0:{}s:4:"arts";a:0:{}s:4:"firm";a:0:{}s:4:"info";a:0:{}s:5:"other";a:0:{}s:5:"store";a:0:{}}s:2:"ng";a:15:{s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:1:"i";a:0:{}s:3:"mil";a:0:{}s:4:"mobi";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}s:3:"col";a:0:{}s:4:"firm";a:0:{}s:3:"gen";a:0:{}s:3:"ltd";a:0:{}s:3:"ngo";a:0:{}}s:2:"ni";a:14:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:2:"in";a:0:{}s:4:"info";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"nom";a:0:{}s:3:"org";a:0:{}s:3:"web";a:0:{}}s:2:"nl";a:10:{s:2:"co";a:0:{}s:15:"hosting-cluster";a:0:{}s:8:"blogspot";a:0:{}s:3:"gov";a:0:{}s:6:"khplay";a:0:{}s:10:"123website";a:0:{}s:12:"myspreadshop";a:0:{}s:8:"transurl";a:1:{s:1:"*";a:0:{}}s:7:"cistron";a:0:{}s:5:"demon";a:0:{}}s:2:"no";a:728:{s:3:"fhs";a:0:{}s:3:"vgs";a:0:{}s:10:"fylkesbibl";a:0:{}s:9:"folkebibl";a:0:{}s:6:"museum";a:0:{}s:6:"idrett";a:0:{}s:4:"priv";a:0:{}s:3:"mil";a:0:{}s:4:"stat";a:0:{}s:3:"dep";a:0:{}s:7:"kommune";a:0:{}s:5:"herad";a:0:{}s:2:"aa";a:1:{s:2:"gs";a:0:{}}s:2:"ah";a:1:{s:2:"gs";a:0:{}}s:2:"bu";a:1:{s:2:"gs";a:0:{}}s:2:"fm";a:1:{s:2:"gs";a:0:{}}s:2:"hl";a:1:{s:2:"gs";a:0:{}}s:2:"hm";a:1:{s:2:"gs";a:0:{}}s:9:"jan-mayen";a:1:{s:2:"gs";a:0:{}}s:2:"mr";a:1:{s:2:"gs";a:0:{}}s:2:"nl";a:1:{s:2:"gs";a:0:{}}s:2:"nt";a:1:{s:2:"gs";a:0:{}}s:2:"of";a:1:{s:2:"gs";a:0:{}}s:2:"ol";a:1:{s:2:"gs";a:0:{}}s:4:"oslo";a:1:{s:2:"gs";a:0:{}}s:2:"rl";a:1:{s:2:"gs";a:0:{}}s:2:"sf";a:1:{s:2:"gs";a:0:{}}s:2:"st";a:1:{s:2:"gs";a:0:{}}s:8:"svalbard";a:1:{s:2:"gs";a:0:{}}s:2:"tm";a:1:{s:2:"gs";a:0:{}}s:2:"tr";a:1:{s:2:"gs";a:0:{}}s:2:"va";a:1:{s:2:"gs";a:0:{}}s:2:"vf";a:1:{s:2:"gs";a:0:{}}s:8:"akrehamn";a:0:{}s:9:"åkrehamn";a:0:{}s:6:"algard";a:0:{}s:8:"ålgård";a:0:{}s:4:"arna";a:0:{}s:10:"brumunddal";a:0:{}s:5:"bryne";a:0:{}s:11:"bronnoysund";a:0:{}s:13:"brønnøysund";a:0:{}s:6:"drobak";a:0:{}s:7:"drøbak";a:0:{}s:8:"egersund";a:0:{}s:7:"fetsund";a:0:{}s:5:"floro";a:0:{}s:6:"florø";a:0:{}s:11:"fredrikstad";a:0:{}s:8:"hokksund";a:0:{}s:8:"honefoss";a:0:{}s:9:"hønefoss";a:0:{}s:8:"jessheim";a:0:{}s:9:"jorpeland";a:0:{}s:10:"jørpeland";a:0:{}s:8:"kirkenes";a:0:{}s:8:"kopervik";a:0:{}s:12:"krokstadelva";a:0:{}s:8:"langevag";a:0:{}s:9:"langevåg";a:0:{}s:7:"leirvik";a:0:{}s:9:"mjondalen";a:0:{}s:10:"mjøndalen";a:0:{}s:9:"mo-i-rana";a:0:{}s:7:"mosjoen";a:0:{}s:8:"mosjøen";a:0:{}s:12:"nesoddtangen";a:0:{}s:8:"orkanger";a:0:{}s:6:"osoyro";a:0:{}s:7:"osøyro";a:0:{}s:6:"raholt";a:0:{}s:7:"råholt";a:0:{}s:12:"sandnessjoen";a:0:{}s:13:"sandnessjøen";a:0:{}s:13:"skedsmokorset";a:0:{}s:7:"slattum";a:0:{}s:10:"spjelkavik";a:0:{}s:9:"stathelle";a:0:{}s:7:"stavern";a:0:{}s:15:"stjordalshalsen";a:0:{}s:16:"stjørdalshalsen";a:0:{}s:8:"tananger";a:0:{}s:6:"tranby";a:0:{}s:11:"vossevangen";a:0:{}s:6:"afjord";a:0:{}s:7:"åfjord";a:0:{}s:7:"agdenes";a:0:{}s:2:"al";a:0:{}s:3:"ål";a:0:{}s:7:"alesund";a:0:{}s:8:"ålesund";a:0:{}s:9:"alstahaug";a:0:{}s:4:"alta";a:0:{}s:6:"áltá";a:0:{}s:9:"alaheadju";a:0:{}s:10:"álaheadju";a:0:{}s:6:"alvdal";a:0:{}s:4:"amli";a:0:{}s:5:"åmli";a:0:{}s:4:"amot";a:0:{}s:5:"åmot";a:0:{}s:6:"andebu";a:0:{}s:5:"andoy";a:0:{}s:6:"andøy";a:0:{}s:9:"andasuolo";a:0:{}s:5:"ardal";a:0:{}s:6:"årdal";a:0:{}s:7:"aremark";a:0:{}s:7:"arendal";a:0:{}s:3:"ås";a:0:{}s:6:"aseral";a:0:{}s:7:"åseral";a:0:{}s:5:"asker";a:0:{}s:5:"askim";a:0:{}s:7:"askvoll";a:0:{}s:5:"askoy";a:0:{}s:6:"askøy";a:0:{}s:5:"asnes";a:0:{}s:6:"åsnes";a:0:{}s:9:"audnedaln";a:0:{}s:5:"aukra";a:0:{}s:4:"aure";a:0:{}s:7:"aurland";a:0:{}s:14:"aurskog-holand";a:0:{}s:15:"aurskog-høland";a:0:{}s:9:"austevoll";a:0:{}s:9:"austrheim";a:0:{}s:6:"averoy";a:0:{}s:7:"averøy";a:0:{}s:10:"balestrand";a:0:{}s:9:"ballangen";a:0:{}s:5:"balat";a:0:{}s:7:"bálát";a:0:{}s:9:"balsfjord";a:0:{}s:12:"bahccavuotna";a:0:{}s:13:"báhccavuotna";a:0:{}s:6:"bamble";a:0:{}s:5:"bardu";a:0:{}s:6:"beardu";a:0:{}s:6:"beiarn";a:0:{}s:7:"bajddar";a:0:{}s:8:"bájddar";a:0:{}s:6:"baidar";a:0:{}s:8:"báidár";a:0:{}s:4:"berg";a:0:{}s:6:"bergen";a:0:{}s:8:"berlevag";a:0:{}s:9:"berlevåg";a:0:{}s:11:"bearalvahki";a:0:{}s:12:"bearalváhki";a:0:{}s:6:"bindal";a:0:{}s:8:"birkenes";a:0:{}s:7:"bjarkoy";a:0:{}s:8:"bjarkøy";a:0:{}s:9:"bjerkreim";a:0:{}s:5:"bjugn";a:0:{}s:4:"bodo";a:0:{}s:5:"bodø";a:0:{}s:8:"badaddja";a:0:{}s:11:"bådåddjå";a:0:{}s:7:"budejju";a:0:{}s:4:"bokn";a:0:{}s:9:"bremanger";a:0:{}s:7:"bronnoy";a:0:{}s:9:"brønnøy";a:0:{}s:7:"bygland";a:0:{}s:5:"bykle";a:0:{}s:5:"barum";a:0:{}s:6:"bærum";a:0:{}s:8:"telemark";a:2:{s:2:"bo";a:0:{}s:3:"bø";a:0:{}}s:8:"nordland";a:4:{s:2:"bo";a:0:{}s:3:"bø";a:0:{}s:5:"heroy";a:0:{}s:6:"herøy";a:0:{}}s:6:"bievat";a:0:{}s:7:"bievát";a:0:{}s:5:"bomlo";a:0:{}s:6:"bømlo";a:0:{}s:9:"batsfjord";a:0:{}s:10:"båtsfjord";a:0:{}s:11:"bahcavuotna";a:0:{}s:12:"báhcavuotna";a:0:{}s:5:"dovre";a:0:{}s:7:"drammen";a:0:{}s:9:"drangedal";a:0:{}s:5:"dyroy";a:0:{}s:6:"dyrøy";a:0:{}s:5:"donna";a:0:{}s:6:"dønna";a:0:{}s:3:"eid";a:0:{}s:8:"eidfjord";a:0:{}s:8:"eidsberg";a:0:{}s:7:"eidskog";a:0:{}s:8:"eidsvoll";a:0:{}s:9:"eigersund";a:0:{}s:7:"elverum";a:0:{}s:7:"enebakk";a:0:{}s:8:"engerdal";a:0:{}s:4:"etne";a:0:{}s:7:"etnedal";a:0:{}s:6:"evenes";a:0:{}s:8:"evenassi";a:0:{}s:11:"evenášši";a:0:{}s:15:"evje-og-hornnes";a:0:{}s:7:"farsund";a:0:{}s:6:"fauske";a:0:{}s:7:"fuossko";a:0:{}s:7:"fuoisku";a:0:{}s:5:"fedje";a:0:{}s:3:"fet";a:0:{}s:6:"finnoy";a:0:{}s:7:"finnøy";a:0:{}s:6:"fitjar";a:0:{}s:6:"fjaler";a:0:{}s:5:"fjell";a:0:{}s:8:"flakstad";a:0:{}s:9:"flatanger";a:0:{}s:11:"flekkefjord";a:0:{}s:8:"flesberg";a:0:{}s:5:"flora";a:0:{}s:3:"fla";a:0:{}s:4:"flå";a:0:{}s:7:"folldal";a:0:{}s:7:"forsand";a:0:{}s:6:"fosnes";a:0:{}s:4:"frei";a:0:{}s:5:"frogn";a:0:{}s:7:"froland";a:0:{}s:6:"frosta";a:0:{}s:5:"frana";a:0:{}s:6:"fræna";a:0:{}s:5:"froya";a:0:{}s:6:"frøya";a:0:{}s:4:"fusa";a:0:{}s:8:"fyresdal";a:0:{}s:5:"forde";a:0:{}s:6:"førde";a:0:{}s:6:"gamvik";a:0:{}s:10:"gangaviika";a:0:{}s:12:"gáŋgaviika";a:0:{}s:6:"gaular";a:0:{}s:7:"gausdal";a:0:{}s:9:"gildeskal";a:0:{}s:10:"gildeskål";a:0:{}s:5:"giske";a:0:{}s:7:"gjemnes";a:0:{}s:8:"gjerdrum";a:0:{}s:8:"gjerstad";a:0:{}s:7:"gjesdal";a:0:{}s:6:"gjovik";a:0:{}s:7:"gjøvik";a:0:{}s:7:"gloppen";a:0:{}s:3:"gol";a:0:{}s:4:"gran";a:0:{}s:5:"grane";a:0:{}s:7:"granvin";a:0:{}s:9:"gratangen";a:0:{}s:8:"grimstad";a:0:{}s:5:"grong";a:0:{}s:9:"kraanghke";a:0:{}s:10:"kråanghke";a:0:{}s:4:"grue";a:0:{}s:5:"gulen";a:0:{}s:6:"hadsel";a:0:{}s:6:"halden";a:0:{}s:5:"halsa";a:0:{}s:5:"hamar";a:0:{}s:7:"hamaroy";a:0:{}s:6:"habmer";a:0:{}s:7:"hábmer";a:0:{}s:6:"hapmir";a:0:{}s:7:"hápmir";a:0:{}s:10:"hammerfest";a:0:{}s:12:"hammarfeasta";a:0:{}s:14:"hámmárfeasta";a:0:{}s:5:"haram";a:0:{}s:6:"hareid";a:0:{}s:7:"harstad";a:0:{}s:6:"hasvik";a:0:{}s:10:"aknoluokta";a:0:{}s:12:"ákŋoluokta";a:0:{}s:12:"hattfjelldal";a:0:{}s:8:"aarborte";a:0:{}s:9:"haugesund";a:0:{}s:5:"hemne";a:0:{}s:6:"hemnes";a:0:{}s:8:"hemsedal";a:0:{}s:15:"more-og-romsdal";a:2:{s:5:"heroy";a:0:{}s:5:"sande";a:0:{}}s:16:"møre-og-romsdal";a:2:{s:6:"herøy";a:0:{}s:5:"sande";a:0:{}}s:5:"hitra";a:0:{}s:8:"hjartdal";a:0:{}s:10:"hjelmeland";a:0:{}s:5:"hobol";a:0:{}s:6:"hobøl";a:0:{}s:3:"hof";a:0:{}s:3:"hol";a:0:{}s:4:"hole";a:0:{}s:11:"holmestrand";a:0:{}s:8:"holtalen";a:0:{}s:9:"holtålen";a:0:{}s:9:"hornindal";a:0:{}s:6:"horten";a:0:{}s:6:"hurdal";a:0:{}s:5:"hurum";a:0:{}s:6:"hvaler";a:0:{}s:9:"hyllestad";a:0:{}s:10:"hagebostad";a:0:{}s:11:"hægebostad";a:0:{}s:8:"hoyanger";a:0:{}s:9:"høyanger";a:0:{}s:9:"hoylandet";a:0:{}s:10:"høylandet";a:0:{}s:2:"ha";a:0:{}s:3:"hå";a:0:{}s:7:"ibestad";a:0:{}s:7:"inderoy";a:0:{}s:8:"inderøy";a:0:{}s:7:"iveland";a:0:{}s:8:"jevnaker";a:0:{}s:6:"jondal";a:0:{}s:7:"jolster";a:0:{}s:8:"jølster";a:0:{}s:8:"karasjok";a:0:{}s:10:"karasjohka";a:0:{}s:13:"kárášjohka";a:0:{}s:7:"karlsoy";a:0:{}s:5:"galsa";a:0:{}s:7:"gálsá";a:0:{}s:6:"karmoy";a:0:{}s:7:"karmøy";a:0:{}s:10:"kautokeino";a:0:{}s:13:"guovdageaidnu";a:0:{}s:5:"klepp";a:0:{}s:5:"klabu";a:0:{}s:6:"klæbu";a:0:{}s:9:"kongsberg";a:0:{}s:11:"kongsvinger";a:0:{}s:7:"kragero";a:0:{}s:8:"kragerø";a:0:{}s:12:"kristiansand";a:0:{}s:12:"kristiansund";a:0:{}s:10:"krodsherad";a:0:{}s:11:"krødsherad";a:0:{}s:8:"kvalsund";a:0:{}s:11:"rahkkeravju";a:0:{}s:13:"ráhkkerávju";a:0:{}s:4:"kvam";a:0:{}s:9:"kvinesdal";a:0:{}s:10:"kvinnherad";a:0:{}s:9:"kviteseid";a:0:{}s:7:"kvitsoy";a:0:{}s:8:"kvitsøy";a:0:{}s:8:"kvafjord";a:0:{}s:9:"kvæfjord";a:0:{}s:13:"giehtavuoatna";a:0:{}s:9:"kvanangen";a:0:{}s:10:"kvænangen";a:0:{}s:8:"navuotna";a:0:{}s:9:"návuotna";a:0:{}s:7:"kafjord";a:0:{}s:8:"kåfjord";a:0:{}s:9:"gaivuotna";a:0:{}s:10:"gáivuotna";a:0:{}s:6:"larvik";a:0:{}s:8:"lavangen";a:0:{}s:7:"lavagis";a:0:{}s:6:"loabat";a:0:{}s:7:"loabát";a:0:{}s:7:"lebesby";a:0:{}s:10:"davvesiida";a:0:{}s:9:"leikanger";a:0:{}s:9:"leirfjord";a:0:{}s:4:"leka";a:0:{}s:7:"leksvik";a:0:{}s:6:"lenvik";a:0:{}s:11:"leangaviika";a:0:{}s:12:"leaŋgaviika";a:0:{}s:5:"lesja";a:0:{}s:8:"levanger";a:0:{}s:4:"lier";a:0:{}s:6:"lierne";a:0:{}s:11:"lillehammer";a:0:{}s:9:"lillesand";a:0:{}s:9:"lindesnes";a:0:{}s:6:"lindas";a:0:{}s:7:"lindås";a:0:{}s:3:"lom";a:0:{}s:5:"loppa";a:0:{}s:6:"lahppi";a:0:{}s:7:"láhppi";a:0:{}s:4:"lund";a:0:{}s:6:"lunner";a:0:{}s:5:"luroy";a:0:{}s:6:"lurøy";a:0:{}s:6:"luster";a:0:{}s:7:"lyngdal";a:0:{}s:6:"lyngen";a:0:{}s:4:"ivgu";a:0:{}s:6:"lardal";a:0:{}s:6:"lerdal";a:0:{}s:7:"lærdal";a:0:{}s:8:"lodingen";a:0:{}s:9:"lødingen";a:0:{}s:9:"lorenskog";a:0:{}s:10:"lørenskog";a:0:{}s:5:"loten";a:0:{}s:6:"løten";a:0:{}s:6:"malvik";a:0:{}s:5:"masoy";a:0:{}s:7:"måsøy";a:0:{}s:6:"muosat";a:0:{}s:7:"muosát";a:0:{}s:6:"mandal";a:0:{}s:6:"marker";a:0:{}s:9:"marnardal";a:0:{}s:10:"masfjorden";a:0:{}s:6:"meland";a:0:{}s:6:"meldal";a:0:{}s:6:"melhus";a:0:{}s:5:"meloy";a:0:{}s:6:"meløy";a:0:{}s:7:"meraker";a:0:{}s:8:"meråker";a:0:{}s:7:"moareke";a:0:{}s:8:"moåreke";a:0:{}s:7:"midsund";a:0:{}s:14:"midtre-gauldal";a:0:{}s:7:"modalen";a:0:{}s:5:"modum";a:0:{}s:5:"molde";a:0:{}s:8:"moskenes";a:0:{}s:4:"moss";a:0:{}s:6:"mosvik";a:0:{}s:7:"malselv";a:0:{}s:8:"målselv";a:0:{}s:11:"malatvuopmi";a:0:{}s:12:"málatvuopmi";a:0:{}s:10:"namdalseid";a:0:{}s:6:"aejrie";a:0:{}s:6:"namsos";a:0:{}s:10:"namsskogan";a:0:{}s:14:"naamesjevuemie";a:0:{}s:16:"nååmesjevuemie";a:0:{}s:12:"laakesvuemie";a:0:{}s:9:"nannestad";a:0:{}s:6:"narvik";a:0:{}s:8:"narviika";a:0:{}s:8:"naustdal";a:0:{}s:11:"nedre-eiker";a:0:{}s:8:"akershus";a:1:{s:3:"nes";a:0:{}}s:8:"buskerud";a:1:{s:3:"nes";a:0:{}}s:5:"nesna";a:0:{}s:8:"nesodden";a:0:{}s:7:"nesseby";a:0:{}s:7:"unjarga";a:0:{}s:8:"unjárga";a:0:{}s:6:"nesset";a:0:{}s:8:"nissedal";a:0:{}s:8:"nittedal";a:0:{}s:11:"nord-aurdal";a:0:{}s:9:"nord-fron";a:0:{}s:9:"nord-odal";a:0:{}s:7:"norddal";a:0:{}s:8:"nordkapp";a:0:{}s:11:"davvenjarga";a:0:{}s:12:"davvenjárga";a:0:{}s:11:"nordre-land";a:0:{}s:9:"nordreisa";a:0:{}s:5:"raisa";a:0:{}s:6:"ráisa";a:0:{}s:13:"nore-og-uvdal";a:0:{}s:8:"notodden";a:0:{}s:5:"naroy";a:0:{}s:7:"nærøy";a:0:{}s:8:"notteroy";a:0:{}s:10:"nøtterøy";a:0:{}s:4:"odda";a:0:{}s:6:"oksnes";a:0:{}s:7:"øksnes";a:0:{}s:6:"oppdal";a:0:{}s:8:"oppegard";a:0:{}s:9:"oppegård";a:0:{}s:6:"orkdal";a:0:{}s:6:"orland";a:0:{}s:7:"ørland";a:0:{}s:6:"orskog";a:0:{}s:7:"ørskog";a:0:{}s:5:"orsta";a:0:{}s:6:"ørsta";a:0:{}s:7:"hedmark";a:3:{s:2:"os";a:0:{}s:5:"valer";a:0:{}s:6:"våler";a:0:{}}s:9:"hordaland";a:1:{s:2:"os";a:0:{}}s:4:"osen";a:0:{}s:7:"osteroy";a:0:{}s:8:"osterøy";a:0:{}s:11:"ostre-toten";a:0:{}s:12:"østre-toten";a:0:{}s:9:"overhalla";a:0:{}s:10:"ovre-eiker";a:0:{}s:11:"øvre-eiker";a:0:{}s:4:"oyer";a:0:{}s:5:"øyer";a:0:{}s:8:"oygarden";a:0:{}s:9:"øygarden";a:0:{}s:13:"oystre-slidre";a:0:{}s:14:"øystre-slidre";a:0:{}s:9:"porsanger";a:0:{}s:8:"porsangu";a:0:{}s:10:"porsáŋgu";a:0:{}s:9:"porsgrunn";a:0:{}s:5:"radoy";a:0:{}s:6:"radøy";a:0:{}s:9:"rakkestad";a:0:{}s:4:"rana";a:0:{}s:6:"ruovat";a:0:{}s:9:"randaberg";a:0:{}s:5:"rauma";a:0:{}s:8:"rendalen";a:0:{}s:7:"rennebu";a:0:{}s:8:"rennesoy";a:0:{}s:9:"rennesøy";a:0:{}s:6:"rindal";a:0:{}s:7:"ringebu";a:0:{}s:9:"ringerike";a:0:{}s:9:"ringsaker";a:0:{}s:5:"rissa";a:0:{}s:5:"risor";a:0:{}s:6:"risør";a:0:{}s:4:"roan";a:0:{}s:6:"rollag";a:0:{}s:5:"rygge";a:0:{}s:8:"ralingen";a:0:{}s:9:"rælingen";a:0:{}s:5:"rodoy";a:0:{}s:7:"rødøy";a:0:{}s:7:"romskog";a:0:{}s:8:"rømskog";a:0:{}s:5:"roros";a:0:{}s:6:"røros";a:0:{}s:4:"rost";a:0:{}s:5:"røst";a:0:{}s:6:"royken";a:0:{}s:7:"røyken";a:0:{}s:7:"royrvik";a:0:{}s:8:"røyrvik";a:0:{}s:4:"rade";a:0:{}s:5:"råde";a:0:{}s:8:"salangen";a:0:{}s:7:"siellak";a:0:{}s:7:"saltdal";a:0:{}s:5:"salat";a:0:{}s:7:"sálát";a:0:{}s:6:"sálat";a:0:{}s:9:"samnanger";a:0:{}s:8:"vestfold";a:1:{s:5:"sande";a:0:{}}s:10:"sandefjord";a:0:{}s:7:"sandnes";a:0:{}s:6:"sandoy";a:0:{}s:7:"sandøy";a:0:{}s:9:"sarpsborg";a:0:{}s:5:"sauda";a:0:{}s:8:"sauherad";a:0:{}s:3:"sel";a:0:{}s:5:"selbu";a:0:{}s:5:"selje";a:0:{}s:7:"seljord";a:0:{}s:6:"sigdal";a:0:{}s:6:"siljan";a:0:{}s:6:"sirdal";a:0:{}s:5:"skaun";a:0:{}s:7:"skedsmo";a:0:{}s:3:"ski";a:0:{}s:5:"skien";a:0:{}s:8:"skiptvet";a:0:{}s:8:"skjervoy";a:0:{}s:9:"skjervøy";a:0:{}s:7:"skierva";a:0:{}s:8:"skiervá";a:0:{}s:5:"skjak";a:0:{}s:6:"skjåk";a:0:{}s:6:"skodje";a:0:{}s:8:"skanland";a:0:{}s:9:"skånland";a:0:{}s:6:"skanit";a:0:{}s:7:"skánit";a:0:{}s:5:"smola";a:0:{}s:6:"smøla";a:0:{}s:10:"snillfjord";a:0:{}s:5:"snasa";a:0:{}s:6:"snåsa";a:0:{}s:6:"snoasa";a:0:{}s:6:"snaase";a:0:{}s:7:"snåase";a:0:{}s:7:"sogndal";a:0:{}s:7:"sokndal";a:0:{}s:4:"sola";a:0:{}s:6:"solund";a:0:{}s:9:"songdalen";a:0:{}s:8:"sortland";a:0:{}s:9:"spydeberg";a:0:{}s:6:"stange";a:0:{}s:9:"stavanger";a:0:{}s:7:"steigen";a:0:{}s:9:"steinkjer";a:0:{}s:8:"stjordal";a:0:{}s:9:"stjørdal";a:0:{}s:6:"stokke";a:0:{}s:11:"stor-elvdal";a:0:{}s:5:"stord";a:0:{}s:7:"stordal";a:0:{}s:9:"storfjord";a:0:{}s:10:"omasvuotna";a:0:{}s:6:"strand";a:0:{}s:7:"stranda";a:0:{}s:5:"stryn";a:0:{}s:4:"sula";a:0:{}s:6:"suldal";a:0:{}s:4:"sund";a:0:{}s:7:"sunndal";a:0:{}s:8:"surnadal";a:0:{}s:5:"sveio";a:0:{}s:7:"svelvik";a:0:{}s:9:"sykkylven";a:0:{}s:5:"sogne";a:0:{}s:6:"søgne";a:0:{}s:5:"somna";a:0:{}s:6:"sømna";a:0:{}s:11:"sondre-land";a:0:{}s:12:"søndre-land";a:0:{}s:10:"sor-aurdal";a:0:{}s:11:"sør-aurdal";a:0:{}s:8:"sor-fron";a:0:{}s:9:"sør-fron";a:0:{}s:8:"sor-odal";a:0:{}s:9:"sør-odal";a:0:{}s:12:"sor-varanger";a:0:{}s:13:"sør-varanger";a:0:{}s:13:"matta-varjjat";a:0:{}s:15:"mátta-várjjat";a:0:{}s:7:"sorfold";a:0:{}s:8:"sørfold";a:0:{}s:8:"sorreisa";a:0:{}s:9:"sørreisa";a:0:{}s:5:"sorum";a:0:{}s:6:"sørum";a:0:{}s:4:"tana";a:0:{}s:6:"deatnu";a:0:{}s:4:"time";a:0:{}s:8:"tingvoll";a:0:{}s:4:"tinn";a:0:{}s:9:"tjeldsund";a:0:{}s:13:"dielddanuorri";a:0:{}s:5:"tjome";a:0:{}s:6:"tjøme";a:0:{}s:5:"tokke";a:0:{}s:5:"tolga";a:0:{}s:7:"torsken";a:0:{}s:6:"tranoy";a:0:{}s:7:"tranøy";a:0:{}s:6:"tromso";a:0:{}s:7:"tromsø";a:0:{}s:6:"tromsa";a:0:{}s:5:"romsa";a:0:{}s:9:"trondheim";a:0:{}s:8:"troandin";a:0:{}s:6:"trysil";a:0:{}s:5:"trana";a:0:{}s:6:"træna";a:0:{}s:8:"trogstad";a:0:{}s:9:"trøgstad";a:0:{}s:11:"tvedestrand";a:0:{}s:5:"tydal";a:0:{}s:6:"tynset";a:0:{}s:8:"tysfjord";a:0:{}s:12:"divtasvuodna";a:0:{}s:13:"divttasvuotna";a:0:{}s:6:"tysnes";a:0:{}s:6:"tysvar";a:0:{}s:7:"tysvær";a:0:{}s:8:"tonsberg";a:0:{}s:9:"tønsberg";a:0:{}s:10:"ullensaker";a:0:{}s:10:"ullensvang";a:0:{}s:5:"ulvik";a:0:{}s:6:"utsira";a:0:{}s:5:"vadso";a:0:{}s:6:"vadsø";a:0:{}s:10:"cahcesuolo";a:0:{}s:12:"čáhcesuolo";a:0:{}s:7:"vaksdal";a:0:{}s:5:"valle";a:0:{}s:4:"vang";a:0:{}s:8:"vanylven";a:0:{}s:5:"vardo";a:0:{}s:6:"vardø";a:0:{}s:7:"varggat";a:0:{}s:9:"várggát";a:0:{}s:5:"vefsn";a:0:{}s:7:"vaapste";a:0:{}s:4:"vega";a:0:{}s:9:"vegarshei";a:0:{}s:10:"vegårshei";a:0:{}s:8:"vennesla";a:0:{}s:6:"verdal";a:0:{}s:6:"verran";a:0:{}s:6:"vestby";a:0:{}s:7:"vestnes";a:0:{}s:13:"vestre-slidre";a:0:{}s:12:"vestre-toten";a:0:{}s:9:"vestvagoy";a:0:{}s:11:"vestvågøy";a:0:{}s:9:"vevelstad";a:0:{}s:3:"vik";a:0:{}s:5:"vikna";a:0:{}s:10:"vindafjord";a:0:{}s:5:"volda";a:0:{}s:4:"voss";a:0:{}s:5:"varoy";a:0:{}s:7:"værøy";a:0:{}s:5:"vagan";a:0:{}s:6:"vågan";a:0:{}s:6:"voagat";a:0:{}s:6:"vagsoy";a:0:{}s:8:"vågsøy";a:0:{}s:4:"vaga";a:0:{}s:6:"vågå";a:0:{}s:7:"ostfold";a:1:{s:5:"valer";a:0:{}}s:8:"østfold";a:1:{s:6:"våler";a:0:{}}s:2:"co";a:0:{}s:8:"blogspot";a:0:{}s:13:"123hjemmeside";a:0:{}s:12:"myspreadshop";a:0:{}}s:2:"np";a:1:{s:1:"*";a:0:{}}s:2:"nr";a:7:{s:3:"biz";a:0:{}s:4:"info";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"com";a:0:{}}s:2:"nu";a:4:{s:8:"merseine";a:0:{}s:4:"mine";a:0:{}s:8:"shacknet";a:0:{}s:15:"enterprisecloud";a:0:{}}s:2:"nz";a:17:{s:2:"ac";a:0:{}s:2:"co";a:1:{s:8:"blogspot";a:0:{}}s:3:"cri";a:0:{}s:4:"geek";a:0:{}s:3:"gen";a:0:{}s:4:"govt";a:0:{}s:6:"health";a:0:{}s:3:"iwi";a:0:{}s:4:"kiwi";a:0:{}s:5:"maori";a:0:{}s:3:"mil";a:0:{}s:6:"māori";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:10:"parliament";a:0:{}s:6:"school";a:0:{}s:7:"cloudns";a:0:{}}s:2:"om";a:9:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"med";a:0:{}s:6:"museum";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"pro";a:0:{}}s:5:"onion";a:0:{}s:3:"org";a:116:{s:10:"altervista";a:0:{}s:5:"amune";a:1:{s:4:"tele";a:0:{}}s:8:"pimienta";a:0:{}s:7:"poivron";a:0:{}s:7:"potager";a:0:{}s:11:"sweetpepper";a:0:{}s:2:"ae";a:0:{}s:2:"us";a:0:{}s:7:"certmgr";a:0:{}s:5:"cdn77";a:2:{s:1:"c";a:0:{}s:3:"rsc";a:0:{}}s:12:"cdn77-secure";a:1:{s:6:"origin";a:1:{s:3:"ssl";a:0:{}}}s:7:"cloudns";a:0:{}s:7:"duckdns";a:0:{}s:4:"tunk";a:0:{}s:7:"blogdns";a:0:{}s:8:"blogsite";a:0:{}s:18:"boldlygoingnowhere";a:0:{}s:8:"dnsalias";a:0:{}s:7:"dnsdojo";a:0:{}s:11:"doesntexist";a:0:{}s:9:"dontexist";a:0:{}s:7:"doomdns";a:0:{}s:6:"dvrdns";a:0:{}s:8:"dynalias";a:0:{}s:6:"dyndns";a:2:{s:2:"go";a:0:{}s:4:"home";a:0:{}}s:13:"endofinternet";a:0:{}s:16:"endoftheinternet";a:0:{}s:7:"from-me";a:0:{}s:9:"game-host";a:0:{}s:6:"gotdns";a:0:{}s:10:"hobby-site";a:0:{}s:7:"homedns";a:0:{}s:7:"homeftp";a:0:{}s:9:"homelinux";a:0:{}s:8:"homeunix";a:0:{}s:14:"is-a-bruinsfan";a:0:{}s:14:"is-a-candidate";a:0:{}s:15:"is-a-celticsfan";a:0:{}s:9:"is-a-chef";a:0:{}s:9:"is-a-geek";a:0:{}s:11:"is-a-knight";a:0:{}s:15:"is-a-linux-user";a:0:{}s:12:"is-a-patsfan";a:0:{}s:11:"is-a-soxfan";a:0:{}s:8:"is-found";a:0:{}s:7:"is-lost";a:0:{}s:8:"is-saved";a:0:{}s:11:"is-very-bad";a:0:{}s:12:"is-very-evil";a:0:{}s:12:"is-very-good";a:0:{}s:12:"is-very-nice";a:0:{}s:13:"is-very-sweet";a:0:{}s:8:"isa-geek";a:0:{}s:9:"kicks-ass";a:0:{}s:11:"misconfused";a:0:{}s:7:"podzone";a:0:{}s:10:"readmyblog";a:0:{}s:6:"selfip";a:0:{}s:13:"sellsyourhome";a:0:{}s:8:"servebbs";a:0:{}s:8:"serveftp";a:0:{}s:9:"servegame";a:0:{}s:12:"stuff-4-sale";a:0:{}s:6:"webhop";a:0:{}s:5:"ddnss";a:0:{}s:9:"accesscam";a:0:{}s:6:"camdvr";a:0:{}s:8:"freeddns";a:0:{}s:6:"mywire";a:0:{}s:11:"webredirect";a:0:{}s:6:"twmail";a:0:{}s:2:"eu";a:55:{s:2:"al";a:0:{}s:4:"asso";a:0:{}s:2:"at";a:0:{}s:2:"au";a:0:{}s:2:"be";a:0:{}s:2:"bg";a:0:{}s:2:"ca";a:0:{}s:2:"cd";a:0:{}s:2:"ch";a:0:{}s:2:"cn";a:0:{}s:2:"cy";a:0:{}s:2:"cz";a:0:{}s:2:"de";a:0:{}s:2:"dk";a:0:{}s:3:"edu";a:0:{}s:2:"ee";a:0:{}s:2:"es";a:0:{}s:2:"fi";a:0:{}s:2:"fr";a:0:{}s:2:"gr";a:0:{}s:2:"hr";a:0:{}s:2:"hu";a:0:{}s:2:"ie";a:0:{}s:2:"il";a:0:{}s:2:"in";a:0:{}s:3:"int";a:0:{}s:2:"is";a:0:{}s:2:"it";a:0:{}s:2:"jp";a:0:{}s:2:"kr";a:0:{}s:2:"lt";a:0:{}s:2:"lu";a:0:{}s:2:"lv";a:0:{}s:2:"mc";a:0:{}s:2:"me";a:0:{}s:2:"mk";a:0:{}s:2:"mt";a:0:{}s:2:"my";a:0:{}s:3:"net";a:0:{}s:2:"ng";a:0:{}s:2:"nl";a:0:{}s:2:"no";a:0:{}s:2:"nz";a:0:{}s:5:"paris";a:0:{}s:2:"pl";a:0:{}s:2:"pt";a:0:{}s:3:"q-a";a:0:{}s:2:"ro";a:0:{}s:2:"ru";a:0:{}s:2:"se";a:0:{}s:2:"si";a:0:{}s:2:"sk";a:0:{}s:2:"tr";a:0:{}s:2:"uk";a:0:{}s:2:"us";a:0:{}}s:16:"fedorainfracloud";a:0:{}s:12:"fedorapeople";a:0:{}s:13:"fedoraproject";a:3:{s:5:"cloud";a:0:{}s:2:"os";a:1:{s:3:"app";a:0:{}}s:3:"stg";a:1:{s:2:"os";a:1:{s:3:"app";a:0:{}}}}s:11:"freedesktop";a:0:{}s:8:"hepforge";a:0:{}s:6:"in-dsl";a:0:{}s:6:"in-vpn";a:0:{}s:2:"js";a:0:{}s:5:"barsy";a:0:{}s:8:"mayfirst";a:0:{}s:11:"mozilla-iot";a:0:{}s:14:"bmoattachments";a:0:{}s:7:"dynserv";a:0:{}s:7:"now-dns";a:0:{}s:11:"cable-modem";a:0:{}s:10:"collegefan";a:0:{}s:16:"couchpotatofries";a:0:{}s:5:"hopto";a:0:{}s:6:"mlbfan";a:0:{}s:5:"myftp";a:0:{}s:16:"mysecuritycamera";a:0:{}s:6:"nflfan";a:0:{}s:5:"no-ip";a:0:{}s:10:"read-books";a:0:{}s:6:"ufcfan";a:0:{}s:5:"zapto";a:0:{}s:8:"is-local";a:0:{}s:7:"httpbin";a:0:{}s:6:"pubtls";a:0:{}s:3:"jpn";a:0:{}s:11:"my-firewall";a:0:{}s:10:"myfirewall";a:0:{}s:5:"spdns";a:0:{}s:9:"small-web";a:0:{}s:7:"dsmynas";a:0:{}s:8:"familyds";a:0:{}s:7:"teckids";a:1:{s:2:"s3";a:0:{}}s:9:"tuxfamily";a:0:{}s:11:"diskstation";a:0:{}s:2:"hk";a:0:{}s:9:"toolforge";a:0:{}s:7:"wmcloud";a:0:{}s:7:"wmflabs";a:0:{}s:2:"za";a:0:{}}s:2:"pa";a:11:{s:2:"ac";a:0:{}s:3:"gob";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"sld";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"ing";a:0:{}s:3:"abo";a:0:{}s:3:"med";a:0:{}s:3:"nom";a:0:{}}s:2:"pe";a:8:{s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"nom";a:0:{}s:3:"mil";a:0:{}s:3:"org";a:0:{}s:3:"com";a:0:{}s:3:"net";a:0:{}s:8:"blogspot";a:0:{}}s:2:"pf";a:3:{s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}}s:2:"pg";a:1:{s:1:"*";a:0:{}}s:2:"ph";a:9:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"ngo";a:0:{}s:3:"mil";a:0:{}s:1:"i";a:0:{}s:7:"cloudns";a:0:{}}s:2:"pk";a:14:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"edu";a:0:{}s:3:"org";a:0:{}s:3:"fam";a:0:{}s:3:"biz";a:0:{}s:3:"web";a:0:{}s:3:"gov";a:0:{}s:3:"gob";a:0:{}s:3:"gok";a:0:{}s:3:"gon";a:0:{}s:3:"gop";a:0:{}s:3:"gos";a:0:{}s:4:"info";a:0:{}}s:2:"pl";a:181:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"aid";a:0:{}s:4:"agro";a:0:{}s:3:"atm";a:0:{}s:4:"auto";a:0:{}s:3:"biz";a:0:{}s:3:"edu";a:0:{}s:5:"gmina";a:0:{}s:3:"gsm";a:0:{}s:4:"info";a:0:{}s:4:"mail";a:0:{}s:6:"miasta";a:0:{}s:5:"media";a:0:{}s:3:"mil";a:0:{}s:13:"nieruchomosci";a:0:{}s:3:"nom";a:0:{}s:2:"pc";a:0:{}s:6:"powiat";a:0:{}s:4:"priv";a:0:{}s:10:"realestate";a:0:{}s:3:"rel";a:0:{}s:3:"sex";a:0:{}s:4:"shop";a:0:{}s:5:"sklep";a:0:{}s:3:"sos";a:0:{}s:6:"szkola";a:0:{}s:5:"targi";a:0:{}s:2:"tm";a:0:{}s:7:"tourism";a:0:{}s:6:"travel";a:0:{}s:9:"turystyka";a:0:{}s:3:"gov";a:55:{s:2:"ap";a:0:{}s:4:"griw";a:0:{}s:2:"ic";a:0:{}s:2:"is";a:0:{}s:5:"kmpsp";a:0:{}s:8:"konsulat";a:0:{}s:5:"kppsp";a:0:{}s:3:"kwp";a:0:{}s:5:"kwpsp";a:0:{}s:3:"mup";a:0:{}s:2:"mw";a:0:{}s:3:"oia";a:0:{}s:4:"oirm";a:0:{}s:3:"oke";a:0:{}s:3:"oow";a:0:{}s:5:"oschr";a:0:{}s:3:"oum";a:0:{}s:2:"pa";a:0:{}s:4:"pinb";a:0:{}s:3:"piw";a:0:{}s:2:"po";a:0:{}s:2:"pr";a:0:{}s:3:"psp";a:0:{}s:4:"psse";a:0:{}s:3:"pup";a:0:{}s:4:"rzgw";a:0:{}s:2:"sa";a:0:{}s:3:"sdn";a:0:{}s:3:"sko";a:0:{}s:2:"so";a:0:{}s:2:"sr";a:0:{}s:9:"starostwo";a:0:{}s:2:"ug";a:0:{}s:4:"ugim";a:0:{}s:2:"um";a:0:{}s:4:"umig";a:0:{}s:4:"upow";a:0:{}s:4:"uppo";a:0:{}s:2:"us";a:0:{}s:2:"uw";a:0:{}s:3:"uzs";a:0:{}s:3:"wif";a:0:{}s:4:"wiih";a:0:{}s:4:"winb";a:0:{}s:4:"wios";a:0:{}s:4:"witd";a:0:{}s:3:"wiw";a:0:{}s:3:"wkz";a:0:{}s:3:"wsa";a:0:{}s:4:"wskr";a:0:{}s:4:"wsse";a:0:{}s:4:"wuoz";a:0:{}s:6:"wzmiuw";a:0:{}s:2:"zp";a:0:{}s:6:"zpisdn";a:0:{}}s:8:"augustow";a:0:{}s:10:"babia-gora";a:0:{}s:6:"bedzin";a:0:{}s:7:"beskidy";a:0:{}s:10:"bialowieza";a:0:{}s:9:"bialystok";a:0:{}s:7:"bielawa";a:0:{}s:10:"bieszczady";a:0:{}s:11:"boleslawiec";a:0:{}s:9:"bydgoszcz";a:0:{}s:5:"bytom";a:0:{}s:7:"cieszyn";a:0:{}s:7:"czeladz";a:0:{}s:5:"czest";a:0:{}s:9:"dlugoleka";a:0:{}s:6:"elblag";a:0:{}s:3:"elk";a:0:{}s:6:"glogow";a:0:{}s:7:"gniezno";a:0:{}s:7:"gorlice";a:0:{}s:7:"grajewo";a:0:{}s:5:"ilawa";a:0:{}s:8:"jaworzno";a:0:{}s:12:"jelenia-gora";a:0:{}s:5:"jgora";a:0:{}s:6:"kalisz";a:0:{}s:15:"kazimierz-dolny";a:0:{}s:7:"karpacz";a:0:{}s:7:"kartuzy";a:0:{}s:7:"kaszuby";a:0:{}s:8:"katowice";a:0:{}s:5:"kepno";a:0:{}s:7:"ketrzyn";a:0:{}s:7:"klodzko";a:0:{}s:10:"kobierzyce";a:0:{}s:9:"kolobrzeg";a:0:{}s:5:"konin";a:0:{}s:10:"konskowola";a:0:{}s:5:"kutno";a:0:{}s:4:"lapy";a:0:{}s:6:"lebork";a:0:{}s:7:"legnica";a:0:{}s:7:"lezajsk";a:0:{}s:8:"limanowa";a:0:{}s:5:"lomza";a:0:{}s:6:"lowicz";a:0:{}s:5:"lubin";a:0:{}s:5:"lukow";a:0:{}s:7:"malbork";a:0:{}s:10:"malopolska";a:0:{}s:8:"mazowsze";a:0:{}s:6:"mazury";a:0:{}s:6:"mielec";a:0:{}s:6:"mielno";a:0:{}s:7:"mragowo";a:0:{}s:5:"naklo";a:0:{}s:8:"nowaruda";a:0:{}s:4:"nysa";a:0:{}s:5:"olawa";a:0:{}s:6:"olecko";a:0:{}s:6:"olkusz";a:0:{}s:7:"olsztyn";a:0:{}s:7:"opoczno";a:0:{}s:5:"opole";a:0:{}s:7:"ostroda";a:0:{}s:9:"ostroleka";a:0:{}s:9:"ostrowiec";a:0:{}s:10:"ostrowwlkp";a:0:{}s:4:"pila";a:0:{}s:4:"pisz";a:0:{}s:7:"podhale";a:0:{}s:8:"podlasie";a:0:{}s:9:"polkowice";a:0:{}s:7:"pomorze";a:0:{}s:9:"pomorskie";a:0:{}s:10:"prochowice";a:0:{}s:8:"pruszkow";a:0:{}s:9:"przeworsk";a:0:{}s:6:"pulawy";a:0:{}s:5:"radom";a:0:{}s:8:"rawa-maz";a:0:{}s:6:"rybnik";a:0:{}s:7:"rzeszow";a:0:{}s:5:"sanok";a:0:{}s:5:"sejny";a:0:{}s:5:"slask";a:0:{}s:6:"slupsk";a:0:{}s:9:"sosnowiec";a:0:{}s:12:"stalowa-wola";a:0:{}s:7:"skoczow";a:0:{}s:12:"starachowice";a:0:{}s:8:"stargard";a:0:{}s:7:"suwalki";a:0:{}s:8:"swidnica";a:0:{}s:10:"swiebodzin";a:0:{}s:11:"swinoujscie";a:0:{}s:8:"szczecin";a:0:{}s:8:"szczytno";a:0:{}s:10:"tarnobrzeg";a:0:{}s:5:"tgory";a:0:{}s:5:"turek";a:0:{}s:5:"tychy";a:0:{}s:5:"ustka";a:0:{}s:9:"walbrzych";a:0:{}s:6:"warmia";a:0:{}s:8:"warszawa";a:0:{}s:3:"waw";a:0:{}s:6:"wegrow";a:0:{}s:6:"wielun";a:0:{}s:5:"wlocl";a:0:{}s:9:"wloclawek";a:0:{}s:9:"wodzislaw";a:0:{}s:7:"wolomin";a:0:{}s:7:"wroclaw";a:0:{}s:9:"zachpomor";a:0:{}s:5:"zagan";a:0:{}s:5:"zarow";a:0:{}s:5:"zgora";a:0:{}s:9:"zgorzelec";a:0:{}s:4:"beep";a:0:{}s:14:"ecommerce-shop";a:0:{}s:7:"bielsko";a:0:{}s:9:"shoparena";a:0:{}s:9:"homesklep";a:0:{}s:8:"sdscloud";a:0:{}s:8:"unicloud";a:0:{}s:7:"krasnik";a:0:{}s:6:"leczna";a:0:{}s:8:"lubartow";a:0:{}s:6:"lublin";a:0:{}s:9:"poniatowa";a:0:{}s:7:"swidnik";a:0:{}s:2:"co";a:0:{}s:5:"torun";a:0:{}s:10:"simplesite";a:0:{}s:3:"art";a:0:{}s:7:"gliwice";a:0:{}s:6:"krakow";a:0:{}s:6:"poznan";a:0:{}s:4:"wroc";a:0:{}s:8:"zakopane";a:0:{}s:12:"myspreadshop";a:0:{}s:3:"gda";a:0:{}s:6:"gdansk";a:0:{}s:6:"gdynia";a:0:{}s:3:"med";a:0:{}s:5:"sopot";a:0:{}}s:2:"pm";a:2:{s:3:"own";a:0:{}s:4:"name";a:0:{}}s:2:"pn";a:5:{s:3:"gov";a:0:{}s:2:"co";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}}s:4:"post";a:0:{}s:2:"pr";a:13:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:4:"isla";a:0:{}s:3:"pro";a:0:{}s:3:"biz";a:0:{}s:4:"info";a:0:{}s:4:"name";a:0:{}s:3:"est";a:0:{}s:4:"prof";a:0:{}s:2:"ac";a:0:{}}s:3:"pro";a:16:{s:3:"aaa";a:0:{}s:3:"aca";a:0:{}s:4:"acct";a:0:{}s:6:"avocat";a:0:{}s:3:"bar";a:0:{}s:3:"cpa";a:0:{}s:3:"eng";a:0:{}s:3:"jur";a:0:{}s:3:"law";a:0:{}s:3:"med";a:0:{}s:5:"recht";a:0:{}s:7:"12chars";a:0:{}s:7:"cloudns";a:0:{}s:8:"dnstrace";a:1:{s:3:"bci";a:0:{}}s:5:"barsy";a:0:{}s:5:"ngrok";a:0:{}}s:2:"ps";a:7:{s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"sec";a:0:{}s:3:"plo";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}}s:2:"pt";a:10:{s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"int";a:0:{}s:4:"publ";a:0:{}s:3:"com";a:0:{}s:4:"nome";a:0:{}s:8:"blogspot";a:0:{}s:12:"123paginaweb";a:0:{}}s:2:"pw";a:8:{s:2:"co";a:0:{}s:2:"ne";a:0:{}s:2:"or";a:0:{}s:2:"ed";a:0:{}s:2:"go";a:0:{}s:5:"belau";a:0:{}s:7:"cloudns";a:0:{}s:4:"x443";a:0:{}}s:2:"py";a:7:{s:3:"com";a:0:{}s:4:"coop";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"qa";a:9:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}s:8:"blogspot";a:0:{}}s:2:"re";a:5:{s:4:"asso";a:0:{}s:3:"com";a:0:{}s:3:"nom";a:0:{}s:8:"blogspot";a:0:{}s:3:"can";a:0:{}}s:2:"ro";a:15:{s:4:"arts";a:0:{}s:3:"com";a:0:{}s:4:"firm";a:0:{}s:4:"info";a:0:{}s:3:"nom";a:0:{}s:2:"nt";a:0:{}s:3:"org";a:0:{}s:3:"rec";a:0:{}s:5:"store";a:0:{}s:2:"tm";a:0:{}s:3:"www";a:0:{}s:2:"co";a:0:{}s:4:"shop";a:0:{}s:8:"blogspot";a:0:{}s:5:"barsy";a:0:{}}s:2:"rs";a:11:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"in";a:0:{}s:3:"org";a:0:{}s:7:"brendly";a:1:{s:4:"shop";a:0:{}}s:8:"blogspot";a:0:{}s:2:"ua";a:0:{}s:5:"barsy";a:0:{}s:2:"ox";a:0:{}}s:2:"ru";a:39:{s:2:"ac";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:4:"test";a:0:{}s:7:"eurodir";a:0:{}s:7:"adygeya";a:0:{}s:9:"bashkiria";a:0:{}s:3:"bir";a:0:{}s:3:"cbg";a:0:{}s:3:"com";a:0:{}s:8:"dagestan";a:0:{}s:6:"grozny";a:0:{}s:8:"kalmykia";a:0:{}s:8:"kustanai";a:0:{}s:6:"marine";a:0:{}s:8:"mordovia";a:0:{}s:3:"msk";a:0:{}s:5:"mytis";a:0:{}s:7:"nalchik";a:0:{}s:3:"nov";a:0:{}s:10:"pyatigorsk";a:0:{}s:3:"spb";a:0:{}s:11:"vladikavkaz";a:0:{}s:8:"vladimir";a:0:{}s:8:"blogspot";a:0:{}s:4:"na4u";a:0:{}s:8:"mircloud";a:0:{}s:12:"regruhosting";a:1:{s:8:"jelastic";a:0:{}}s:6:"myjino";a:4:{s:7:"hosting";a:1:{s:1:"*";a:0:{}}s:7:"landing";a:1:{s:1:"*";a:0:{}}s:8:"spectrum";a:1:{s:1:"*";a:0:{}}s:3:"vps";a:1:{s:1:"*";a:0:{}}}s:7:"cldmail";a:1:{s:2:"hb";a:0:{}}s:5:"mcdir";a:1:{s:3:"vps";a:0:{}}s:5:"mcpre";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:2:"pp";a:0:{}s:3:"lk3";a:0:{}s:3:"ras";a:0:{}}s:2:"rw";a:7:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:4:"coop";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"sa";a:8:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"med";a:0:{}s:3:"pub";a:0:{}s:3:"edu";a:0:{}s:3:"sch";a:0:{}}s:2:"sb";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"sc";a:5:{s:3:"com";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}}s:2:"sd";a:8:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"med";a:0:{}s:2:"tv";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}}s:2:"se";a:47:{s:1:"a";a:0:{}s:2:"ac";a:0:{}s:1:"b";a:0:{}s:2:"bd";a:0:{}s:5:"brand";a:0:{}s:1:"c";a:0:{}s:1:"d";a:0:{}s:1:"e";a:0:{}s:1:"f";a:0:{}s:2:"fh";a:0:{}s:4:"fhsk";a:0:{}s:3:"fhv";a:0:{}s:1:"g";a:0:{}s:1:"h";a:0:{}s:1:"i";a:0:{}s:1:"k";a:0:{}s:7:"komforb";a:0:{}s:15:"kommunalforbund";a:0:{}s:6:"komvux";a:0:{}s:1:"l";a:0:{}s:6:"lanbib";a:0:{}s:1:"m";a:0:{}s:1:"n";a:0:{}s:14:"naturbruksgymn";a:0:{}s:1:"o";a:0:{}s:3:"org";a:0:{}s:1:"p";a:0:{}s:5:"parti";a:0:{}s:2:"pp";a:0:{}s:5:"press";a:0:{}s:1:"r";a:0:{}s:1:"s";a:0:{}s:1:"t";a:0:{}s:2:"tm";a:0:{}s:1:"u";a:0:{}s:1:"w";a:0:{}s:1:"x";a:0:{}s:1:"y";a:0:{}s:1:"z";a:0:{}s:3:"com";a:0:{}s:8:"blogspot";a:0:{}s:4:"conf";a:0:{}s:6:"iopsys";a:0:{}s:10:"123minsida";a:0:{}s:12:"itcouldbewor";a:0:{}s:12:"myspreadshop";a:0:{}s:4:"paba";a:1:{s:2:"su";a:0:{}}}s:2:"sg";a:8:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:3:"per";a:0:{}s:8:"blogspot";a:0:{}s:8:"enscaled";a:0:{}}s:2:"sh";a:10:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}s:3:"mil";a:0:{}s:3:"bip";a:0:{}s:8:"hashbang";a:0:{}s:8:"platform";a:3:{s:3:"ent";a:0:{}s:2:"eu";a:0:{}s:2:"us";a:0:{}}s:3:"now";a:0:{}s:8:"wedeploy";a:0:{}}s:2:"si";a:4:{s:2:"f5";a:0:{}s:6:"gitapp";a:0:{}s:7:"gitpage";a:0:{}s:8:"blogspot";a:0:{}}s:2:"sj";a:0:{}s:2:"sk";a:1:{s:8:"blogspot";a:0:{}}s:2:"sl";a:5:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"org";a:0:{}}s:2:"sm";a:0:{}s:2:"sn";a:8:{s:3:"art";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:4:"gouv";a:0:{}s:3:"org";a:0:{}s:5:"perso";a:0:{}s:4:"univ";a:0:{}s:8:"blogspot";a:0:{}}s:2:"so";a:8:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"me";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}s:7:"surveys";a:0:{}}s:2:"sr";a:0:{}s:2:"ss";a:8:{s:3:"biz";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"me";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}}s:2:"st";a:14:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:9:"consulado";a:0:{}s:3:"edu";a:0:{}s:9:"embaixada";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:8:"principe";a:0:{}s:7:"saotome";a:0:{}s:5:"store";a:0:{}s:7:"helioho";a:0:{}s:6:"kirara";a:0:{}s:4:"noho";a:0:{}}s:2:"su";a:52:{s:8:"abkhazia";a:0:{}s:7:"adygeya";a:0:{}s:10:"aktyubinsk";a:0:{}s:11:"arkhangelsk";a:0:{}s:7:"armenia";a:0:{}s:8:"ashgabad";a:0:{}s:10:"azerbaijan";a:0:{}s:8:"balashov";a:0:{}s:9:"bashkiria";a:0:{}s:7:"bryansk";a:0:{}s:7:"bukhara";a:0:{}s:8:"chimkent";a:0:{}s:8:"dagestan";a:0:{}s:15:"east-kazakhstan";a:0:{}s:5:"exnet";a:0:{}s:7:"georgia";a:0:{}s:6:"grozny";a:0:{}s:7:"ivanovo";a:0:{}s:6:"jambyl";a:0:{}s:8:"kalmykia";a:0:{}s:6:"kaluga";a:0:{}s:7:"karacol";a:0:{}s:9:"karaganda";a:0:{}s:7:"karelia";a:0:{}s:9:"khakassia";a:0:{}s:9:"krasnodar";a:0:{}s:6:"kurgan";a:0:{}s:8:"kustanai";a:0:{}s:5:"lenug";a:0:{}s:10:"mangyshlak";a:0:{}s:8:"mordovia";a:0:{}s:3:"msk";a:0:{}s:8:"murmansk";a:0:{}s:7:"nalchik";a:0:{}s:5:"navoi";a:0:{}s:16:"north-kazakhstan";a:0:{}s:3:"nov";a:0:{}s:7:"obninsk";a:0:{}s:5:"penza";a:0:{}s:8:"pokrovsk";a:0:{}s:5:"sochi";a:0:{}s:3:"spb";a:0:{}s:8:"tashkent";a:0:{}s:6:"termez";a:0:{}s:9:"togliatti";a:0:{}s:7:"troitsk";a:0:{}s:11:"tselinograd";a:0:{}s:4:"tula";a:0:{}s:4:"tuva";a:0:{}s:11:"vladikavkaz";a:0:{}s:8:"vladimir";a:0:{}s:7:"vologda";a:0:{}}s:2:"sv";a:5:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gob";a:0:{}s:3:"org";a:0:{}s:3:"red";a:0:{}}s:2:"sx";a:1:{s:3:"gov";a:0:{}}s:2:"sy";a:6:{s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}}s:2:"sz";a:3:{s:2:"co";a:0:{}s:2:"ac";a:0:{}s:3:"org";a:0:{}}s:2:"tc";a:0:{}s:2:"td";a:1:{s:8:"blogspot";a:0:{}}s:3:"tel";a:0:{}s:2:"tf";a:1:{s:3:"sch";a:0:{}}s:2:"tg";a:0:{}s:2:"th";a:9:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:2:"go";a:0:{}s:2:"in";a:0:{}s:2:"mi";a:0:{}s:3:"net";a:0:{}s:2:"or";a:0:{}s:6:"online";a:0:{}s:4:"shop";a:0:{}}s:2:"tj";a:15:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:2:"go";a:0:{}s:3:"gov";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"nic";a:0:{}s:3:"org";a:0:{}s:4:"test";a:0:{}s:3:"web";a:0:{}}s:2:"tk";a:0:{}s:2:"tl";a:1:{s:3:"gov";a:0:{}}s:2:"tm";a:8:{s:3:"com";a:0:{}s:2:"co";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"nom";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"edu";a:0:{}}s:2:"tn";a:14:{s:3:"com";a:0:{}s:3:"ens";a:0:{}s:3:"fin";a:0:{}s:3:"gov";a:0:{}s:3:"ind";a:0:{}s:4:"info";a:0:{}s:4:"intl";a:0:{}s:6:"mincom";a:0:{}s:3:"nat";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:5:"perso";a:0:{}s:7:"tourism";a:0:{}s:11:"orangecloud";a:0:{}}s:2:"to";a:11:{s:3:"com";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"edu";a:0:{}s:3:"mil";a:0:{}i:611;a:0:{}s:3:"oya";a:0:{}s:2:"x0";a:0:{}s:12:"quickconnect";a:1:{s:6:"direct";a:0:{}}s:7:"vpnplus";a:0:{}}s:2:"tr";a:22:{s:2:"av";a:0:{}s:3:"bbs";a:0:{}s:3:"bel";a:0:{}s:3:"biz";a:0:{}s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:2:"dr";a:0:{}s:3:"edu";a:0:{}s:3:"gen";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"mil";a:0:{}s:3:"k12";a:0:{}s:3:"kep";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"pol";a:0:{}s:3:"tel";a:0:{}s:3:"tsk";a:0:{}s:2:"tv";a:0:{}s:3:"web";a:0:{}s:2:"nc";a:1:{s:3:"gov";a:0:{}}}s:2:"tt";a:17:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:3:"net";a:0:{}s:3:"biz";a:0:{}s:4:"info";a:0:{}s:3:"pro";a:0:{}s:3:"int";a:0:{}s:4:"coop";a:0:{}s:4:"jobs";a:0:{}s:4:"mobi";a:0:{}s:6:"travel";a:0:{}s:6:"museum";a:0:{}s:4:"aero";a:0:{}s:4:"name";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}}s:2:"tv";a:6:{s:11:"better-than";a:0:{}s:6:"dyndns";a:0:{}s:10:"on-the-web";a:0:{}s:10:"worse-than";a:0:{}s:4:"from";a:0:{}s:6:"sakura";a:0:{}}s:2:"tw";a:16:{s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"com";a:1:{s:8:"mymailer";a:0:{}}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"idv";a:0:{}s:4:"game";a:0:{}s:4:"ebiz";a:0:{}s:4:"club";a:0:{}s:6:"網路";a:0:{}s:6:"組織";a:0:{}s:6:"商業";a:0:{}s:3:"url";a:0:{}s:5:"mydns";a:0:{}s:8:"blogspot";a:0:{}}s:2:"tz";a:12:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:2:"go";a:0:{}s:5:"hotel";a:0:{}s:4:"info";a:0:{}s:2:"me";a:0:{}s:3:"mil";a:0:{}s:4:"mobi";a:0:{}s:2:"ne";a:0:{}s:2:"or";a:0:{}s:2:"sc";a:0:{}s:2:"tv";a:0:{}}s:2:"ua";a:88:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:2:"in";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:9:"cherkassy";a:0:{}s:8:"cherkasy";a:0:{}s:9:"chernigov";a:0:{}s:9:"chernihiv";a:0:{}s:10:"chernivtsi";a:0:{}s:10:"chernovtsy";a:0:{}s:2:"ck";a:0:{}s:2:"cn";a:0:{}s:2:"cr";a:0:{}s:6:"crimea";a:0:{}s:2:"cv";a:0:{}s:2:"dn";a:0:{}s:14:"dnepropetrovsk";a:0:{}s:14:"dnipropetrovsk";a:0:{}s:7:"donetsk";a:0:{}s:2:"dp";a:0:{}s:2:"if";a:0:{}s:15:"ivano-frankivsk";a:0:{}s:2:"kh";a:0:{}s:7:"kharkiv";a:0:{}s:7:"kharkov";a:0:{}s:7:"kherson";a:0:{}s:12:"khmelnitskiy";a:0:{}s:12:"khmelnytskyi";a:0:{}s:4:"kiev";a:0:{}s:10:"kirovograd";a:0:{}s:2:"km";a:0:{}s:2:"kr";a:0:{}s:13:"kropyvnytskyi";a:0:{}s:4:"krym";a:0:{}s:2:"ks";a:0:{}s:2:"kv";a:0:{}s:4:"kyiv";a:0:{}s:2:"lg";a:0:{}s:2:"lt";a:0:{}s:7:"lugansk";a:0:{}s:7:"luhansk";a:0:{}s:5:"lutsk";a:0:{}s:2:"lv";a:0:{}s:4:"lviv";a:0:{}s:2:"mk";a:0:{}s:8:"mykolaiv";a:0:{}s:8:"nikolaev";a:0:{}s:2:"od";a:0:{}s:5:"odesa";a:0:{}s:6:"odessa";a:0:{}s:2:"pl";a:0:{}s:7:"poltava";a:0:{}s:5:"rivne";a:0:{}s:5:"rovno";a:0:{}s:2:"rv";a:0:{}s:2:"sb";a:0:{}s:10:"sebastopol";a:0:{}s:10:"sevastopol";a:0:{}s:2:"sm";a:0:{}s:4:"sumy";a:0:{}s:2:"te";a:0:{}s:8:"ternopil";a:0:{}s:2:"uz";a:0:{}s:8:"uzhgorod";a:0:{}s:8:"uzhhorod";a:0:{}s:7:"vinnica";a:0:{}s:9:"vinnytsia";a:0:{}s:2:"vn";a:0:{}s:5:"volyn";a:0:{}s:5:"yalta";a:0:{}s:11:"zakarpattia";a:0:{}s:11:"zaporizhzhe";a:0:{}s:12:"zaporizhzhia";a:0:{}s:8:"zhitomir";a:0:{}s:8:"zhytomyr";a:0:{}s:2:"zp";a:0:{}s:2:"zt";a:0:{}s:2:"cc";a:0:{}s:3:"inf";a:0:{}s:3:"ltd";a:0:{}s:2:"cx";a:0:{}s:2:"ie";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:2:"pp";a:0:{}s:1:"v";a:0:{}}s:2:"ug";a:9:{s:2:"co";a:0:{}s:2:"or";a:0:{}s:2:"ac";a:0:{}s:2:"sc";a:0:{}s:2:"go";a:0:{}s:2:"ne";a:0:{}s:3:"com";a:0:{}s:3:"org";a:0:{}s:8:"blogspot";a:0:{}}s:2:"uk";a:24:{s:2:"ac";a:0:{}s:2:"co";a:11:{s:8:"bytemark";a:2:{s:2:"dh";a:0:{}s:2:"vm";a:0:{}}s:8:"blogspot";a:0:{}s:10:"layershift";a:1:{s:1:"j";a:0:{}}s:5:"barsy";a:0:{}s:11:"barsyonline";a:0:{}s:9:"retrosnub";a:1:{s:4:"cust";a:0:{}}s:7:"nh-serv";a:0:{}s:5:"no-ip";a:0:{}s:13:"wellbeingzone";a:0:{}s:5:"adimo";a:0:{}s:12:"myspreadshop";a:0:{}}s:3:"gov";a:3:{s:8:"campaign";a:0:{}s:7:"service";a:0:{}s:3:"api";a:0:{}}s:3:"ltd";a:0:{}s:2:"me";a:0:{}s:3:"net";a:0:{}s:3:"nhs";a:0:{}s:3:"org";a:6:{s:4:"glug";a:0:{}s:3:"lug";a:0:{}s:4:"lugs";a:0:{}s:15:"affinitylottery";a:0:{}s:11:"raffleentry";a:0:{}s:13:"weeklylottery";a:0:{}}s:3:"plc";a:0:{}s:6:"police";a:0:{}s:3:"sch";a:1:{s:1:"*";a:0:{}}s:4:"conn";a:0:{}s:5:"copro";a:0:{}s:4:"hosp";a:0:{}s:22:"independent-commission";a:0:{}s:19:"independent-inquest";a:0:{}s:19:"independent-inquiry";a:0:{}s:17:"independent-panel";a:0:{}s:18:"independent-review";a:0:{}s:14:"public-inquiry";a:0:{}s:16:"royal-commission";a:0:{}s:5:"pymnt";a:0:{}s:5:"barsy";a:0:{}s:7:"nimsite";a:0:{}}s:2:"us";a:77:{s:3:"dni";a:0:{}s:3:"fed";a:0:{}s:3:"isa";a:0:{}s:4:"kids";a:0:{}s:3:"nsn";a:0:{}s:2:"ak";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"al";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ar";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"as";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"az";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ca";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"co";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ct";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"dc";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"de";a:2:{s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"fl";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ga";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"gu";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"hi";a:2:{s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ia";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"id";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"il";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"in";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ks";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ky";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"la";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ma";a:3:{s:3:"k12";a:3:{s:3:"pvt";a:0:{}s:4:"chtr";a:0:{}s:6:"paroch";a:0:{}}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"md";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"me";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"mi";a:11:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}s:9:"ann-arbor";a:0:{}s:3:"cog";a:0:{}s:3:"dst";a:0:{}s:5:"eaton";a:0:{}s:3:"gen";a:0:{}s:3:"mus";a:0:{}s:3:"tec";a:0:{}s:9:"washtenaw";a:0:{}}s:2:"mn";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"mo";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ms";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"mt";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nc";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nd";a:2:{s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ne";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nh";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nj";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nm";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"nv";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ny";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"oh";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ok";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"or";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"pa";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"pr";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ri";a:2:{s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"sc";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"sd";a:2:{s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"tn";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"tx";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"ut";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"vi";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"vt";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"va";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"wa";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"wi";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:2:"wv";a:1:{s:2:"cc";a:0:{}}s:2:"wy";a:3:{s:3:"k12";a:0:{}s:2:"cc";a:0:{}s:3:"lib";a:0:{}}s:7:"graphox";a:0:{}s:7:"cloudns";a:0:{}s:4:"drud";a:0:{}s:5:"is-by";a:0:{}s:11:"land-4-sale";a:0:{}s:12:"stuff-4-sale";a:0:{}s:9:"heliohost";a:0:{}s:8:"enscaled";a:1:{s:3:"phx";a:0:{}}s:8:"mircloud";a:0:{}s:3:"ngo";a:0:{}s:8:"freeddns";a:0:{}s:7:"golffan";a:0:{}s:4:"noip";a:0:{}s:7:"pointto";a:0:{}s:3:"srv";a:2:{s:2:"gh";a:0:{}s:2:"gl";a:0:{}}s:8:"platterp";a:0:{}s:10:"servername";a:0:{}}s:2:"uy";a:6:{s:3:"com";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:3:"gub";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"uz";a:4:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"va";a:0:{}s:2:"vc";a:9:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"edu";a:0:{}s:2:"gv";a:1:{s:1:"d";a:0:{}}s:2:"0e";a:0:{}s:5:"mydns";a:0:{}}s:2:"ve";a:20:{s:4:"arts";a:0:{}s:3:"bib";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"e12";a:0:{}s:3:"edu";a:0:{}s:4:"firm";a:0:{}s:3:"gob";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"int";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"nom";a:0:{}s:3:"org";a:0:{}s:3:"rar";a:0:{}s:3:"rec";a:0:{}s:5:"store";a:0:{}s:3:"tec";a:0:{}s:3:"web";a:0:{}}s:2:"vg";a:0:{}s:2:"vi";a:5:{s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"k12";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"vn";a:79:{s:2:"ac";a:0:{}s:2:"ai";a:0:{}s:3:"biz";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:6:"health";a:0:{}s:2:"id";a:0:{}s:4:"info";a:0:{}s:3:"int";a:0:{}s:2:"io";a:0:{}s:4:"name";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"pro";a:0:{}s:7:"angiang";a:0:{}s:8:"bacgiang";a:0:{}s:6:"backan";a:0:{}s:7:"baclieu";a:0:{}s:7:"bacninh";a:0:{}s:13:"baria-vungtau";a:0:{}s:6:"bentre";a:0:{}s:8:"binhdinh";a:0:{}s:9:"binhduong";a:0:{}s:9:"binhphuoc";a:0:{}s:9:"binhthuan";a:0:{}s:5:"camau";a:0:{}s:6:"cantho";a:0:{}s:7:"caobang";a:0:{}s:6:"daklak";a:0:{}s:7:"daknong";a:0:{}s:6:"danang";a:0:{}s:8:"dienbien";a:0:{}s:7:"dongnai";a:0:{}s:8:"dongthap";a:0:{}s:6:"gialai";a:0:{}s:7:"hagiang";a:0:{}s:8:"haiduong";a:0:{}s:8:"haiphong";a:0:{}s:5:"hanam";a:0:{}s:5:"hanoi";a:0:{}s:6:"hatinh";a:0:{}s:8:"haugiang";a:0:{}s:7:"hoabinh";a:0:{}s:7:"hungyen";a:0:{}s:8:"khanhhoa";a:0:{}s:9:"kiengiang";a:0:{}s:6:"kontum";a:0:{}s:7:"laichau";a:0:{}s:7:"lamdong";a:0:{}s:7:"langson";a:0:{}s:6:"laocai";a:0:{}s:6:"longan";a:0:{}s:7:"namdinh";a:0:{}s:6:"nghean";a:0:{}s:8:"ninhbinh";a:0:{}s:9:"ninhthuan";a:0:{}s:6:"phutho";a:0:{}s:6:"phuyen";a:0:{}s:9:"quangbinh";a:0:{}s:8:"quangnam";a:0:{}s:9:"quangngai";a:0:{}s:9:"quangninh";a:0:{}s:8:"quangtri";a:0:{}s:8:"soctrang";a:0:{}s:5:"sonla";a:0:{}s:7:"tayninh";a:0:{}s:8:"thaibinh";a:0:{}s:10:"thainguyen";a:0:{}s:8:"thanhhoa";a:0:{}s:17:"thanhphohochiminh";a:0:{}s:12:"thuathienhue";a:0:{}s:9:"tiengiang";a:0:{}s:7:"travinh";a:0:{}s:10:"tuyenquang";a:0:{}s:8:"vinhlong";a:0:{}s:8:"vinhphuc";a:0:{}s:6:"yenbai";a:0:{}s:8:"blogspot";a:0:{}}s:2:"vu";a:4:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}}s:2:"wf";a:2:{s:3:"biz";a:0:{}s:3:"sch";a:0:{}}s:2:"ws";a:9:{s:3:"com";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"gov";a:0:{}s:3:"edu";a:0:{}s:7:"advisor";a:1:{s:1:"*";a:0:{}}s:7:"cloud66";a:0:{}s:6:"dyndns";a:0:{}s:6:"mypets";a:0:{}}s:2:"yt";a:1:{s:3:"org";a:0:{}}s:12:"امارات";a:0:{}s:6:"հայ";a:0:{}s:15:"বাংলা";a:0:{}s:4:"бг";a:0:{}s:14:"البحرين";a:0:{}s:6:"бел";a:0:{}s:6:"中国";a:0:{}s:6:"中國";a:0:{}s:14:"الجزائر";a:0:{}s:6:"مصر";a:0:{}s:4:"ею";a:0:{}s:4:"ευ";a:0:{}s:18:"موريتانيا";a:0:{}s:6:"გე";a:0:{}s:4:"ελ";a:0:{}s:6:"香港";a:6:{s:6:"公司";a:0:{}s:6:"教育";a:0:{}s:6:"政府";a:0:{}s:6:"個人";a:0:{}s:6:"網絡";a:0:{}s:6:"組織";a:0:{}}s:12:"ಭಾರತ";a:0:{}s:12:"ଭାରତ";a:0:{}s:12:"ভাৰত";a:0:{}s:18:"भारतम्";a:0:{}s:15:"भारोत";a:0:{}s:8:"ڀارت";a:0:{}s:15:"ഭാരതം";a:0:{}s:12:"भारत";a:0:{}s:8:"بارت";a:0:{}s:10:"بھارت";a:0:{}s:15:"భారత్";a:0:{}s:12:"ભારત";a:0:{}s:12:"ਭਾਰਤ";a:0:{}s:12:"ভারত";a:0:{}s:21:"இந்தியா";a:0:{}s:10:"ایران";a:0:{}s:10:"ايران";a:0:{}s:8:"عراق";a:0:{}s:12:"الاردن";a:0:{}s:6:"한국";a:0:{}s:6:"қаз";a:0:{}s:9:"ລາວ";a:0:{}s:12:"ලංකා";a:0:{}s:18:"இலங்கை";a:0:{}s:12:"المغرب";a:0:{}s:6:"мкд";a:0:{}s:6:"мон";a:0:{}s:6:"澳門";a:0:{}s:6:"澳门";a:0:{}s:12:"مليسيا";a:0:{}s:8:"عمان";a:0:{}s:14:"پاکستان";a:0:{}s:14:"پاكستان";a:0:{}s:12:"فلسطين";a:0:{}s:6:"срб";a:6:{s:4:"пр";a:0:{}s:6:"орг";a:0:{}s:6:"обр";a:0:{}s:4:"од";a:0:{}s:6:"упр";a:0:{}s:4:"ак";a:0:{}}s:4:"рф";a:0:{}s:6:"قطر";a:0:{}s:16:"السعودية";a:0:{}s:16:"السعودیة";a:0:{}s:16:"السعودیۃ";a:0:{}s:16:"السعوديه";a:0:{}s:10:"سودان";a:0:{}s:9:"新加坡";a:0:{}s:33:"சிங்கப்பூர்";a:0:{}s:10:"سورية";a:0:{}s:10:"سوريا";a:0:{}s:9:"ไทย";a:6:{s:15:"ศึกษา";a:0:{}s:18:"ธุรกิจ";a:0:{}s:18:"รัฐบาล";a:0:{}s:12:"ทหาร";a:0:{}s:12:"เน็ต";a:0:{}s:18:"องค์กร";a:0:{}}s:8:"تونس";a:0:{}s:6:"台灣";a:0:{}s:6:"台湾";a:0:{}s:6:"臺灣";a:0:{}s:6:"укр";a:0:{}s:10:"اليمن";a:0:{}s:3:"xxx";a:0:{}s:2:"ye";a:6:{s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:3:"net";a:0:{}s:3:"mil";a:0:{}s:3:"org";a:0:{}}s:2:"za";a:18:{s:2:"ac";a:0:{}s:5:"agric";a:0:{}s:3:"alt";a:0:{}s:2:"co";a:1:{s:8:"blogspot";a:0:{}}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:7:"grondar";a:0:{}s:3:"law";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"ngo";a:0:{}s:3:"nic";a:0:{}s:3:"nis";a:0:{}s:3:"nom";a:0:{}s:3:"org";a:0:{}s:6:"school";a:0:{}s:2:"tm";a:0:{}s:3:"web";a:0:{}}s:2:"zm";a:11:{s:2:"ac";a:0:{}s:3:"biz";a:0:{}s:2:"co";a:0:{}s:3:"com";a:0:{}s:3:"edu";a:0:{}s:3:"gov";a:0:{}s:4:"info";a:0:{}s:3:"mil";a:0:{}s:3:"net";a:0:{}s:3:"org";a:0:{}s:3:"sch";a:0:{}}s:2:"zw";a:5:{s:2:"ac";a:0:{}s:2:"co";a:0:{}s:3:"gov";a:0:{}s:3:"mil";a:0:{}s:3:"org";a:0:{}}s:3:"aaa";a:0:{}s:4:"aarp";a:0:{}s:3:"abb";a:0:{}s:6:"abbott";a:0:{}s:6:"abbvie";a:0:{}s:3:"abc";a:0:{}s:4:"able";a:0:{}s:7:"abogado";a:0:{}s:8:"abudhabi";a:0:{}s:7:"academy";a:1:{s:8:"official";a:0:{}}s:9:"accenture";a:0:{}s:10:"accountant";a:0:{}s:11:"accountants";a:0:{}s:3:"aco";a:0:{}s:5:"actor";a:0:{}s:3:"ads";a:0:{}s:5:"adult";a:0:{}s:3:"aeg";a:0:{}s:5:"aetna";a:0:{}s:3:"afl";a:0:{}s:6:"africa";a:0:{}s:7:"agakhan";a:0:{}s:6:"agency";a:0:{}s:3:"aig";a:0:{}s:6:"airbus";a:0:{}s:8:"airforce";a:0:{}s:6:"airtel";a:0:{}s:4:"akdn";a:0:{}s:7:"alibaba";a:0:{}s:6:"alipay";a:0:{}s:9:"allfinanz";a:0:{}s:8:"allstate";a:0:{}s:4:"ally";a:0:{}s:6:"alsace";a:0:{}s:6:"alstom";a:0:{}s:6:"amazon";a:0:{}s:15:"americanexpress";a:0:{}s:14:"americanfamily";a:0:{}s:4:"amex";a:0:{}s:5:"amfam";a:0:{}s:5:"amica";a:0:{}s:9:"amsterdam";a:0:{}s:9:"analytics";a:0:{}s:7:"android";a:0:{}s:6:"anquan";a:0:{}s:3:"anz";a:0:{}s:3:"aol";a:0:{}s:10:"apartments";a:0:{}s:3:"app";a:42:{s:9:"adaptable";a:0:{}s:5:"beget";a:1:{s:1:"*";a:0:{}}s:5:"clerk";a:0:{}s:10:"clerkstage";a:0:{}s:5:"wnext";a:0:{}s:3:"csb";a:1:{s:7:"preview";a:0:{}}s:6:"cyclic";a:0:{}s:9:"platform0";a:0:{}s:4:"deta";a:0:{}s:14:"ondigitalocean";a:0:{}s:9:"easypanel";a:0:{}s:4:"encr";a:0:{}s:9:"evervault";a:1:{s:5:"relay";a:0:{}}s:4:"expo";a:1:{s:7:"staging";a:0:{}}s:11:"edgecompute";a:0:{}s:7:"fireweb";a:0:{}s:12:"onflashdrive";a:0:{}s:11:"flutterflow";a:0:{}s:6:"framer";a:0:{}s:6:"hosted";a:1:{s:1:"*";a:0:{}}s:3:"run";a:1:{s:1:"*";a:0:{}}s:3:"web";a:0:{}s:6:"hasura";a:0:{}s:9:"loginline";a:0:{}s:8:"messerli";a:0:{}s:5:"netfy";a:0:{}s:7:"netlify";a:0:{}s:5:"ngrok";a:0:{}s:10:"ngrok-free";a:0:{}s:9:"developer";a:1:{s:1:"*";a:0:{}}s:4:"noop";a:0:{}s:10:"northflank";a:1:{s:1:"*";a:0:{}}s:5:"upsun";a:1:{s:1:"*";a:0:{}}s:6:"replit";a:1:{s:2:"id";a:0:{}}s:9:"snowflake";a:2:{s:1:"*";a:0:{}s:11:"privatelink";a:1:{s:1:"*";a:0:{}}}s:9:"streamlit";a:0:{}s:10:"storipress";a:0:{}s:7:"telebit";a:0:{}s:9:"typedream";a:0:{}s:6:"vercel";a:0:{}s:10:"bookonline";a:0:{}s:6:"zeabur";a:0:{}}s:5:"apple";a:0:{}s:9:"aquarelle";a:0:{}s:4:"arab";a:0:{}s:6:"aramco";a:0:{}s:5:"archi";a:0:{}s:4:"army";a:0:{}s:3:"art";a:0:{}s:4:"arte";a:0:{}s:4:"asda";a:0:{}s:10:"associates";a:0:{}s:7:"athleta";a:0:{}s:8:"attorney";a:0:{}s:7:"auction";a:0:{}s:4:"audi";a:0:{}s:7:"audible";a:0:{}s:5:"audio";a:0:{}s:7:"auspost";a:0:{}s:6:"author";a:0:{}s:4:"auto";a:0:{}s:5:"autos";a:0:{}s:3:"aws";a:2:{s:9:"sagemaker";a:31:{s:14:"ap-northeast-1";a:3:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:14:"ap-northeast-2";a:3:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:10:"ap-south-1";a:3:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:14:"ap-southeast-1";a:3:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:14:"ap-southeast-2";a:3:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:12:"ca-central-1";a:4:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:13:"notebook-fips";a:0:{}s:6:"studio";a:0:{}}s:12:"eu-central-1";a:3:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:9:"eu-west-1";a:3:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:9:"eu-west-2";a:3:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:9:"us-east-1";a:4:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:13:"notebook-fips";a:0:{}s:6:"studio";a:0:{}}s:9:"us-east-2";a:4:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:13:"notebook-fips";a:0:{}s:6:"studio";a:0:{}}s:9:"us-west-2";a:4:{s:8:"labeling";a:0:{}s:8:"notebook";a:0:{}s:13:"notebook-fips";a:0:{}s:6:"studio";a:0:{}}s:10:"af-south-1";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:9:"ap-east-1";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:14:"ap-northeast-3";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:10:"ap-south-2";a:1:{s:8:"notebook";a:0:{}}s:14:"ap-southeast-3";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:14:"ap-southeast-4";a:1:{s:8:"notebook";a:0:{}}s:9:"ca-west-1";a:2:{s:8:"notebook";a:0:{}s:13:"notebook-fips";a:0:{}}s:12:"eu-central-2";a:1:{s:8:"notebook";a:0:{}}s:10:"eu-north-1";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:10:"eu-south-1";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:10:"eu-south-2";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:9:"eu-west-3";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:12:"il-central-1";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:12:"me-central-1";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:10:"me-south-1";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:9:"sa-east-1";a:2:{s:8:"notebook";a:0:{}s:6:"studio";a:0:{}}s:13:"us-gov-east-1";a:4:{s:8:"notebook";a:0:{}s:13:"notebook-fips";a:0:{}s:6:"studio";a:0:{}s:11:"studio-fips";a:0:{}}s:13:"us-gov-west-1";a:4:{s:8:"notebook";a:0:{}s:13:"notebook-fips";a:0:{}s:6:"studio";a:0:{}s:11:"studio-fips";a:0:{}}s:9:"us-west-1";a:3:{s:8:"notebook";a:0:{}s:13:"notebook-fips";a:0:{}s:6:"studio";a:0:{}}}s:6:"repost";a:1:{s:7:"private";a:1:{s:1:"*";a:0:{}}}}s:3:"axa";a:0:{}s:5:"azure";a:0:{}s:4:"baby";a:0:{}s:5:"baidu";a:0:{}s:7:"banamex";a:0:{}s:4:"band";a:0:{}s:4:"bank";a:0:{}s:3:"bar";a:0:{}s:9:"barcelona";a:0:{}s:11:"barclaycard";a:0:{}s:8:"barclays";a:0:{}s:8:"barefoot";a:0:{}s:8:"bargains";a:0:{}s:8:"baseball";a:0:{}s:10:"basketball";a:2:{s:3:"aus";a:0:{}s:2:"nz";a:0:{}}s:7:"bauhaus";a:0:{}s:6:"bayern";a:0:{}s:3:"bbc";a:0:{}s:3:"bbt";a:0:{}s:4:"bbva";a:0:{}s:3:"bcg";a:0:{}s:3:"bcn";a:0:{}s:5:"beats";a:0:{}s:6:"beauty";a:0:{}s:4:"beer";a:0:{}s:7:"bentley";a:0:{}s:6:"berlin";a:0:{}s:4:"best";a:0:{}s:7:"bestbuy";a:0:{}s:3:"bet";a:0:{}s:6:"bharti";a:0:{}s:5:"bible";a:0:{}s:3:"bid";a:0:{}s:4:"bike";a:0:{}s:4:"bing";a:0:{}s:5:"bingo";a:0:{}s:3:"bio";a:0:{}s:5:"black";a:0:{}s:11:"blackfriday";a:0:{}s:11:"blockbuster";a:0:{}s:4:"blog";a:0:{}s:9:"bloomberg";a:0:{}s:4:"blue";a:0:{}s:3:"bms";a:0:{}s:3:"bmw";a:0:{}s:10:"bnpparibas";a:0:{}s:5:"boats";a:0:{}s:10:"boehringer";a:0:{}s:4:"bofa";a:0:{}s:3:"bom";a:0:{}s:4:"bond";a:0:{}s:3:"boo";a:0:{}s:4:"book";a:0:{}s:7:"booking";a:0:{}s:5:"bosch";a:0:{}s:6:"bostik";a:0:{}s:6:"boston";a:0:{}s:3:"bot";a:0:{}s:8:"boutique";a:0:{}s:3:"box";a:0:{}s:8:"bradesco";a:0:{}s:11:"bridgestone";a:0:{}s:8:"broadway";a:0:{}s:6:"broker";a:0:{}s:7:"brother";a:0:{}s:8:"brussels";a:0:{}s:5:"build";a:0:{}s:8:"builders";a:1:{s:9:"cloudsite";a:0:{}}s:8:"business";a:1:{s:2:"co";a:0:{}}s:3:"buy";a:0:{}s:4:"buzz";a:0:{}s:3:"bzh";a:0:{}s:3:"cab";a:0:{}s:4:"cafe";a:0:{}s:3:"cal";a:0:{}s:4:"call";a:0:{}s:11:"calvinklein";a:0:{}s:3:"cam";a:0:{}s:6:"camera";a:0:{}s:4:"camp";a:1:{s:3:"emf";a:1:{s:2:"at";a:0:{}}}s:5:"canon";a:0:{}s:8:"capetown";a:0:{}s:7:"capital";a:0:{}s:10:"capitalone";a:0:{}s:3:"car";a:0:{}s:7:"caravan";a:0:{}s:5:"cards";a:0:{}s:4:"care";a:0:{}s:6:"career";a:0:{}s:7:"careers";a:0:{}s:4:"cars";a:0:{}s:4:"casa";a:1:{s:4:"nabu";a:1:{s:2:"ui";a:0:{}}}s:4:"case";a:0:{}s:4:"cash";a:0:{}s:6:"casino";a:0:{}s:8:"catering";a:0:{}s:8:"catholic";a:0:{}s:3:"cba";a:0:{}s:3:"cbn";a:0:{}s:4:"cbre";a:0:{}s:6:"center";a:0:{}s:3:"ceo";a:0:{}s:4:"cern";a:0:{}s:3:"cfa";a:0:{}s:3:"cfd";a:0:{}s:6:"chanel";a:0:{}s:7:"channel";a:0:{}s:7:"charity";a:0:{}s:5:"chase";a:0:{}s:4:"chat";a:0:{}s:5:"cheap";a:0:{}s:7:"chintai";a:0:{}s:9:"christmas";a:0:{}s:6:"chrome";a:0:{}s:6:"church";a:0:{}s:8:"cipriani";a:0:{}s:6:"circle";a:0:{}s:5:"cisco";a:0:{}s:7:"citadel";a:0:{}s:4:"citi";a:0:{}s:5:"citic";a:0:{}s:4:"city";a:0:{}s:6:"claims";a:0:{}s:8:"cleaning";a:0:{}s:5:"click";a:0:{}s:6:"clinic";a:0:{}s:8:"clinique";a:0:{}s:8:"clothing";a:0:{}s:5:"cloud";a:32:{s:6:"banzai";a:1:{s:1:"*";a:0:{}}s:6:"cyclic";a:0:{}s:9:"elementor";a:0:{}s:7:"encoway";a:1:{s:2:"eu";a:0:{}}s:7:"statics";a:1:{s:1:"*";a:0:{}}s:7:"ravendb";a:0:{}s:7:"axarnet";a:1:{s:4:"es-1";a:0:{}}s:6:"diadem";a:0:{}s:8:"jelastic";a:1:{s:3:"vip";a:0:{}}s:4:"jele";a:0:{}s:10:"jenv-aruba";a:2:{s:5:"aruba";a:1:{s:3:"eur";a:1:{s:3:"it1";a:0:{}}}s:3:"it1";a:0:{}}s:7:"keliweb";a:1:{s:2:"cs";a:0:{}}s:3:"oxa";a:2:{s:2:"tn";a:0:{}s:2:"uk";a:0:{}}s:8:"primetel";a:1:{s:2:"uk";a:0:{}}s:7:"reclaim";a:3:{s:2:"ca";a:0:{}s:2:"uk";a:0:{}s:2:"us";a:0:{}}s:12:"trendhosting";a:2:{s:2:"ch";a:0:{}s:2:"de";a:0:{}}s:8:"jotelulu";a:0:{}s:8:"kuleuven";a:0:{}s:8:"linkyard";a:0:{}s:11:"magentosite";a:1:{s:1:"*";a:0:{}}s:12:"observablehq";a:0:{}s:9:"perspecta";a:0:{}s:5:"vapor";a:0:{}s:10:"on-rancher";a:1:{s:1:"*";a:0:{}}s:3:"scw";a:8:{s:9:"baremetal";a:3:{s:8:"fr-par-1";a:0:{}s:8:"fr-par-2";a:0:{}s:8:"nl-ams-1";a:0:{}}s:6:"fr-par";a:6:{s:7:"cockpit";a:0:{}s:3:"fnc";a:1:{s:9:"functions";a:0:{}}s:3:"k8s";a:1:{s:5:"nodes";a:0:{}}s:2:"s3";a:0:{}s:10:"s3-website";a:0:{}s:3:"whm";a:0:{}}s:9:"instances";a:2:{s:4:"priv";a:0:{}s:3:"pub";a:0:{}}s:3:"k8s";a:0:{}s:6:"nl-ams";a:5:{s:7:"cockpit";a:0:{}s:3:"k8s";a:1:{s:5:"nodes";a:0:{}}s:2:"s3";a:0:{}s:10:"s3-website";a:0:{}s:3:"whm";a:0:{}}s:6:"pl-waw";a:4:{s:7:"cockpit";a:0:{}s:3:"k8s";a:1:{s:5:"nodes";a:0:{}}s:2:"s3";a:0:{}s:10:"s3-website";a:0:{}}s:9:"scalebook";a:0:{}s:13:"smartlabeling";a:0:{}}s:9:"onstackit";a:1:{s:4:"runs";a:0:{}}s:10:"sensiosite";a:1:{s:1:"*";a:0:{}}s:11:"trafficplex";a:0:{}s:15:"unison-services";a:0:{}s:5:"urown";a:0:{}s:9:"voorloper";a:0:{}s:3:"zap";a:0:{}}s:4:"club";a:3:{s:7:"cloudns";a:0:{}s:4:"jele";a:0:{}s:5:"barsy";a:0:{}}s:7:"clubmed";a:0:{}s:5:"coach";a:0:{}s:5:"codes";a:1:{s:3:"owo";a:1:{s:1:"*";a:0:{}}}s:6:"coffee";a:0:{}s:7:"college";a:0:{}s:7:"cologne";a:0:{}s:8:"commbank";a:0:{}s:9:"community";a:3:{s:3:"nog";a:0:{}s:7:"ravendb";a:0:{}s:7:"myforum";a:0:{}}s:7:"company";a:0:{}s:7:"compare";a:0:{}s:8:"computer";a:0:{}s:6:"comsec";a:0:{}s:6:"condos";a:0:{}s:12:"construction";a:0:{}s:10:"consulting";a:0:{}s:7:"contact";a:0:{}s:11:"contractors";a:0:{}s:7:"cooking";a:0:{}s:4:"cool";a:2:{s:9:"elementor";a:0:{}s:2:"de";a:0:{}}s:7:"corsica";a:0:{}s:7:"country";a:0:{}s:6:"coupon";a:0:{}s:7:"coupons";a:0:{}s:7:"courses";a:0:{}s:3:"cpa";a:0:{}s:6:"credit";a:0:{}s:10:"creditcard";a:0:{}s:11:"creditunion";a:0:{}s:7:"cricket";a:0:{}s:5:"crown";a:0:{}s:3:"crs";a:0:{}s:6:"cruise";a:0:{}s:7:"cruises";a:0:{}s:10:"cuisinella";a:0:{}s:5:"cymru";a:0:{}s:4:"cyou";a:0:{}s:5:"dabur";a:0:{}s:3:"dad";a:0:{}s:5:"dance";a:0:{}s:4:"data";a:0:{}s:4:"date";a:0:{}s:6:"dating";a:0:{}s:6:"datsun";a:0:{}s:3:"day";a:0:{}s:4:"dclk";a:0:{}s:3:"dds";a:0:{}s:4:"deal";a:0:{}s:6:"dealer";a:0:{}s:5:"deals";a:0:{}s:6:"degree";a:0:{}s:8:"delivery";a:0:{}s:4:"dell";a:0:{}s:8:"deloitte";a:0:{}s:5:"delta";a:0:{}s:8:"democrat";a:0:{}s:6:"dental";a:0:{}s:7:"dentist";a:0:{}s:4:"desi";a:0:{}s:6:"design";a:2:{s:7:"graphic";a:0:{}s:3:"bss";a:0:{}}s:3:"dev";a:38:{s:7:"12chars";a:0:{}s:5:"panel";a:0:{}s:8:"autocode";a:0:{}s:3:"lcl";a:1:{s:1:"*";a:0:{}}s:8:"lclstage";a:1:{s:1:"*";a:0:{}}s:3:"stg";a:1:{s:1:"*";a:0:{}}s:8:"stgstage";a:1:{s:1:"*";a:0:{}}s:5:"pages";a:0:{}s:2:"r2";a:0:{}s:7:"workers";a:0:{}s:4:"curv";a:0:{}s:4:"deno";a:0:{}s:12:"deno-staging";a:0:{}s:4:"deta";a:0:{}s:9:"evervault";a:1:{s:5:"relay";a:0:{}}s:3:"fly";a:0:{}s:13:"githubpreview";a:0:{}s:7:"gateway";a:1:{s:1:"*";a:0:{}}s:4:"is-a";a:0:{}s:5:"iserv";a:0:{}s:13:"runcontainers";a:0:{}s:9:"localcert";a:1:{s:4:"user";a:1:{s:1:"*";a:0:{}}}s:9:"loginline";a:0:{}s:5:"barsy";a:0:{}s:9:"mediatech";a:0:{}s:4:"modx";a:0:{}s:5:"ngrok";a:0:{}s:10:"ngrok-free";a:0:{}s:7:"is-cool";a:0:{}s:8:"is-not-a";a:0:{}s:11:"localplayer";a:0:{}s:4:"xmit";a:0:{}s:11:"platter-app";a:0:{}s:6:"replit";a:26:{s:6:"archer";a:0:{}s:5:"bones";a:0:{}s:6:"canary";a:0:{}s:6:"global";a:0:{}s:6:"hacker";a:0:{}s:2:"id";a:0:{}s:7:"janeway";a:0:{}s:3:"kim";a:0:{}s:4:"kira";a:0:{}s:4:"kirk";a:0:{}s:3:"odo";a:0:{}s:5:"paris";a:0:{}s:6:"picard";a:0:{}s:4:"pike";a:0:{}s:10:"prerelease";a:0:{}s:4:"reed";a:0:{}s:5:"riker";a:0:{}s:5:"sisko";a:0:{}s:5:"spock";a:0:{}s:7:"staging";a:0:{}s:4:"sulu";a:0:{}s:6:"tarpit";a:0:{}s:5:"teams";a:0:{}s:6:"tucker";a:0:{}s:6:"wesley";a:0:{}s:4:"worf";a:0:{}}s:3:"crm";a:8:{s:1:"d";a:1:{s:1:"*";a:0:{}}s:1:"w";a:1:{s:1:"*";a:0:{}}s:2:"wa";a:1:{s:1:"*";a:0:{}}s:2:"wb";a:1:{s:1:"*";a:0:{}}s:2:"wc";a:1:{s:1:"*";a:0:{}}s:2:"wd";a:1:{s:1:"*";a:0:{}}s:2:"we";a:1:{s:1:"*";a:0:{}}s:2:"wf";a:1:{s:1:"*";a:0:{}}}s:11:"shiftcrypto";a:0:{}s:6:"vercel";a:0:{}s:7:"webhare";a:1:{s:1:"*";a:0:{}}}s:3:"dhl";a:0:{}s:8:"diamonds";a:0:{}s:4:"diet";a:0:{}s:7:"digital";a:1:{s:9:"cloudapps";a:1:{s:6:"london";a:0:{}}}s:6:"direct";a:0:{}s:9:"directory";a:0:{}s:8:"discount";a:0:{}s:8:"discover";a:0:{}s:4:"dish";a:0:{}s:3:"diy";a:0:{}s:3:"dnp";a:0:{}s:4:"docs";a:0:{}s:6:"doctor";a:0:{}s:3:"dog";a:0:{}s:7:"domains";a:0:{}s:3:"dot";a:0:{}s:8:"download";a:0:{}s:5:"drive";a:0:{}s:3:"dtv";a:0:{}s:5:"dubai";a:0:{}s:6:"dunlop";a:0:{}s:6:"dupont";a:0:{}s:6:"durban";a:0:{}s:4:"dvag";a:0:{}s:3:"dvr";a:0:{}s:5:"earth";a:1:{s:5:"dapps";a:2:{s:1:"*";a:0:{}s:3:"bzz";a:1:{s:1:"*";a:0:{}}}}s:3:"eat";a:0:{}s:3:"eco";a:0:{}s:5:"edeka";a:0:{}s:9:"education";a:1:{s:2:"co";a:0:{}}s:5:"email";a:1:{s:5:"crisp";a:1:{s:2:"on";a:0:{}}}s:6:"emerck";a:0:{}s:6:"energy";a:0:{}s:8:"engineer";a:0:{}s:11:"engineering";a:0:{}s:11:"enterprises";a:0:{}s:5:"epson";a:0:{}s:9:"equipment";a:0:{}s:8:"ericsson";a:0:{}s:4:"erni";a:0:{}s:3:"esq";a:0:{}s:6:"estate";a:1:{s:7:"compute";a:1:{s:1:"*";a:0:{}}}s:10:"eurovision";a:0:{}s:3:"eus";a:1:{s:5:"party";a:1:{s:4:"user";a:0:{}}}s:6:"events";a:2:{s:6:"koobin";a:0:{}s:2:"co";a:0:{}}s:8:"exchange";a:0:{}s:6:"expert";a:0:{}s:7:"exposed";a:0:{}s:7:"express";a:0:{}s:10:"extraspace";a:0:{}s:4:"fage";a:0:{}s:4:"fail";a:0:{}s:9:"fairwinds";a:0:{}s:5:"faith";a:1:{s:3:"ybo";a:0:{}}s:6:"family";a:0:{}s:3:"fan";a:0:{}s:4:"fans";a:0:{}s:4:"farm";a:1:{s:5:"storj";a:0:{}}s:7:"farmers";a:0:{}s:7:"fashion";a:0:{}s:4:"fast";a:0:{}s:5:"fedex";a:0:{}s:8:"feedback";a:0:{}s:7:"ferrari";a:0:{}s:7:"ferrero";a:0:{}s:8:"fidelity";a:0:{}s:4:"fido";a:0:{}s:4:"film";a:0:{}s:5:"final";a:0:{}s:7:"finance";a:0:{}s:9:"financial";a:1:{s:2:"co";a:0:{}}s:4:"fire";a:0:{}s:9:"firestone";a:0:{}s:8:"firmdale";a:0:{}s:4:"fish";a:0:{}s:7:"fishing";a:0:{}s:3:"fit";a:0:{}s:7:"fitness";a:0:{}s:6:"flickr";a:0:{}s:7:"flights";a:0:{}s:4:"flir";a:0:{}s:7:"florist";a:0:{}s:7:"flowers";a:0:{}s:3:"fly";a:0:{}s:3:"foo";a:0:{}s:4:"food";a:0:{}s:8:"football";a:0:{}s:4:"ford";a:0:{}s:5:"forex";a:0:{}s:7:"forsale";a:0:{}s:5:"forum";a:0:{}s:10:"foundation";a:0:{}s:3:"fox";a:0:{}s:4:"free";a:0:{}s:9:"fresenius";a:0:{}s:3:"frl";a:0:{}s:7:"frogans";a:0:{}s:8:"frontier";a:0:{}s:3:"ftr";a:0:{}s:7:"fujitsu";a:0:{}s:3:"fun";a:0:{}s:4:"fund";a:0:{}s:9:"furniture";a:0:{}s:6:"futbol";a:0:{}s:3:"fyi";a:0:{}s:3:"gal";a:0:{}s:7:"gallery";a:0:{}s:5:"gallo";a:0:{}s:6:"gallup";a:0:{}s:4:"game";a:0:{}s:5:"games";a:2:{s:4:"pley";a:0:{}s:6:"sheezy";a:0:{}}s:3:"gap";a:0:{}s:6:"garden";a:0:{}s:3:"gay";a:1:{s:5:"pages";a:0:{}}s:4:"gbiz";a:0:{}s:3:"gdn";a:1:{s:4:"cnpy";a:0:{}}s:3:"gea";a:0:{}s:4:"gent";a:0:{}s:7:"genting";a:0:{}s:6:"george";a:0:{}s:4:"ggee";a:0:{}s:4:"gift";a:0:{}s:5:"gifts";a:0:{}s:5:"gives";a:0:{}s:6:"giving";a:0:{}s:5:"glass";a:0:{}s:3:"gle";a:0:{}s:6:"global";a:0:{}s:5:"globo";a:0:{}s:5:"gmail";a:0:{}s:4:"gmbh";a:0:{}s:3:"gmo";a:0:{}s:3:"gmx";a:0:{}s:7:"godaddy";a:0:{}s:4:"gold";a:0:{}s:9:"goldpoint";a:0:{}s:4:"golf";a:0:{}s:3:"goo";a:0:{}s:8:"goodyear";a:0:{}s:4:"goog";a:3:{s:5:"cloud";a:0:{}s:9:"translate";a:0:{}s:11:"usercontent";a:1:{s:1:"*";a:0:{}}}s:6:"google";a:0:{}s:3:"gop";a:0:{}s:3:"got";a:0:{}s:8:"grainger";a:0:{}s:8:"graphics";a:0:{}s:6:"gratis";a:0:{}s:5:"green";a:0:{}s:5:"gripe";a:0:{}s:7:"grocery";a:0:{}s:5:"group";a:1:{s:9:"discourse";a:0:{}}s:5:"gucci";a:0:{}s:4:"guge";a:0:{}s:5:"guide";a:0:{}s:7:"guitars";a:0:{}s:4:"guru";a:0:{}s:4:"hair";a:0:{}s:7:"hamburg";a:0:{}s:7:"hangout";a:0:{}s:4:"haus";a:0:{}s:3:"hbo";a:0:{}s:4:"hdfc";a:0:{}s:8:"hdfcbank";a:0:{}s:6:"health";a:1:{s:3:"hra";a:0:{}}s:10:"healthcare";a:0:{}s:4:"help";a:0:{}s:8:"helsinki";a:0:{}s:4:"here";a:0:{}s:6:"hermes";a:0:{}s:6:"hiphop";a:0:{}s:9:"hisamitsu";a:0:{}s:7:"hitachi";a:0:{}s:3:"hiv";a:0:{}s:3:"hkt";a:0:{}s:6:"hockey";a:0:{}s:8:"holdings";a:0:{}s:7:"holiday";a:0:{}s:9:"homedepot";a:0:{}s:9:"homegoods";a:0:{}s:5:"homes";a:0:{}s:9:"homesense";a:0:{}s:5:"honda";a:0:{}s:5:"horse";a:0:{}s:8:"hospital";a:0:{}s:4:"host";a:12:{s:11:"cloudaccess";a:0:{}s:8:"freesite";a:0:{}s:9:"easypanel";a:0:{}s:7:"fastvps";a:0:{}s:6:"myfast";a:0:{}s:7:"tempurl";a:0:{}s:7:"wpmudev";a:0:{}s:4:"jele";a:0:{}s:8:"mircloud";a:0:{}s:6:"pcloud";a:0:{}s:3:"wp2";a:0:{}s:4:"half";a:0:{}}s:7:"hosting";a:1:{s:9:"opencraft";a:0:{}}s:3:"hot";a:0:{}s:6:"hotels";a:0:{}s:7:"hotmail";a:0:{}s:5:"house";a:0:{}s:3:"how";a:0:{}s:4:"hsbc";a:0:{}s:6:"hughes";a:0:{}s:5:"hyatt";a:0:{}s:7:"hyundai";a:0:{}s:3:"ibm";a:0:{}s:4:"icbc";a:0:{}s:3:"ice";a:0:{}s:3:"icu";a:0:{}s:4:"ieee";a:0:{}s:3:"ifm";a:0:{}s:5:"ikano";a:0:{}s:6:"imamat";a:0:{}s:4:"imdb";a:0:{}s:4:"immo";a:0:{}s:10:"immobilien";a:0:{}s:3:"inc";a:0:{}s:10:"industries";a:0:{}s:8:"infiniti";a:0:{}s:3:"ing";a:0:{}s:3:"ink";a:0:{}s:9:"institute";a:0:{}s:9:"insurance";a:0:{}s:6:"insure";a:0:{}s:13:"international";a:0:{}s:6:"intuit";a:0:{}s:11:"investments";a:0:{}s:8:"ipiranga";a:0:{}s:5:"irish";a:0:{}s:7:"ismaili";a:0:{}s:3:"ist";a:0:{}s:8:"istanbul";a:0:{}s:4:"itau";a:0:{}s:3:"itv";a:0:{}s:6:"jaguar";a:0:{}s:4:"java";a:0:{}s:3:"jcb";a:0:{}s:4:"jeep";a:0:{}s:5:"jetzt";a:0:{}s:7:"jewelry";a:0:{}s:3:"jio";a:0:{}s:3:"jll";a:0:{}s:3:"jmp";a:0:{}s:3:"jnj";a:0:{}s:6:"joburg";a:0:{}s:3:"jot";a:0:{}s:3:"joy";a:0:{}s:8:"jpmorgan";a:0:{}s:4:"jprs";a:0:{}s:6:"juegos";a:0:{}s:7:"juniper";a:0:{}s:6:"kaufen";a:0:{}s:4:"kddi";a:0:{}s:11:"kerryhotels";a:0:{}s:14:"kerrylogistics";a:0:{}s:15:"kerryproperties";a:0:{}s:3:"kfh";a:0:{}s:3:"kia";a:0:{}s:4:"kids";a:0:{}s:3:"kim";a:0:{}s:6:"kindle";a:0:{}s:7:"kitchen";a:0:{}s:4:"kiwi";a:0:{}s:5:"koeln";a:0:{}s:7:"komatsu";a:0:{}s:6:"kosher";a:0:{}s:4:"kpmg";a:0:{}s:3:"kpn";a:0:{}s:3:"krd";a:2:{s:2:"co";a:0:{}s:3:"edu";a:0:{}}s:4:"kred";a:0:{}s:9:"kuokgroup";a:0:{}s:5:"kyoto";a:0:{}s:7:"lacaixa";a:0:{}s:11:"lamborghini";a:0:{}s:5:"lamer";a:0:{}s:9:"lancaster";a:0:{}s:4:"land";a:1:{s:6:"static";a:2:{s:3:"dev";a:0:{}s:5:"sites";a:0:{}}}s:9:"landrover";a:0:{}s:7:"lanxess";a:0:{}s:7:"lasalle";a:0:{}s:3:"lat";a:0:{}s:6:"latino";a:0:{}s:7:"latrobe";a:0:{}s:3:"law";a:0:{}s:6:"lawyer";a:0:{}s:3:"lds";a:0:{}s:5:"lease";a:0:{}s:7:"leclerc";a:0:{}s:6:"lefrak";a:0:{}s:5:"legal";a:0:{}s:4:"lego";a:0:{}s:5:"lexus";a:0:{}s:4:"lgbt";a:0:{}s:4:"lidl";a:0:{}s:4:"life";a:0:{}s:13:"lifeinsurance";a:0:{}s:9:"lifestyle";a:0:{}s:8:"lighting";a:0:{}s:4:"like";a:0:{}s:5:"lilly";a:0:{}s:7:"limited";a:0:{}s:4:"limo";a:0:{}s:7:"lincoln";a:0:{}s:4:"link";a:5:{s:7:"myfritz";a:0:{}s:4:"cyon";a:0:{}s:10:"nftstorage";a:1:{s:4:"ipfs";a:0:{}}s:5:"mypep";a:0:{}s:4:"dweb";a:1:{s:1:"*";a:0:{}}}s:5:"lipsy";a:0:{}s:4:"live";a:3:{s:3:"aem";a:0:{}s:3:"hlx";a:0:{}s:3:"ewp";a:1:{s:1:"*";a:0:{}}}s:6:"living";a:0:{}s:3:"llc";a:0:{}s:3:"llp";a:0:{}s:4:"loan";a:0:{}s:5:"loans";a:0:{}s:6:"locker";a:0:{}s:5:"locus";a:0:{}s:3:"lol";a:1:{s:3:"omg";a:0:{}}s:6:"london";a:0:{}s:5:"lotte";a:0:{}s:5:"lotto";a:0:{}s:4:"love";a:0:{}s:3:"lpl";a:0:{}s:12:"lplfinancial";a:0:{}s:3:"ltd";a:0:{}s:4:"ltda";a:0:{}s:8:"lundbeck";a:0:{}s:4:"luxe";a:0:{}s:6:"luxury";a:0:{}s:6:"madrid";a:0:{}s:4:"maif";a:0:{}s:6:"maison";a:0:{}s:6:"makeup";a:0:{}s:3:"man";a:0:{}s:10:"management";a:1:{s:6:"router";a:0:{}}s:5:"mango";a:0:{}s:3:"map";a:0:{}s:6:"market";a:0:{}s:9:"marketing";a:0:{}s:7:"markets";a:0:{}s:8:"marriott";a:0:{}s:9:"marshalls";a:0:{}s:6:"mattel";a:0:{}s:3:"mba";a:0:{}s:8:"mckinsey";a:0:{}s:3:"med";a:0:{}s:5:"media";a:1:{s:6:"framer";a:0:{}}s:4:"meet";a:0:{}s:9:"melbourne";a:0:{}s:4:"meme";a:0:{}s:8:"memorial";a:0:{}s:3:"men";a:0:{}s:4:"menu";a:2:{s:5:"barsy";a:0:{}s:11:"barsyonline";a:0:{}}s:8:"merckmsd";a:0:{}s:5:"miami";a:0:{}s:9:"microsoft";a:0:{}s:4:"mini";a:0:{}s:4:"mint";a:0:{}s:3:"mit";a:0:{}s:10:"mitsubishi";a:0:{}s:3:"mlb";a:0:{}s:3:"mls";a:0:{}s:3:"mma";a:0:{}s:6:"mobile";a:0:{}s:4:"moda";a:0:{}s:3:"moe";a:0:{}s:3:"moi";a:0:{}s:3:"mom";a:1:{s:3:"ind";a:0:{}}s:6:"monash";a:0:{}s:5:"money";a:0:{}s:7:"monster";a:0:{}s:6:"mormon";a:0:{}s:8:"mortgage";a:0:{}s:6:"moscow";a:0:{}s:4:"moto";a:0:{}s:11:"motorcycles";a:0:{}s:3:"mov";a:0:{}s:5:"movie";a:0:{}s:3:"msd";a:0:{}s:3:"mtn";a:0:{}s:3:"mtr";a:0:{}s:5:"music";a:0:{}s:3:"nab";a:0:{}s:6:"nagoya";a:0:{}s:4:"navy";a:0:{}s:3:"nba";a:0:{}s:3:"nec";a:0:{}s:7:"netbank";a:0:{}s:7:"netflix";a:0:{}s:7:"network";a:5:{s:5:"alces";a:1:{s:1:"*";a:0:{}}s:2:"co";a:0:{}s:4:"arvo";a:0:{}s:7:"azimuth";a:0:{}s:4:"tlon";a:0:{}}s:7:"neustar";a:0:{}s:3:"new";a:0:{}s:4:"news";a:1:{s:10:"noticeable";a:0:{}}s:4:"next";a:0:{}s:10:"nextdirect";a:0:{}s:5:"nexus";a:0:{}s:3:"nfl";a:0:{}s:3:"ngo";a:0:{}s:3:"nhk";a:0:{}s:4:"nico";a:0:{}s:4:"nike";a:0:{}s:5:"nikon";a:0:{}s:5:"ninja";a:0:{}s:6:"nissan";a:0:{}s:6:"nissay";a:0:{}s:5:"nokia";a:0:{}s:6:"norton";a:0:{}s:3:"now";a:0:{}s:6:"nowruz";a:0:{}s:5:"nowtv";a:0:{}s:3:"nra";a:0:{}s:3:"nrw";a:0:{}s:3:"ntt";a:0:{}s:3:"nyc";a:0:{}s:3:"obi";a:0:{}s:8:"observer";a:0:{}s:6:"office";a:0:{}s:7:"okinawa";a:0:{}s:6:"olayan";a:0:{}s:11:"olayangroup";a:0:{}s:4:"ollo";a:0:{}s:5:"omega";a:0:{}s:3:"one";a:4:{s:5:"onred";a:1:{s:7:"staging";a:0:{}}s:3:"kin";a:1:{s:1:"*";a:0:{}}s:7:"service";a:0:{}s:8:"homelink";a:0:{}}s:3:"ong";a:1:{s:3:"obl";a:0:{}}s:3:"onl";a:0:{}s:6:"online";a:3:{s:4:"eero";a:0:{}s:10:"eero-stage";a:0:{}s:5:"barsy";a:0:{}}s:3:"ooo";a:0:{}s:4:"open";a:0:{}s:6:"oracle";a:0:{}s:6:"orange";a:1:{s:4:"tech";a:0:{}}s:7:"organic";a:0:{}s:7:"origins";a:0:{}s:5:"osaka";a:0:{}s:6:"otsuka";a:0:{}s:3:"ott";a:0:{}s:3:"ovh";a:1:{s:7:"nerdpol";a:0:{}}s:4:"page";a:10:{s:3:"aem";a:0:{}s:3:"hlx";a:0:{}s:4:"hlx3";a:0:{}s:10:"translated";a:0:{}s:8:"codeberg";a:0:{}s:5:"prvcy";a:0:{}s:5:"rocky";a:0:{}s:6:"magnet";a:0:{}s:4:"pdns";a:0:{}s:5:"plesk";a:0:{}}s:9:"panasonic";a:0:{}s:5:"paris";a:0:{}s:4:"pars";a:0:{}s:8:"partners";a:0:{}s:5:"parts";a:0:{}s:5:"party";a:1:{s:3:"ybo";a:0:{}}s:3:"pay";a:0:{}s:4:"pccw";a:0:{}s:3:"pet";a:0:{}s:6:"pfizer";a:0:{}s:8:"pharmacy";a:0:{}s:3:"phd";a:0:{}s:7:"philips";a:0:{}s:5:"phone";a:0:{}s:5:"photo";a:0:{}s:11:"photography";a:0:{}s:6:"photos";a:1:{s:6:"framer";a:0:{}}s:6:"physio";a:0:{}s:4:"pics";a:0:{}s:6:"pictet";a:0:{}s:8:"pictures";a:1:{i:1337;a:0:{}}s:3:"pid";a:0:{}s:3:"pin";a:0:{}s:4:"ping";a:0:{}s:4:"pink";a:0:{}s:7:"pioneer";a:0:{}s:5:"pizza";a:1:{s:5:"ngrok";a:0:{}}s:5:"place";a:1:{s:2:"co";a:0:{}}s:4:"play";a:0:{}s:11:"playstation";a:0:{}s:8:"plumbing";a:0:{}s:4:"plus";a:0:{}s:3:"pnc";a:0:{}s:4:"pohl";a:0:{}s:5:"poker";a:0:{}s:7:"politie";a:0:{}s:4:"porn";a:0:{}s:9:"pramerica";a:0:{}s:5:"praxi";a:0:{}s:5:"press";a:0:{}s:5:"prime";a:0:{}s:4:"prod";a:0:{}s:11:"productions";a:0:{}s:4:"prof";a:0:{}s:11:"progressive";a:0:{}s:5:"promo";a:0:{}s:10:"properties";a:0:{}s:8:"property";a:0:{}s:10:"protection";a:0:{}s:3:"pru";a:0:{}s:10:"prudential";a:0:{}s:3:"pub";a:3:{s:2:"id";a:1:{s:1:"*";a:0:{}}s:3:"kin";a:1:{s:1:"*";a:0:{}}s:5:"barsy";a:0:{}}s:3:"pwc";a:0:{}s:4:"qpon";a:0:{}s:6:"quebec";a:0:{}s:5:"quest";a:0:{}s:6:"racing";a:0:{}s:5:"radio";a:0:{}s:4:"read";a:0:{}s:10:"realestate";a:0:{}s:7:"realtor";a:0:{}s:6:"realty";a:0:{}s:7:"recipes";a:0:{}s:3:"red";a:0:{}s:8:"redstone";a:0:{}s:11:"redumbrella";a:0:{}s:5:"rehab";a:0:{}s:5:"reise";a:0:{}s:6:"reisen";a:0:{}s:4:"reit";a:0:{}s:8:"reliance";a:0:{}s:3:"ren";a:0:{}s:4:"rent";a:0:{}s:7:"rentals";a:0:{}s:6:"repair";a:0:{}s:6:"report";a:0:{}s:10:"republican";a:0:{}s:4:"rest";a:0:{}s:10:"restaurant";a:0:{}s:6:"review";a:1:{s:3:"ybo";a:0:{}}s:7:"reviews";a:0:{}s:7:"rexroth";a:0:{}s:4:"rich";a:0:{}s:9:"richardli";a:0:{}s:5:"ricoh";a:0:{}s:3:"ril";a:0:{}s:3:"rio";a:0:{}s:3:"rip";a:1:{s:4:"clan";a:0:{}}s:5:"rocks";a:4:{s:6:"myddns";a:0:{}s:7:"stackit";a:0:{}s:9:"lima-city";a:0:{}s:8:"webspace";a:0:{}}s:5:"rodeo";a:0:{}s:6:"rogers";a:0:{}s:4:"room";a:0:{}s:4:"rsvp";a:0:{}s:5:"rugby";a:0:{}s:4:"ruhr";a:0:{}s:3:"run";a:13:{s:2:"hs";a:0:{}s:11:"development";a:0:{}s:7:"ravendb";a:0:{}s:7:"servers";a:0:{}s:5:"build";a:1:{s:1:"*";a:0:{}}s:4:"code";a:1:{s:1:"*";a:0:{}}s:8:"database";a:1:{s:1:"*";a:0:{}}s:9:"migration";a:1:{s:1:"*";a:0:{}}s:8:"onporter";a:0:{}s:4:"repl";a:0:{}s:7:"stackit";a:0:{}s:3:"val";a:2:{s:7:"express";a:0:{}s:3:"web";a:0:{}}s:3:"wix";a:0:{}}s:3:"rwe";a:0:{}s:6:"ryukyu";a:0:{}s:8:"saarland";a:0:{}s:4:"safe";a:0:{}s:6:"safety";a:0:{}s:6:"sakura";a:0:{}s:4:"sale";a:0:{}s:5:"salon";a:0:{}s:8:"samsclub";a:0:{}s:7:"samsung";a:0:{}s:7:"sandvik";a:0:{}s:15:"sandvikcoromant";a:0:{}s:6:"sanofi";a:0:{}s:3:"sap";a:0:{}s:4:"sarl";a:0:{}s:3:"sas";a:0:{}s:4:"save";a:0:{}s:4:"saxo";a:0:{}s:3:"sbi";a:0:{}s:3:"sbs";a:0:{}s:3:"scb";a:0:{}s:10:"schaeffler";a:0:{}s:7:"schmidt";a:0:{}s:12:"scholarships";a:0:{}s:6:"school";a:0:{}s:6:"schule";a:0:{}s:7:"schwarz";a:0:{}s:7:"science";a:1:{s:3:"ybo";a:0:{}}s:4:"scot";a:2:{s:3:"edu";a:0:{}s:3:"gov";a:1:{s:7:"service";a:0:{}}}s:6:"search";a:0:{}s:4:"seat";a:0:{}s:6:"secure";a:0:{}s:8:"security";a:0:{}s:4:"seek";a:0:{}s:6:"select";a:0:{}s:5:"sener";a:0:{}s:8:"services";a:1:{s:9:"loginline";a:0:{}}s:5:"seven";a:0:{}s:3:"sew";a:0:{}s:3:"sex";a:0:{}s:4:"sexy";a:0:{}s:3:"sfr";a:0:{}s:9:"shangrila";a:0:{}s:5:"sharp";a:0:{}s:4:"shaw";a:0:{}s:5:"shell";a:0:{}s:4:"shia";a:0:{}s:7:"shiksha";a:0:{}s:5:"shoes";a:0:{}s:4:"shop";a:4:{s:4:"base";a:0:{}s:6:"hoplix";a:0:{}s:5:"barsy";a:0:{}s:11:"barsyonline";a:0:{}}s:8:"shopping";a:0:{}s:6:"shouji";a:0:{}s:4:"show";a:0:{}s:4:"silk";a:0:{}s:4:"sina";a:0:{}s:7:"singles";a:0:{}s:4:"site";a:23:{s:5:"canva";a:1:{s:2:"my";a:1:{s:1:"*";a:0:{}}}s:8:"cloudera";a:1:{s:1:"*";a:0:{}}s:6:"convex";a:0:{}s:4:"cyon";a:0:{}s:4:"fnwk";a:0:{}s:12:"folionetwork";a:0:{}s:7:"fastvps";a:0:{}s:4:"jele";a:0:{}s:7:"jouwweb";a:0:{}s:5:"lelux";a:0:{}s:9:"loginline";a:0:{}s:5:"barsy";a:0:{}s:7:"mintere";a:0:{}s:6:"notion";a:0:{}s:6:"omniwe";a:0:{}s:10:"opensocial";a:0:{}s:8:"madethis";a:0:{}s:10:"platformsh";a:1:{s:1:"*";a:0:{}}s:3:"tst";a:1:{s:1:"*";a:0:{}}s:4:"byen";a:0:{}s:4:"srht";a:0:{}s:8:"novecore";a:0:{}s:9:"wpsquared";a:0:{}}s:3:"ski";a:0:{}s:4:"skin";a:0:{}s:3:"sky";a:0:{}s:5:"skype";a:0:{}s:5:"sling";a:0:{}s:5:"smart";a:0:{}s:5:"smile";a:0:{}s:4:"sncf";a:0:{}s:6:"soccer";a:0:{}s:6:"social";a:0:{}s:8:"softbank";a:0:{}s:8:"software";a:0:{}s:4:"sohu";a:0:{}s:5:"solar";a:0:{}s:9:"solutions";a:1:{s:5:"diher";a:1:{s:1:"*";a:0:{}}}s:4:"song";a:0:{}s:4:"sony";a:0:{}s:3:"soy";a:0:{}s:3:"spa";a:0:{}s:5:"space";a:4:{s:6:"myfast";a:0:{}s:5:"heiyu";a:0:{}s:4:"uber";a:0:{}s:6:"xs4all";a:0:{}}s:5:"sport";a:0:{}s:4:"spot";a:0:{}s:3:"srl";a:0:{}s:5:"stada";a:0:{}s:7:"staples";a:0:{}s:4:"star";a:0:{}s:9:"statebank";a:0:{}s:9:"statefarm";a:0:{}s:3:"stc";a:0:{}s:8:"stcgroup";a:0:{}s:9:"stockholm";a:0:{}s:7:"storage";a:0:{}s:5:"store";a:4:{s:5:"barsy";a:0:{}s:6:"sellfy";a:0:{}s:8:"shopware";a:0:{}s:9:"storebase";a:0:{}}s:6:"stream";a:0:{}s:6:"studio";a:0:{}s:5:"study";a:0:{}s:5:"style";a:0:{}s:5:"sucks";a:0:{}s:8:"supplies";a:0:{}s:6:"supply";a:0:{}s:7:"support";a:1:{s:5:"barsy";a:0:{}}s:4:"surf";a:0:{}s:7:"surgery";a:0:{}s:6:"suzuki";a:0:{}s:6:"swatch";a:0:{}s:5:"swiss";a:0:{}s:6:"sydney";a:0:{}s:7:"systems";a:1:{s:11:"knightpoint";a:0:{}}s:3:"tab";a:0:{}s:6:"taipei";a:0:{}s:4:"talk";a:0:{}s:6:"taobao";a:0:{}s:6:"target";a:0:{}s:10:"tatamotors";a:0:{}s:5:"tatar";a:0:{}s:6:"tattoo";a:0:{}s:3:"tax";a:0:{}s:4:"taxi";a:0:{}s:3:"tci";a:0:{}s:3:"tdk";a:0:{}s:4:"team";a:2:{s:9:"discourse";a:0:{}s:8:"jelastic";a:0:{}}s:4:"tech";a:1:{s:10:"cleverapps";a:0:{}}s:10:"technology";a:1:{s:2:"co";a:0:{}}s:7:"temasek";a:0:{}s:6:"tennis";a:0:{}s:4:"teva";a:0:{}s:3:"thd";a:0:{}s:7:"theater";a:0:{}s:7:"theatre";a:0:{}s:4:"tiaa";a:0:{}s:7:"tickets";a:0:{}s:6:"tienda";a:0:{}s:4:"tips";a:0:{}s:5:"tires";a:0:{}s:5:"tirol";a:0:{}s:6:"tjmaxx";a:0:{}s:3:"tjx";a:0:{}s:6:"tkmaxx";a:0:{}s:5:"tmall";a:0:{}s:5:"today";a:1:{s:12:"prequalifyme";a:0:{}}s:5:"tokyo";a:0:{}s:5:"tools";a:0:{}s:3:"top";a:3:{s:7:"now-dns";a:0:{}s:5:"ntdll";a:0:{}s:4:"wadl";a:1:{s:1:"*";a:0:{}}}s:5:"toray";a:0:{}s:7:"toshiba";a:0:{}s:5:"total";a:0:{}s:5:"tours";a:0:{}s:4:"town";a:0:{}s:6:"toyota";a:0:{}s:4:"toys";a:0:{}s:5:"trade";a:1:{s:3:"ybo";a:0:{}}s:7:"trading";a:0:{}s:8:"training";a:0:{}s:6:"travel";a:0:{}s:9:"travelers";a:0:{}s:18:"travelersinsurance";a:0:{}s:5:"trust";a:0:{}s:3:"trv";a:0:{}s:4:"tube";a:0:{}s:3:"tui";a:0:{}s:5:"tunes";a:0:{}s:5:"tushu";a:0:{}s:3:"tvs";a:0:{}s:5:"ubank";a:0:{}s:3:"ubs";a:0:{}s:6:"unicom";a:0:{}s:10:"university";a:0:{}s:3:"uno";a:0:{}s:3:"uol";a:0:{}s:3:"ups";a:0:{}s:9:"vacations";a:0:{}s:4:"vana";a:0:{}s:8:"vanguard";a:0:{}s:5:"vegas";a:0:{}s:8:"ventures";a:0:{}s:8:"verisign";a:0:{}s:12:"versicherung";a:0:{}s:3:"vet";a:0:{}s:6:"viajes";a:0:{}s:5:"video";a:0:{}s:3:"vig";a:0:{}s:6:"viking";a:0:{}s:6:"villas";a:0:{}s:3:"vin";a:0:{}s:3:"vip";a:0:{}s:6:"virgin";a:0:{}s:4:"visa";a:0:{}s:6:"vision";a:0:{}s:4:"viva";a:0:{}s:4:"vivo";a:0:{}s:10:"vlaanderen";a:0:{}s:5:"vodka";a:1:{s:3:"aaa";a:0:{}}s:5:"volvo";a:0:{}s:4:"vote";a:0:{}s:6:"voting";a:0:{}s:4:"voto";a:0:{}s:6:"voyage";a:0:{}s:5:"wales";a:0:{}s:7:"walmart";a:0:{}s:6:"walter";a:0:{}s:4:"wang";a:0:{}s:7:"wanggou";a:0:{}s:5:"watch";a:0:{}s:7:"watches";a:0:{}s:7:"weather";a:0:{}s:14:"weatherchannel";a:0:{}s:6:"webcam";a:0:{}s:5:"weber";a:0:{}s:7:"website";a:1:{s:6:"framer";a:0:{}}s:3:"wed";a:0:{}s:7:"wedding";a:0:{}s:5:"weibo";a:0:{}s:4:"weir";a:0:{}s:7:"whoswho";a:0:{}s:4:"wien";a:0:{}s:4:"wiki";a:1:{s:6:"framer";a:0:{}}s:11:"williamhill";a:0:{}s:3:"win";a:0:{}s:7:"windows";a:0:{}s:4:"wine";a:0:{}s:7:"winners";a:0:{}s:3:"wme";a:0:{}s:13:"wolterskluwer";a:0:{}s:8:"woodside";a:0:{}s:4:"work";a:1:{s:7:"corpnet";a:0:{}}s:5:"works";a:0:{}s:5:"world";a:0:{}s:3:"wow";a:0:{}s:3:"wtc";a:0:{}s:3:"wtf";a:0:{}s:4:"xbox";a:0:{}s:5:"xerox";a:0:{}s:6:"xihuan";a:0:{}s:3:"xin";a:0:{}s:9:"कॉम";a:0:{}s:9:"セール";a:0:{}s:6:"佛山";a:0:{}s:6:"慈善";a:0:{}s:6:"集团";a:0:{}s:6:"在线";a:0:{}s:6:"点看";a:0:{}s:9:"คอม";a:0:{}s:6:"八卦";a:0:{}s:8:"موقع";a:0:{}s:6:"公益";a:0:{}s:6:"公司";a:0:{}s:12:"香格里拉";a:0:{}s:6:"网站";a:0:{}s:6:"移动";a:0:{}s:9:"我爱你";a:0:{}s:12:"москва";a:0:{}s:14:"католик";a:0:{}s:12:"онлайн";a:0:{}s:8:"сайт";a:0:{}s:6:"联通";a:0:{}s:6:"קום";a:0:{}s:6:"时尚";a:0:{}s:6:"微博";a:0:{}s:9:"淡马锡";a:0:{}s:18:"ファッション";a:0:{}s:6:"орг";a:0:{}s:9:"नेट";a:0:{}s:9:"ストア";a:0:{}s:12:"アマゾン";a:0:{}s:6:"삼성";a:0:{}s:6:"商标";a:0:{}s:6:"商店";a:0:{}s:6:"商城";a:0:{}s:8:"дети";a:0:{}s:12:"ポイント";a:0:{}s:6:"新闻";a:0:{}s:6:"家電";a:0:{}s:6:"كوم";a:0:{}s:9:"中文网";a:0:{}s:6:"中信";a:0:{}s:6:"娱乐";a:0:{}s:6:"谷歌";a:0:{}s:12:"電訊盈科";a:0:{}s:6:"购物";a:0:{}s:12:"クラウド";a:0:{}s:6:"通販";a:0:{}s:6:"网店";a:0:{}s:15:"संगठन";a:0:{}s:6:"餐厅";a:0:{}s:6:"网络";a:0:{}s:6:"ком";a:0:{}s:9:"亚马逊";a:0:{}s:6:"食品";a:0:{}s:9:"飞利浦";a:0:{}s:6:"手机";a:0:{}s:12:"ارامكو";a:0:{}s:14:"العليان";a:0:{}s:10:"بازار";a:0:{}s:12:"ابوظبي";a:0:{}s:14:"كاثوليك";a:0:{}s:10:"همراه";a:0:{}s:6:"닷컴";a:0:{}s:6:"政府";a:0:{}s:8:"شبكة";a:0:{}s:8:"بيتك";a:0:{}s:6:"عرب";a:0:{}s:6:"机构";a:0:{}s:12:"组织机构";a:0:{}s:6:"健康";a:0:{}s:6:"招聘";a:0:{}s:6:"рус";a:10:{s:6:"биз";a:0:{}s:6:"ком";a:0:{}s:8:"крым";a:0:{}s:6:"мир";a:0:{}s:6:"мск";a:0:{}s:6:"орг";a:0:{}s:12:"самара";a:0:{}s:8:"сочи";a:0:{}s:6:"спб";a:0:{}s:2:"я";a:0:{}}s:6:"大拿";a:0:{}s:9:"みんな";a:0:{}s:12:"グーグル";a:0:{}s:6:"世界";a:0:{}s:6:"書籍";a:0:{}s:6:"网址";a:0:{}s:6:"닷넷";a:0:{}s:6:"コム";a:0:{}s:9:"天主教";a:0:{}s:6:"游戏";a:0:{}s:17:"vermögensberater";a:0:{}s:18:"vermögensberatung";a:0:{}s:6:"企业";a:0:{}s:6:"信息";a:0:{}s:15:"嘉里大酒店";a:0:{}s:6:"嘉里";a:0:{}s:6:"广东";a:0:{}s:6:"政务";a:0:{}s:3:"xyz";a:5:{s:8:"blogsite";a:0:{}s:9:"localzone";a:0:{}s:8:"crafting";a:0:{}s:5:"zapto";a:0:{}s:7:"telebit";a:1:{s:1:"*";a:0:{}}}s:6:"yachts";a:0:{}s:5:"yahoo";a:0:{}s:7:"yamaxun";a:0:{}s:6:"yandex";a:0:{}s:9:"yodobashi";a:0:{}s:4:"yoga";a:0:{}s:8:"yokohama";a:0:{}s:3:"you";a:0:{}s:7:"youtube";a:0:{}s:3:"yun";a:0:{}s:6:"zappos";a:0:{}s:4:"zara";a:0:{}s:4:"zero";a:0:{}s:3:"zip";a:0:{}s:4:"zone";a:5:{s:7:"cloud66";a:0:{}s:2:"hs";a:0:{}s:6:"triton";a:1:{s:1:"*";a:0:{}}s:7:"stackit";a:0:{}s:4:"lima";a:0:{}}s:7:"zuerich";a:0:{}} \ No newline at end of file diff --git a/data/public_suffix_list.dat b/data/public_suffix_list.dat index 237e159..ef56847 100644 --- a/data/public_suffix_list.dat +++ b/data/public_suffix_list.dat @@ -380,11 +380,29 @@ org.bi // biz : https://en.wikipedia.org/wiki/.biz biz -// bj : https://en.wikipedia.org/wiki/.bj +// bj : https://nic.bj/bj-suffixes.txt +// submitted by registry bj -asso.bj -barreau.bj -gouv.bj +africa.bj +agro.bj +architectes.bj +assur.bj +avocats.bj +co.bj +com.bj +eco.bj +econo.bj +edu.bj +info.bj +loisirs.bj +money.bj +net.bj +org.bj +ote.bj +resto.bj +restaurant.bj +tourism.bj +univ.bj // bm : http://www.bermudanic.bm/dnr-text.txt bm @@ -657,7 +675,6 @@ mil.by // second-level domain, but it's being used as one (see www.google.com.by and // www.yahoo.com.by, for example), so we list it here for safety's sake. com.by - // http://hoster.by/ of.by @@ -997,13 +1014,12 @@ net.et // eu : https://en.wikipedia.org/wiki/.eu eu -// fi : https://en.wikipedia.org/wiki/.fi +// fi : https://www.iana.org/domains/root/db/fi.html fi -// aland.fi : https://en.wikipedia.org/wiki/.ax +// aland.fi : https://www.iana.org/domains/root/db/ax.html // This domain is being phased out in favor of .ax. As there are still many // domains under aland.fi, we still keep it on the list until aland.fi is // completely removed. -// TODO: Check for updates (expected to be phased out around Q1/2009) aland.fi // fj : http://domains.fj/ @@ -1033,8 +1049,7 @@ fm // fo : https://en.wikipedia.org/wiki/.fo fo -// fr : http://www.afnic.fr/ -// domaines descriptifs : https://www.afnic.fr/medias/documents/Cadre_legal/Afnic_Naming_Policy_12122016_VEN.pdf +// fr : https://www.afnic.fr/ https://www.afnic.fr/wp-media/uploads/2022/12/afnic-naming-policy-2023-01-01.pdf fr asso.fr com.fr @@ -1042,22 +1057,11 @@ gouv.fr nom.fr prd.fr tm.fr -// domaines sectoriels : https://www.afnic.fr/en/products-and-services/the-fr-tld/sector-based-fr-domains-4.html -aeroport.fr -avocat.fr +// Other SLDs now selfmanaged out of AFNIC range. Former "domaines sectoriels", still registration suffixes avoues.fr cci.fr -chambagri.fr -chirurgiens-dentistes.fr -experts-comptables.fr -geometre-expert.fr greta.fr huissier-justice.fr -medecin.fr -notaires.fr -pharmacien.fr -port.fr -veterinaire.fr // ga : https://en.wikipedia.org/wiki/.ga ga @@ -1315,7 +1319,9 @@ web.id ie gov.ie -// il : http://www.isoc.org.il/domains/ +// il : http://www.isoc.org.il/domains/ +// see also: https://en.isoc.org.il/il-cctld/registration-rules +// ISOC-IL (operated by .il Registry) il ac.il co.il @@ -1325,6 +1331,16 @@ k12.il muni.il net.il org.il +// xn--4dbrk0ce ("Israel", Hebrew) : IL +ישראל +// xn--4dbgdty6c.xn--4dbrk0ce. +אקדמיה.ישראל +// xn--5dbhl8d.xn--4dbrk0ce. +ישוב.ישראל +// xn--8dbq2a.xn--4dbrk0ce. +צהל.ישראל +// xn--hebda8b.xn--4dbrk0ce. +ממשל.ישראל // im : https://www.nic.im/ // Submitted by registry @@ -1340,22 +1356,51 @@ tt.im tv.im // in : https://en.wikipedia.org/wiki/.in -// see also: https://registry.in/Policies +// see also: https://registry.in/policies // Please note, that nic.in is not an official eTLD, but used by most // government institutions. in +5g.in +6g.in +ac.in +ai.in +am.in +bihar.in +biz.in +business.in +ca.in +cn.in co.in +com.in +coop.in +cs.in +delhi.in +dr.in +edu.in +er.in firm.in -net.in -org.in gen.in +gov.in +gujarat.in ind.in +info.in +int.in +internet.in +io.in +me.in +mil.in +net.in nic.in -ac.in -edu.in +org.in +pg.in +post.in +pro.in res.in -gov.in -mil.in +travel.in +tv.in +uk.in +up.in +us.in // info : https://en.wikipedia.org/wiki/.info info @@ -4011,555 +4056,8 @@ ac.mu co.mu or.mu -// museum : http://about.museum/naming/ -// http://index.museum/ +// museum : https://welcome.museum/wp-content/uploads/2018/05/20180525-Registration-Policy-MUSEUM-EN_VF-2.pdf https://welcome.museum/buy-your-dot-museum-2/ museum -academy.museum -agriculture.museum -air.museum -airguard.museum -alabama.museum -alaska.museum -amber.museum -ambulance.museum -american.museum -americana.museum -americanantiques.museum -americanart.museum -amsterdam.museum -and.museum -annefrank.museum -anthro.museum -anthropology.museum -antiques.museum -aquarium.museum -arboretum.museum -archaeological.museum -archaeology.museum -architecture.museum -art.museum -artanddesign.museum -artcenter.museum -artdeco.museum -arteducation.museum -artgallery.museum -arts.museum -artsandcrafts.museum -asmatart.museum -assassination.museum -assisi.museum -association.museum -astronomy.museum -atlanta.museum -austin.museum -australia.museum -automotive.museum -aviation.museum -axis.museum -badajoz.museum -baghdad.museum -bahn.museum -bale.museum -baltimore.museum -barcelona.museum -baseball.museum -basel.museum -baths.museum -bauern.museum -beauxarts.museum -beeldengeluid.museum -bellevue.museum -bergbau.museum -berkeley.museum -berlin.museum -bern.museum -bible.museum -bilbao.museum -bill.museum -birdart.museum -birthplace.museum -bonn.museum -boston.museum -botanical.museum -botanicalgarden.museum -botanicgarden.museum -botany.museum -brandywinevalley.museum -brasil.museum -bristol.museum -british.museum -britishcolumbia.museum -broadcast.museum -brunel.museum -brussel.museum -brussels.museum -bruxelles.museum -building.museum -burghof.museum -bus.museum -bushey.museum -cadaques.museum -california.museum -cambridge.museum -can.museum -canada.museum -capebreton.museum -carrier.museum -cartoonart.museum -casadelamoneda.museum -castle.museum -castres.museum -celtic.museum -center.museum -chattanooga.museum -cheltenham.museum -chesapeakebay.museum -chicago.museum -children.museum -childrens.museum -childrensgarden.museum -chiropractic.museum -chocolate.museum -christiansburg.museum -cincinnati.museum -cinema.museum -circus.museum -civilisation.museum -civilization.museum -civilwar.museum -clinton.museum -clock.museum -coal.museum -coastaldefence.museum -cody.museum -coldwar.museum -collection.museum -colonialwilliamsburg.museum -coloradoplateau.museum -columbia.museum -columbus.museum -communication.museum -communications.museum -community.museum -computer.museum -computerhistory.museum -comunicações.museum -contemporary.museum -contemporaryart.museum -convent.museum -copenhagen.museum -corporation.museum -correios-e-telecomunicações.museum -corvette.museum -costume.museum -countryestate.museum -county.museum -crafts.museum -cranbrook.museum -creation.museum -cultural.museum -culturalcenter.museum -culture.museum -cyber.museum -cymru.museum -dali.museum -dallas.museum -database.museum -ddr.museum -decorativearts.museum -delaware.museum -delmenhorst.museum -denmark.museum -depot.museum -design.museum -detroit.museum -dinosaur.museum -discovery.museum -dolls.museum -donostia.museum -durham.museum -eastafrica.museum -eastcoast.museum -education.museum -educational.museum -egyptian.museum -eisenbahn.museum -elburg.museum -elvendrell.museum -embroidery.museum -encyclopedic.museum -england.museum -entomology.museum -environment.museum -environmentalconservation.museum -epilepsy.museum -essex.museum -estate.museum -ethnology.museum -exeter.museum -exhibition.museum -family.museum -farm.museum -farmequipment.museum -farmers.museum -farmstead.museum -field.museum -figueres.museum -filatelia.museum -film.museum -fineart.museum -finearts.museum -finland.museum -flanders.museum -florida.museum -force.museum -fortmissoula.museum -fortworth.museum -foundation.museum -francaise.museum -frankfurt.museum -franziskaner.museum -freemasonry.museum -freiburg.museum -fribourg.museum -frog.museum -fundacio.museum -furniture.museum -gallery.museum -garden.museum -gateway.museum -geelvinck.museum -gemological.museum -geology.museum -georgia.museum -giessen.museum -glas.museum -glass.museum -gorge.museum -grandrapids.museum -graz.museum -guernsey.museum -halloffame.museum -hamburg.museum -handson.museum -harvestcelebration.museum -hawaii.museum -health.museum -heimatunduhren.museum -hellas.museum -helsinki.museum -hembygdsforbund.museum -heritage.museum -histoire.museum -historical.museum -historicalsociety.museum -historichouses.museum -historisch.museum -historisches.museum -history.museum -historyofscience.museum -horology.museum -house.museum -humanities.museum -illustration.museum -imageandsound.museum -indian.museum -indiana.museum -indianapolis.museum -indianmarket.museum -intelligence.museum -interactive.museum -iraq.museum -iron.museum -isleofman.museum -jamison.museum -jefferson.museum -jerusalem.museum -jewelry.museum -jewish.museum -jewishart.museum -jfk.museum -journalism.museum -judaica.museum -judygarland.museum -juedisches.museum -juif.museum -karate.museum -karikatur.museum -kids.museum -koebenhavn.museum -koeln.museum -kunst.museum -kunstsammlung.museum -kunstunddesign.museum -labor.museum -labour.museum -lajolla.museum -lancashire.museum -landes.museum -lans.museum -läns.museum -larsson.museum -lewismiller.museum -lincoln.museum -linz.museum -living.museum -livinghistory.museum -localhistory.museum -london.museum -losangeles.museum -louvre.museum -loyalist.museum -lucerne.museum -luxembourg.museum -luzern.museum -mad.museum -madrid.museum -mallorca.museum -manchester.museum -mansion.museum -mansions.museum -manx.museum -marburg.museum -maritime.museum -maritimo.museum -maryland.museum -marylhurst.museum -media.museum -medical.museum -medizinhistorisches.museum -meeres.museum -memorial.museum -mesaverde.museum -michigan.museum -midatlantic.museum -military.museum -mill.museum -miners.museum -mining.museum -minnesota.museum -missile.museum -missoula.museum -modern.museum -moma.museum -money.museum -monmouth.museum -monticello.museum -montreal.museum -moscow.museum -motorcycle.museum -muenchen.museum -muenster.museum -mulhouse.museum -muncie.museum -museet.museum -museumcenter.museum -museumvereniging.museum -music.museum -national.museum -nationalfirearms.museum -nationalheritage.museum -nativeamerican.museum -naturalhistory.museum -naturalhistorymuseum.museum -naturalsciences.museum -nature.museum -naturhistorisches.museum -natuurwetenschappen.museum -naumburg.museum -naval.museum -nebraska.museum -neues.museum -newhampshire.museum -newjersey.museum -newmexico.museum -newport.museum -newspaper.museum -newyork.museum -niepce.museum -norfolk.museum -north.museum -nrw.museum -nyc.museum -nyny.museum -oceanographic.museum -oceanographique.museum -omaha.museum -online.museum -ontario.museum -openair.museum -oregon.museum -oregontrail.museum -otago.museum -oxford.museum -pacific.museum -paderborn.museum -palace.museum -paleo.museum -palmsprings.museum -panama.museum -paris.museum -pasadena.museum -pharmacy.museum -philadelphia.museum -philadelphiaarea.museum -philately.museum -phoenix.museum -photography.museum -pilots.museum -pittsburgh.museum -planetarium.museum -plantation.museum -plants.museum -plaza.museum -portal.museum -portland.museum -portlligat.museum -posts-and-telecommunications.museum -preservation.museum -presidio.museum -press.museum -project.museum -public.museum -pubol.museum -quebec.museum -railroad.museum -railway.museum -research.museum -resistance.museum -riodejaneiro.museum -rochester.museum -rockart.museum -roma.museum -russia.museum -saintlouis.museum -salem.museum -salvadordali.museum -salzburg.museum -sandiego.museum -sanfrancisco.museum -santabarbara.museum -santacruz.museum -santafe.museum -saskatchewan.museum -satx.museum -savannahga.museum -schlesisches.museum -schoenbrunn.museum -schokoladen.museum -school.museum -schweiz.museum -science.museum -scienceandhistory.museum -scienceandindustry.museum -sciencecenter.museum -sciencecenters.museum -science-fiction.museum -sciencehistory.museum -sciences.museum -sciencesnaturelles.museum -scotland.museum -seaport.museum -settlement.museum -settlers.museum -shell.museum -sherbrooke.museum -sibenik.museum -silk.museum -ski.museum -skole.museum -society.museum -sologne.museum -soundandvision.museum -southcarolina.museum -southwest.museum -space.museum -spy.museum -square.museum -stadt.museum -stalbans.museum -starnberg.museum -state.museum -stateofdelaware.museum -station.museum -steam.museum -steiermark.museum -stjohn.museum -stockholm.museum -stpetersburg.museum -stuttgart.museum -suisse.museum -surgeonshall.museum -surrey.museum -svizzera.museum -sweden.museum -sydney.museum -tank.museum -tcm.museum -technology.museum -telekommunikation.museum -television.museum -texas.museum -textile.museum -theater.museum -time.museum -timekeeping.museum -topology.museum -torino.museum -touch.museum -town.museum -transport.museum -tree.museum -trolley.museum -trust.museum -trustee.museum -uhren.museum -ulm.museum -undersea.museum -university.museum -usa.museum -usantiques.museum -usarts.museum -uscountryestate.museum -usculture.museum -usdecorativearts.museum -usgarden.museum -ushistory.museum -ushuaia.museum -uslivinghistory.museum -utah.museum -uvic.museum -valley.museum -vantaa.museum -versailles.museum -viking.museum -village.museum -virginia.museum -virtual.museum -virtuel.museum -vlaanderen.museum -volkenkunde.museum -wales.museum -wallonie.museum -war.museum -washingtondc.museum -watchandclock.museum -watch-and-clock.museum -western.museum -westfalen.museum -whaling.museum -wildlife.museum -williamsburg.museum -windmill.museum -workshop.museum -york.museum -yorkshire.museum -yosemite.museum -youth.museum -zoological.museum -zoology.museum -ירושלים.museum -иком.museum // mv : https://en.wikipedia.org/wiki/.mv // "mv" included because, contra Wikipedia, google.mv exists. @@ -5635,52 +5133,60 @@ turystyka.pl // Government domains gov.pl ap.gov.pl +griw.gov.pl ic.gov.pl is.gov.pl -us.gov.pl kmpsp.gov.pl +konsulat.gov.pl kppsp.gov.pl -kwpsp.gov.pl -psp.gov.pl -wskr.gov.pl kwp.gov.pl +kwpsp.gov.pl +mup.gov.pl mw.gov.pl -ug.gov.pl -um.gov.pl -umig.gov.pl -ugim.gov.pl -upow.gov.pl -uw.gov.pl -starostwo.gov.pl +oia.gov.pl +oirm.gov.pl +oke.gov.pl +oow.gov.pl +oschr.gov.pl +oum.gov.pl pa.gov.pl +pinb.gov.pl +piw.gov.pl po.gov.pl +pr.gov.pl +psp.gov.pl psse.gov.pl pup.gov.pl rzgw.gov.pl sa.gov.pl +sdn.gov.pl +sko.gov.pl so.gov.pl sr.gov.pl -wsa.gov.pl -sko.gov.pl +starostwo.gov.pl +ug.gov.pl +ugim.gov.pl +um.gov.pl +umig.gov.pl +upow.gov.pl +uppo.gov.pl +us.gov.pl +uw.gov.pl uzs.gov.pl +wif.gov.pl wiih.gov.pl winb.gov.pl -pinb.gov.pl wios.gov.pl witd.gov.pl -wzmiuw.gov.pl -piw.gov.pl wiw.gov.pl -griw.gov.pl -wif.gov.pl -oum.gov.pl -sdn.gov.pl -zp.gov.pl -uppo.gov.pl -mup.gov.pl +wkz.gov.pl +wsa.gov.pl +wskr.gov.pl +wsse.gov.pl wuoz.gov.pl -konsulat.gov.pl -oirm.gov.pl +wzmiuw.gov.pl +zp.gov.pl +zpisdn.gov.pl // pl regional domains (http://www.dns.pl/english/index.html) augustow.pl babia-gora.pl @@ -5802,7 +5308,7 @@ zarow.pl zgora.pl zgorzelec.pl -// pm : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf +// pm : https://www.afnic.fr/wp-media/uploads/2022/12/afnic-naming-policy-2023-01-01.pdf pm // pn : http://www.government.pn/PnRegistry/policies.htm @@ -5900,7 +5406,7 @@ net.qa org.qa sch.qa -// re : http://www.afnic.re/obtenir/chartes/nommage-re/annexe-descriptifs +// re : https://www.afnic.fr/wp-media/uploads/2022/12/afnic-naming-policy-2023-01-01.pdf re asso.re com.re @@ -6157,7 +5663,7 @@ td // http://www.telnic.org/ tel -// tf : https://en.wikipedia.org/wiki/.tf +// tf : https://www.afnic.fr/wp-media/uploads/2022/12/afnic-naming-policy-2023-01-01.pdf tf // tg : https://en.wikipedia.org/wiki/.tg @@ -6365,6 +5871,7 @@ kiev.ua kirovograd.ua km.ua kr.ua +kropyvnytskyi.ua krym.ua ks.ua kv.ua @@ -6372,6 +5879,7 @@ kyiv.ua lg.ua lt.ua lugansk.ua +luhansk.ua lutsk.ua lv.ua lviv.ua @@ -6395,11 +5903,13 @@ te.ua ternopil.ua uz.ua uzhgorod.ua +uzhhorod.ua vinnica.ua vinnytsia.ua vn.ua volyn.ua yalta.ua +zakarpattia.ua zaporizhzhe.ua zaporizhzhia.ua zhitomir.ua @@ -6511,7 +6021,6 @@ k12.ca.us k12.co.us k12.ct.us k12.dc.us -k12.de.us k12.fl.us k12.ga.us k12.gu.us @@ -6753,20 +6262,89 @@ k12.vi net.vi org.vi -// vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp +// vn : https://www.vnnic.vn/en/domain/cctld-vn +// https://vnnic.vn/sites/default/files/tailieu/vn.cctld.domains.txt vn +ac.vn +ai.vn +biz.vn com.vn -net.vn -org.vn edu.vn gov.vn -int.vn -ac.vn -biz.vn +health.vn +id.vn info.vn +int.vn +io.vn name.vn +net.vn +org.vn pro.vn -health.vn + +// vn geographical names +angiang.vn +bacgiang.vn +backan.vn +baclieu.vn +bacninh.vn +baria-vungtau.vn +bentre.vn +binhdinh.vn +binhduong.vn +binhphuoc.vn +binhthuan.vn +camau.vn +cantho.vn +caobang.vn +daklak.vn +daknong.vn +danang.vn +dienbien.vn +dongnai.vn +dongthap.vn +gialai.vn +hagiang.vn +haiduong.vn +haiphong.vn +hanam.vn +hanoi.vn +hatinh.vn +haugiang.vn +hoabinh.vn +hungyen.vn +khanhhoa.vn +kiengiang.vn +kontum.vn +laichau.vn +lamdong.vn +langson.vn +laocai.vn +longan.vn +namdinh.vn +nghean.vn +ninhbinh.vn +ninhthuan.vn +phutho.vn +phuyen.vn +quangbinh.vn +quangnam.vn +quangngai.vn +quangninh.vn +quangtri.vn +soctrang.vn +sonla.vn +tayninh.vn +thaibinh.vn +thainguyen.vn +thanhhoa.vn +thanhphohochiminh.vn +thuathienhue.vn +tiengiang.vn +travinh.vn +tuyenquang.vn +vinhlong.vn +vinhphuc.vn +yenbai.vn // vu : https://en.wikipedia.org/wiki/.vu // http://www.vunic.vu/ @@ -6776,7 +6354,7 @@ edu.vu net.vu org.vu -// wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf +// wf : https://www.afnic.fr/wp-media/uploads/2022/12/afnic-naming-policy-2023-01-01.pdf wf // ws : https://en.wikipedia.org/wiki/.ws @@ -6788,7 +6366,7 @@ org.ws gov.ws edu.ws -// yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf +// yt : https://www.afnic.fr/wp-media/uploads/2022/12/afnic-naming-policy-2023-01-01.pdf yt // IDN ccTLDs @@ -7130,3471 +6708,4470 @@ org.zw // newGTLDs -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2022-03-27T15:13:38Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-06-29T15:13:33Z // This list is auto-generated, don't edit it manually. -// aaa : 2015-02-26 American Automobile Association, Inc. +// aaa : American Automobile Association, Inc. +// https://www.iana.org/domains/root/db/aaa.html aaa -// aarp : 2015-05-21 AARP +// aarp : AARP +// https://www.iana.org/domains/root/db/aarp.html aarp -// abarth : 2015-07-30 Fiat Chrysler Automobiles N.V. -abarth - -// abb : 2014-10-24 ABB Ltd +// abb : ABB Ltd +// https://www.iana.org/domains/root/db/abb.html abb -// abbott : 2014-07-24 Abbott Laboratories, Inc. +// abbott : Abbott Laboratories, Inc. +// https://www.iana.org/domains/root/db/abbott.html abbott -// abbvie : 2015-07-30 AbbVie Inc. +// abbvie : AbbVie Inc. +// https://www.iana.org/domains/root/db/abbvie.html abbvie -// abc : 2015-07-30 Disney Enterprises, Inc. +// abc : Disney Enterprises, Inc. +// https://www.iana.org/domains/root/db/abc.html abc -// able : 2015-06-25 Able Inc. +// able : Able Inc. +// https://www.iana.org/domains/root/db/able.html able -// abogado : 2014-04-24 Registry Services, LLC +// abogado : Registry Services, LLC +// https://www.iana.org/domains/root/db/abogado.html abogado -// abudhabi : 2015-07-30 Abu Dhabi Systems and Information Centre +// abudhabi : Abu Dhabi Systems and Information Centre +// https://www.iana.org/domains/root/db/abudhabi.html abudhabi -// academy : 2013-11-07 Binky Moon, LLC +// academy : Binky Moon, LLC +// https://www.iana.org/domains/root/db/academy.html academy -// accenture : 2014-08-15 Accenture plc +// accenture : Accenture plc +// https://www.iana.org/domains/root/db/accenture.html accenture -// accountant : 2014-11-20 dot Accountant Limited +// accountant : dot Accountant Limited +// https://www.iana.org/domains/root/db/accountant.html accountant -// accountants : 2014-03-20 Binky Moon, LLC +// accountants : Binky Moon, LLC +// https://www.iana.org/domains/root/db/accountants.html accountants -// aco : 2015-01-08 ACO Severin Ahlmann GmbH & Co. KG +// aco : ACO Severin Ahlmann GmbH & Co. KG +// https://www.iana.org/domains/root/db/aco.html aco -// actor : 2013-12-12 Dog Beach, LLC +// actor : Dog Beach, LLC +// https://www.iana.org/domains/root/db/actor.html actor -// adac : 2015-07-16 Allgemeiner Deutscher Automobil-Club e.V. (ADAC) -adac - -// ads : 2014-12-04 Charleston Road Registry Inc. +// ads : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/ads.html ads -// adult : 2014-10-16 ICM Registry AD LLC +// adult : ICM Registry AD LLC +// https://www.iana.org/domains/root/db/adult.html adult -// aeg : 2015-03-19 Aktiebolaget Electrolux +// aeg : Aktiebolaget Electrolux +// https://www.iana.org/domains/root/db/aeg.html aeg -// aetna : 2015-05-21 Aetna Life Insurance Company +// aetna : Aetna Life Insurance Company +// https://www.iana.org/domains/root/db/aetna.html aetna -// afl : 2014-10-02 Australian Football League +// afl : Australian Football League +// https://www.iana.org/domains/root/db/afl.html afl -// africa : 2014-03-24 ZA Central Registry NPC trading as Registry.Africa +// africa : ZA Central Registry NPC trading as Registry.Africa +// https://www.iana.org/domains/root/db/africa.html africa -// agakhan : 2015-04-23 Fondation Aga Khan (Aga Khan Foundation) +// agakhan : Fondation Aga Khan (Aga Khan Foundation) +// https://www.iana.org/domains/root/db/agakhan.html agakhan -// agency : 2013-11-14 Binky Moon, LLC +// agency : Binky Moon, LLC +// https://www.iana.org/domains/root/db/agency.html agency -// aig : 2014-12-18 American International Group, Inc. +// aig : American International Group, Inc. +// https://www.iana.org/domains/root/db/aig.html aig -// airbus : 2015-07-30 Airbus S.A.S. +// airbus : Airbus S.A.S. +// https://www.iana.org/domains/root/db/airbus.html airbus -// airforce : 2014-03-06 Dog Beach, LLC +// airforce : Dog Beach, LLC +// https://www.iana.org/domains/root/db/airforce.html airforce -// airtel : 2014-10-24 Bharti Airtel Limited +// airtel : Bharti Airtel Limited +// https://www.iana.org/domains/root/db/airtel.html airtel -// akdn : 2015-04-23 Fondation Aga Khan (Aga Khan Foundation) +// akdn : Fondation Aga Khan (Aga Khan Foundation) +// https://www.iana.org/domains/root/db/akdn.html akdn -// alfaromeo : 2015-07-31 Fiat Chrysler Automobiles N.V. -alfaromeo - -// alibaba : 2015-01-15 Alibaba Group Holding Limited +// alibaba : Alibaba Group Holding Limited +// https://www.iana.org/domains/root/db/alibaba.html alibaba -// alipay : 2015-01-15 Alibaba Group Holding Limited +// alipay : Alibaba Group Holding Limited +// https://www.iana.org/domains/root/db/alipay.html alipay -// allfinanz : 2014-07-03 Allfinanz Deutsche Vermögensberatung Aktiengesellschaft +// allfinanz : Allfinanz Deutsche Vermögensberatung Aktiengesellschaft +// https://www.iana.org/domains/root/db/allfinanz.html allfinanz -// allstate : 2015-07-31 Allstate Fire and Casualty Insurance Company +// allstate : Allstate Fire and Casualty Insurance Company +// https://www.iana.org/domains/root/db/allstate.html allstate -// ally : 2015-06-18 Ally Financial Inc. +// ally : Ally Financial Inc. +// https://www.iana.org/domains/root/db/ally.html ally -// alsace : 2014-07-02 Region Grand Est +// alsace : Region Grand Est +// https://www.iana.org/domains/root/db/alsace.html alsace -// alstom : 2015-07-30 ALSTOM +// alstom : ALSTOM +// https://www.iana.org/domains/root/db/alstom.html alstom -// amazon : 2019-12-19 Amazon Registry Services, Inc. +// amazon : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/amazon.html amazon -// americanexpress : 2015-07-31 American Express Travel Related Services Company, Inc. +// americanexpress : American Express Travel Related Services Company, Inc. +// https://www.iana.org/domains/root/db/americanexpress.html americanexpress -// americanfamily : 2015-07-23 AmFam, Inc. +// americanfamily : AmFam, Inc. +// https://www.iana.org/domains/root/db/americanfamily.html americanfamily -// amex : 2015-07-31 American Express Travel Related Services Company, Inc. +// amex : American Express Travel Related Services Company, Inc. +// https://www.iana.org/domains/root/db/amex.html amex -// amfam : 2015-07-23 AmFam, Inc. +// amfam : AmFam, Inc. +// https://www.iana.org/domains/root/db/amfam.html amfam -// amica : 2015-05-28 Amica Mutual Insurance Company +// amica : Amica Mutual Insurance Company +// https://www.iana.org/domains/root/db/amica.html amica -// amsterdam : 2014-07-24 Gemeente Amsterdam +// amsterdam : Gemeente Amsterdam +// https://www.iana.org/domains/root/db/amsterdam.html amsterdam -// analytics : 2014-12-18 Campus IP LLC +// analytics : Campus IP LLC +// https://www.iana.org/domains/root/db/analytics.html analytics -// android : 2014-08-07 Charleston Road Registry Inc. +// android : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/android.html android -// anquan : 2015-01-08 Beijing Qihu Keji Co., Ltd. +// anquan : Beijing Qihu Keji Co., Ltd. +// https://www.iana.org/domains/root/db/anquan.html anquan -// anz : 2015-07-31 Australia and New Zealand Banking Group Limited +// anz : Australia and New Zealand Banking Group Limited +// https://www.iana.org/domains/root/db/anz.html anz -// aol : 2015-09-17 Oath Inc. +// aol : Yahoo Inc. +// https://www.iana.org/domains/root/db/aol.html aol -// apartments : 2014-12-11 Binky Moon, LLC +// apartments : Binky Moon, LLC +// https://www.iana.org/domains/root/db/apartments.html apartments -// app : 2015-05-14 Charleston Road Registry Inc. +// app : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/app.html app -// apple : 2015-05-14 Apple Inc. +// apple : Apple Inc. +// https://www.iana.org/domains/root/db/apple.html apple -// aquarelle : 2014-07-24 Aquarelle.com +// aquarelle : Aquarelle.com +// https://www.iana.org/domains/root/db/aquarelle.html aquarelle -// arab : 2015-11-12 League of Arab States +// arab : League of Arab States +// https://www.iana.org/domains/root/db/arab.html arab -// aramco : 2014-11-20 Aramco Services Company +// aramco : Aramco Services Company +// https://www.iana.org/domains/root/db/aramco.html aramco -// archi : 2014-02-06 Afilias Limited +// archi : Identity Digital Limited +// https://www.iana.org/domains/root/db/archi.html archi -// army : 2014-03-06 Dog Beach, LLC +// army : Dog Beach, LLC +// https://www.iana.org/domains/root/db/army.html army -// art : 2016-03-24 UK Creative Ideas Limited +// art : UK Creative Ideas Limited +// https://www.iana.org/domains/root/db/art.html art -// arte : 2014-12-11 Association Relative à la Télévision Européenne G.E.I.E. +// arte : Association Relative à la Télévision Européenne G.E.I.E. +// https://www.iana.org/domains/root/db/arte.html arte -// asda : 2015-07-31 Wal-Mart Stores, Inc. +// asda : Wal-Mart Stores, Inc. +// https://www.iana.org/domains/root/db/asda.html asda -// associates : 2014-03-06 Binky Moon, LLC +// associates : Binky Moon, LLC +// https://www.iana.org/domains/root/db/associates.html associates -// athleta : 2015-07-30 The Gap, Inc. +// athleta : The Gap, Inc. +// https://www.iana.org/domains/root/db/athleta.html athleta -// attorney : 2014-03-20 Dog Beach, LLC +// attorney : Dog Beach, LLC +// https://www.iana.org/domains/root/db/attorney.html attorney -// auction : 2014-03-20 Dog Beach, LLC +// auction : Dog Beach, LLC +// https://www.iana.org/domains/root/db/auction.html auction -// audi : 2015-05-21 AUDI Aktiengesellschaft +// audi : AUDI Aktiengesellschaft +// https://www.iana.org/domains/root/db/audi.html audi -// audible : 2015-06-25 Amazon Registry Services, Inc. +// audible : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/audible.html audible -// audio : 2014-03-20 XYZ.COM LLC +// audio : XYZ.COM LLC +// https://www.iana.org/domains/root/db/audio.html audio -// auspost : 2015-08-13 Australian Postal Corporation +// auspost : Australian Postal Corporation +// https://www.iana.org/domains/root/db/auspost.html auspost -// author : 2014-12-18 Amazon Registry Services, Inc. +// author : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/author.html author -// auto : 2014-11-13 XYZ.COM LLC +// auto : XYZ.COM LLC +// https://www.iana.org/domains/root/db/auto.html auto -// autos : 2014-01-09 XYZ.COM LLC +// autos : XYZ.COM LLC +// https://www.iana.org/domains/root/db/autos.html autos -// avianca : 2015-01-08 Avianca Holdings S.A. -avianca - -// aws : 2015-06-25 AWS Registry LLC +// aws : AWS Registry LLC +// https://www.iana.org/domains/root/db/aws.html aws -// axa : 2013-12-19 AXA Group Operations SAS +// axa : AXA Group Operations SAS +// https://www.iana.org/domains/root/db/axa.html axa -// azure : 2014-12-18 Microsoft Corporation +// azure : Microsoft Corporation +// https://www.iana.org/domains/root/db/azure.html azure -// baby : 2015-04-09 XYZ.COM LLC +// baby : XYZ.COM LLC +// https://www.iana.org/domains/root/db/baby.html baby -// baidu : 2015-01-08 Baidu, Inc. +// baidu : Baidu, Inc. +// https://www.iana.org/domains/root/db/baidu.html baidu -// banamex : 2015-07-30 Citigroup Inc. +// banamex : Citigroup Inc. +// https://www.iana.org/domains/root/db/banamex.html banamex -// bananarepublic : 2015-07-31 The Gap, Inc. -bananarepublic - -// band : 2014-06-12 Dog Beach, LLC +// band : Dog Beach, LLC +// https://www.iana.org/domains/root/db/band.html band -// bank : 2014-09-25 fTLD Registry Services LLC +// bank : fTLD Registry Services LLC +// https://www.iana.org/domains/root/db/bank.html bank -// bar : 2013-12-12 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable +// bar : Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable +// https://www.iana.org/domains/root/db/bar.html bar -// barcelona : 2014-07-24 Municipi de Barcelona +// barcelona : Municipi de Barcelona +// https://www.iana.org/domains/root/db/barcelona.html barcelona -// barclaycard : 2014-11-20 Barclays Bank PLC +// barclaycard : Barclays Bank PLC +// https://www.iana.org/domains/root/db/barclaycard.html barclaycard -// barclays : 2014-11-20 Barclays Bank PLC +// barclays : Barclays Bank PLC +// https://www.iana.org/domains/root/db/barclays.html barclays -// barefoot : 2015-06-11 Gallo Vineyards, Inc. +// barefoot : Gallo Vineyards, Inc. +// https://www.iana.org/domains/root/db/barefoot.html barefoot -// bargains : 2013-11-14 Binky Moon, LLC +// bargains : Binky Moon, LLC +// https://www.iana.org/domains/root/db/bargains.html bargains -// baseball : 2015-10-29 MLB Advanced Media DH, LLC +// baseball : MLB Advanced Media DH, LLC +// https://www.iana.org/domains/root/db/baseball.html baseball -// basketball : 2015-08-20 Fédération Internationale de Basketball (FIBA) +// basketball : Fédération Internationale de Basketball (FIBA) +// https://www.iana.org/domains/root/db/basketball.html basketball -// bauhaus : 2014-04-17 Werkhaus GmbH +// bauhaus : Werkhaus GmbH +// https://www.iana.org/domains/root/db/bauhaus.html bauhaus -// bayern : 2014-01-23 Bayern Connect GmbH +// bayern : Bayern Connect GmbH +// https://www.iana.org/domains/root/db/bayern.html bayern -// bbc : 2014-12-18 British Broadcasting Corporation +// bbc : British Broadcasting Corporation +// https://www.iana.org/domains/root/db/bbc.html bbc -// bbt : 2015-07-23 BB&T Corporation +// bbt : BB&T Corporation +// https://www.iana.org/domains/root/db/bbt.html bbt -// bbva : 2014-10-02 BANCO BILBAO VIZCAYA ARGENTARIA, S.A. +// bbva : BANCO BILBAO VIZCAYA ARGENTARIA, S.A. +// https://www.iana.org/domains/root/db/bbva.html bbva -// bcg : 2015-04-02 The Boston Consulting Group, Inc. +// bcg : The Boston Consulting Group, Inc. +// https://www.iana.org/domains/root/db/bcg.html bcg -// bcn : 2014-07-24 Municipi de Barcelona +// bcn : Municipi de Barcelona +// https://www.iana.org/domains/root/db/bcn.html bcn -// beats : 2015-05-14 Beats Electronics, LLC +// beats : Beats Electronics, LLC +// https://www.iana.org/domains/root/db/beats.html beats -// beauty : 2015-12-03 XYZ.COM LLC +// beauty : XYZ.COM LLC +// https://www.iana.org/domains/root/db/beauty.html beauty -// beer : 2014-01-09 Registry Services, LLC +// beer : Registry Services, LLC +// https://www.iana.org/domains/root/db/beer.html beer -// bentley : 2014-12-18 Bentley Motors Limited +// bentley : Bentley Motors Limited +// https://www.iana.org/domains/root/db/bentley.html bentley -// berlin : 2013-10-31 dotBERLIN GmbH & Co. KG +// berlin : dotBERLIN GmbH & Co. KG +// https://www.iana.org/domains/root/db/berlin.html berlin -// best : 2013-12-19 BestTLD Pty Ltd +// best : BestTLD Pty Ltd +// https://www.iana.org/domains/root/db/best.html best -// bestbuy : 2015-07-31 BBY Solutions, Inc. +// bestbuy : BBY Solutions, Inc. +// https://www.iana.org/domains/root/db/bestbuy.html bestbuy -// bet : 2015-05-07 Afilias Limited +// bet : Identity Digital Limited +// https://www.iana.org/domains/root/db/bet.html bet -// bharti : 2014-01-09 Bharti Enterprises (Holding) Private Limited +// bharti : Bharti Enterprises (Holding) Private Limited +// https://www.iana.org/domains/root/db/bharti.html bharti -// bible : 2014-06-19 American Bible Society +// bible : American Bible Society +// https://www.iana.org/domains/root/db/bible.html bible -// bid : 2013-12-19 dot Bid Limited +// bid : dot Bid Limited +// https://www.iana.org/domains/root/db/bid.html bid -// bike : 2013-08-27 Binky Moon, LLC +// bike : Binky Moon, LLC +// https://www.iana.org/domains/root/db/bike.html bike -// bing : 2014-12-18 Microsoft Corporation +// bing : Microsoft Corporation +// https://www.iana.org/domains/root/db/bing.html bing -// bingo : 2014-12-04 Binky Moon, LLC +// bingo : Binky Moon, LLC +// https://www.iana.org/domains/root/db/bingo.html bingo -// bio : 2014-03-06 Afilias Limited +// bio : Identity Digital Limited +// https://www.iana.org/domains/root/db/bio.html bio -// black : 2014-01-16 Afilias Limited +// black : Identity Digital Limited +// https://www.iana.org/domains/root/db/black.html black -// blackfriday : 2014-01-16 UNR Corp. +// blackfriday : Registry Services, LLC +// https://www.iana.org/domains/root/db/blackfriday.html blackfriday -// blockbuster : 2015-07-30 Dish DBS Corporation +// blockbuster : Dish DBS Corporation +// https://www.iana.org/domains/root/db/blockbuster.html blockbuster -// blog : 2015-05-14 Knock Knock WHOIS There, LLC +// blog : Knock Knock WHOIS There, LLC +// https://www.iana.org/domains/root/db/blog.html blog -// bloomberg : 2014-07-17 Bloomberg IP Holdings LLC +// bloomberg : Bloomberg IP Holdings LLC +// https://www.iana.org/domains/root/db/bloomberg.html bloomberg -// blue : 2013-11-07 Afilias Limited +// blue : Identity Digital Limited +// https://www.iana.org/domains/root/db/blue.html blue -// bms : 2014-10-30 Bristol-Myers Squibb Company +// bms : Bristol-Myers Squibb Company +// https://www.iana.org/domains/root/db/bms.html bms -// bmw : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft +// bmw : Bayerische Motoren Werke Aktiengesellschaft +// https://www.iana.org/domains/root/db/bmw.html bmw -// bnpparibas : 2014-05-29 BNP Paribas +// bnpparibas : BNP Paribas +// https://www.iana.org/domains/root/db/bnpparibas.html bnpparibas -// boats : 2014-12-04 XYZ.COM LLC +// boats : XYZ.COM LLC +// https://www.iana.org/domains/root/db/boats.html boats -// boehringer : 2015-07-09 Boehringer Ingelheim International GmbH +// boehringer : Boehringer Ingelheim International GmbH +// https://www.iana.org/domains/root/db/boehringer.html boehringer -// bofa : 2015-07-31 Bank of America Corporation +// bofa : Bank of America Corporation +// https://www.iana.org/domains/root/db/bofa.html bofa -// bom : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br +// bom : Núcleo de Informação e Coordenação do Ponto BR - NIC.br +// https://www.iana.org/domains/root/db/bom.html bom -// bond : 2014-06-05 ShortDot SA +// bond : ShortDot SA +// https://www.iana.org/domains/root/db/bond.html bond -// boo : 2014-01-30 Charleston Road Registry Inc. +// boo : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/boo.html boo -// book : 2015-08-27 Amazon Registry Services, Inc. +// book : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/book.html book -// booking : 2015-07-16 Booking.com B.V. +// booking : Booking.com B.V. +// https://www.iana.org/domains/root/db/booking.html booking -// bosch : 2015-06-18 Robert Bosch GMBH +// bosch : Robert Bosch GMBH +// https://www.iana.org/domains/root/db/bosch.html bosch -// bostik : 2015-05-28 Bostik SA +// bostik : Bostik SA +// https://www.iana.org/domains/root/db/bostik.html bostik -// boston : 2015-12-10 Registry Services, LLC +// boston : Registry Services, LLC +// https://www.iana.org/domains/root/db/boston.html boston -// bot : 2014-12-18 Amazon Registry Services, Inc. +// bot : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/bot.html bot -// boutique : 2013-11-14 Binky Moon, LLC +// boutique : Binky Moon, LLC +// https://www.iana.org/domains/root/db/boutique.html boutique -// box : 2015-11-12 Intercap Registry Inc. +// box : Intercap Registry Inc. +// https://www.iana.org/domains/root/db/box.html box -// bradesco : 2014-12-18 Banco Bradesco S.A. +// bradesco : Banco Bradesco S.A. +// https://www.iana.org/domains/root/db/bradesco.html bradesco -// bridgestone : 2014-12-18 Bridgestone Corporation +// bridgestone : Bridgestone Corporation +// https://www.iana.org/domains/root/db/bridgestone.html bridgestone -// broadway : 2014-12-22 Celebrate Broadway, Inc. +// broadway : Celebrate Broadway, Inc. +// https://www.iana.org/domains/root/db/broadway.html broadway -// broker : 2014-12-11 Dog Beach, LLC +// broker : Dog Beach, LLC +// https://www.iana.org/domains/root/db/broker.html broker -// brother : 2015-01-29 Brother Industries, Ltd. +// brother : Brother Industries, Ltd. +// https://www.iana.org/domains/root/db/brother.html brother -// brussels : 2014-02-06 DNS.be vzw +// brussels : DNS.be vzw +// https://www.iana.org/domains/root/db/brussels.html brussels -// bugatti : 2015-07-23 Bugatti International SA -bugatti - -// build : 2013-11-07 Plan Bee LLC +// build : Plan Bee LLC +// https://www.iana.org/domains/root/db/build.html build -// builders : 2013-11-07 Binky Moon, LLC +// builders : Binky Moon, LLC +// https://www.iana.org/domains/root/db/builders.html builders -// business : 2013-11-07 Binky Moon, LLC +// business : Binky Moon, LLC +// https://www.iana.org/domains/root/db/business.html business -// buy : 2014-12-18 Amazon Registry Services, Inc. +// buy : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/buy.html buy -// buzz : 2013-10-02 DOTSTRATEGY CO. +// buzz : DOTSTRATEGY CO. +// https://www.iana.org/domains/root/db/buzz.html buzz -// bzh : 2014-02-27 Association www.bzh +// bzh : Association www.bzh +// https://www.iana.org/domains/root/db/bzh.html bzh -// cab : 2013-10-24 Binky Moon, LLC +// cab : Binky Moon, LLC +// https://www.iana.org/domains/root/db/cab.html cab -// cafe : 2015-02-11 Binky Moon, LLC +// cafe : Binky Moon, LLC +// https://www.iana.org/domains/root/db/cafe.html cafe -// cal : 2014-07-24 Charleston Road Registry Inc. +// cal : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/cal.html cal -// call : 2014-12-18 Amazon Registry Services, Inc. +// call : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/call.html call -// calvinklein : 2015-07-30 PVH gTLD Holdings LLC +// calvinklein : PVH gTLD Holdings LLC +// https://www.iana.org/domains/root/db/calvinklein.html calvinklein -// cam : 2016-04-21 Cam Connecting SARL +// cam : Cam Connecting SARL +// https://www.iana.org/domains/root/db/cam.html cam -// camera : 2013-08-27 Binky Moon, LLC +// camera : Binky Moon, LLC +// https://www.iana.org/domains/root/db/camera.html camera -// camp : 2013-11-07 Binky Moon, LLC +// camp : Binky Moon, LLC +// https://www.iana.org/domains/root/db/camp.html camp -// cancerresearch : 2014-05-15 Australian Cancer Research Foundation -cancerresearch - -// canon : 2014-09-12 Canon Inc. +// canon : Canon Inc. +// https://www.iana.org/domains/root/db/canon.html canon -// capetown : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry +// capetown : ZA Central Registry NPC trading as ZA Central Registry +// https://www.iana.org/domains/root/db/capetown.html capetown -// capital : 2014-03-06 Binky Moon, LLC +// capital : Binky Moon, LLC +// https://www.iana.org/domains/root/db/capital.html capital -// capitalone : 2015-08-06 Capital One Financial Corporation +// capitalone : Capital One Financial Corporation +// https://www.iana.org/domains/root/db/capitalone.html capitalone -// car : 2015-01-22 XYZ.COM LLC +// car : XYZ.COM LLC +// https://www.iana.org/domains/root/db/car.html car -// caravan : 2013-12-12 Caravan International, Inc. +// caravan : Caravan International, Inc. +// https://www.iana.org/domains/root/db/caravan.html caravan -// cards : 2013-12-05 Binky Moon, LLC +// cards : Binky Moon, LLC +// https://www.iana.org/domains/root/db/cards.html cards -// care : 2014-03-06 Binky Moon, LLC +// care : Binky Moon, LLC +// https://www.iana.org/domains/root/db/care.html care -// career : 2013-10-09 dotCareer LLC +// career : dotCareer LLC +// https://www.iana.org/domains/root/db/career.html career -// careers : 2013-10-02 Binky Moon, LLC +// careers : Binky Moon, LLC +// https://www.iana.org/domains/root/db/careers.html careers -// cars : 2014-11-13 XYZ.COM LLC +// cars : XYZ.COM LLC +// https://www.iana.org/domains/root/db/cars.html cars -// casa : 2013-11-21 Registry Services, LLC +// casa : Registry Services, LLC +// https://www.iana.org/domains/root/db/casa.html casa -// case : 2015-09-03 Helium TLDs Ltd +// case : Digity, LLC +// https://www.iana.org/domains/root/db/case.html case -// cash : 2014-03-06 Binky Moon, LLC +// cash : Binky Moon, LLC +// https://www.iana.org/domains/root/db/cash.html cash -// casino : 2014-12-18 Binky Moon, LLC +// casino : Binky Moon, LLC +// https://www.iana.org/domains/root/db/casino.html casino -// catering : 2013-12-05 Binky Moon, LLC +// catering : Binky Moon, LLC +// https://www.iana.org/domains/root/db/catering.html catering -// catholic : 2015-10-21 Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication) +// catholic : Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication) +// https://www.iana.org/domains/root/db/catholic.html catholic -// cba : 2014-06-26 COMMONWEALTH BANK OF AUSTRALIA +// cba : COMMONWEALTH BANK OF AUSTRALIA +// https://www.iana.org/domains/root/db/cba.html cba -// cbn : 2014-08-22 The Christian Broadcasting Network, Inc. +// cbn : The Christian Broadcasting Network, Inc. +// https://www.iana.org/domains/root/db/cbn.html cbn -// cbre : 2015-07-02 CBRE, Inc. +// cbre : CBRE, Inc. +// https://www.iana.org/domains/root/db/cbre.html cbre -// cbs : 2015-08-06 CBS Domains Inc. -cbs - -// center : 2013-11-07 Binky Moon, LLC +// center : Binky Moon, LLC +// https://www.iana.org/domains/root/db/center.html center -// ceo : 2013-11-07 CEOTLD Pty Ltd +// ceo : XYZ.COM LLC +// https://www.iana.org/domains/root/db/ceo.html ceo -// cern : 2014-06-05 European Organization for Nuclear Research ("CERN") +// cern : European Organization for Nuclear Research ("CERN") +// https://www.iana.org/domains/root/db/cern.html cern -// cfa : 2014-08-28 CFA Institute +// cfa : CFA Institute +// https://www.iana.org/domains/root/db/cfa.html cfa -// cfd : 2014-12-11 ShortDot SA +// cfd : ShortDot SA +// https://www.iana.org/domains/root/db/cfd.html cfd -// chanel : 2015-04-09 Chanel International B.V. +// chanel : Chanel International B.V. +// https://www.iana.org/domains/root/db/chanel.html chanel -// channel : 2014-05-08 Charleston Road Registry Inc. +// channel : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/channel.html channel -// charity : 2018-04-11 Binky Moon, LLC +// charity : Public Interest Registry +// https://www.iana.org/domains/root/db/charity.html charity -// chase : 2015-04-30 JPMorgan Chase Bank, National Association +// chase : JPMorgan Chase Bank, National Association +// https://www.iana.org/domains/root/db/chase.html chase -// chat : 2014-12-04 Binky Moon, LLC +// chat : Binky Moon, LLC +// https://www.iana.org/domains/root/db/chat.html chat -// cheap : 2013-11-14 Binky Moon, LLC +// cheap : Binky Moon, LLC +// https://www.iana.org/domains/root/db/cheap.html cheap -// chintai : 2015-06-11 CHINTAI Corporation +// chintai : CHINTAI Corporation +// https://www.iana.org/domains/root/db/chintai.html chintai -// christmas : 2013-11-21 XYZ.COM LLC +// christmas : XYZ.COM LLC +// https://www.iana.org/domains/root/db/christmas.html christmas -// chrome : 2014-07-24 Charleston Road Registry Inc. +// chrome : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/chrome.html chrome -// church : 2014-02-06 Binky Moon, LLC +// church : Binky Moon, LLC +// https://www.iana.org/domains/root/db/church.html church -// cipriani : 2015-02-19 Hotel Cipriani Srl +// cipriani : Hotel Cipriani Srl +// https://www.iana.org/domains/root/db/cipriani.html cipriani -// circle : 2014-12-18 Amazon Registry Services, Inc. +// circle : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/circle.html circle -// cisco : 2014-12-22 Cisco Technology, Inc. +// cisco : Cisco Technology, Inc. +// https://www.iana.org/domains/root/db/cisco.html cisco -// citadel : 2015-07-23 Citadel Domain LLC +// citadel : Citadel Domain LLC +// https://www.iana.org/domains/root/db/citadel.html citadel -// citi : 2015-07-30 Citigroup Inc. +// citi : Citigroup Inc. +// https://www.iana.org/domains/root/db/citi.html citi -// citic : 2014-01-09 CITIC Group Corporation +// citic : CITIC Group Corporation +// https://www.iana.org/domains/root/db/citic.html citic -// city : 2014-05-29 Binky Moon, LLC +// city : Binky Moon, LLC +// https://www.iana.org/domains/root/db/city.html city -// cityeats : 2014-12-11 Lifestyle Domain Holdings, Inc. -cityeats - -// claims : 2014-03-20 Binky Moon, LLC +// claims : Binky Moon, LLC +// https://www.iana.org/domains/root/db/claims.html claims -// cleaning : 2013-12-05 Binky Moon, LLC +// cleaning : Binky Moon, LLC +// https://www.iana.org/domains/root/db/cleaning.html cleaning -// click : 2014-06-05 UNR Corp. +// click : Internet Naming Company LLC +// https://www.iana.org/domains/root/db/click.html click -// clinic : 2014-03-20 Binky Moon, LLC +// clinic : Binky Moon, LLC +// https://www.iana.org/domains/root/db/clinic.html clinic -// clinique : 2015-10-01 The Estée Lauder Companies Inc. +// clinique : The Estée Lauder Companies Inc. +// https://www.iana.org/domains/root/db/clinique.html clinique -// clothing : 2013-08-27 Binky Moon, LLC +// clothing : Binky Moon, LLC +// https://www.iana.org/domains/root/db/clothing.html clothing -// cloud : 2015-04-16 Aruba PEC S.p.A. +// cloud : Aruba PEC S.p.A. +// https://www.iana.org/domains/root/db/cloud.html cloud -// club : 2013-11-08 Registry Services, LLC +// club : Registry Services, LLC +// https://www.iana.org/domains/root/db/club.html club -// clubmed : 2015-06-25 Club Méditerranée S.A. +// clubmed : Club Méditerranée S.A. +// https://www.iana.org/domains/root/db/clubmed.html clubmed -// coach : 2014-10-09 Binky Moon, LLC +// coach : Binky Moon, LLC +// https://www.iana.org/domains/root/db/coach.html coach -// codes : 2013-10-31 Binky Moon, LLC +// codes : Binky Moon, LLC +// https://www.iana.org/domains/root/db/codes.html codes -// coffee : 2013-10-17 Binky Moon, LLC +// coffee : Binky Moon, LLC +// https://www.iana.org/domains/root/db/coffee.html coffee -// college : 2014-01-16 XYZ.COM LLC +// college : XYZ.COM LLC +// https://www.iana.org/domains/root/db/college.html college -// cologne : 2014-02-05 dotKoeln GmbH +// cologne : dotKoeln GmbH +// https://www.iana.org/domains/root/db/cologne.html cologne -// comcast : 2015-07-23 Comcast IP Holdings I, LLC -comcast - -// commbank : 2014-06-26 COMMONWEALTH BANK OF AUSTRALIA +// commbank : COMMONWEALTH BANK OF AUSTRALIA +// https://www.iana.org/domains/root/db/commbank.html commbank -// community : 2013-12-05 Binky Moon, LLC +// community : Binky Moon, LLC +// https://www.iana.org/domains/root/db/community.html community -// company : 2013-11-07 Binky Moon, LLC +// company : Binky Moon, LLC +// https://www.iana.org/domains/root/db/company.html company -// compare : 2015-10-08 Registry Services, LLC +// compare : Registry Services, LLC +// https://www.iana.org/domains/root/db/compare.html compare -// computer : 2013-10-24 Binky Moon, LLC +// computer : Binky Moon, LLC +// https://www.iana.org/domains/root/db/computer.html computer -// comsec : 2015-01-08 VeriSign, Inc. +// comsec : VeriSign, Inc. +// https://www.iana.org/domains/root/db/comsec.html comsec -// condos : 2013-12-05 Binky Moon, LLC +// condos : Binky Moon, LLC +// https://www.iana.org/domains/root/db/condos.html condos -// construction : 2013-09-16 Binky Moon, LLC +// construction : Binky Moon, LLC +// https://www.iana.org/domains/root/db/construction.html construction -// consulting : 2013-12-05 Dog Beach, LLC +// consulting : Dog Beach, LLC +// https://www.iana.org/domains/root/db/consulting.html consulting -// contact : 2015-01-08 Dog Beach, LLC +// contact : Dog Beach, LLC +// https://www.iana.org/domains/root/db/contact.html contact -// contractors : 2013-09-10 Binky Moon, LLC +// contractors : Binky Moon, LLC +// https://www.iana.org/domains/root/db/contractors.html contractors -// cooking : 2013-11-21 Registry Services, LLC +// cooking : Registry Services, LLC +// https://www.iana.org/domains/root/db/cooking.html cooking -// cookingchannel : 2015-07-02 Lifestyle Domain Holdings, Inc. -cookingchannel - -// cool : 2013-11-14 Binky Moon, LLC +// cool : Binky Moon, LLC +// https://www.iana.org/domains/root/db/cool.html cool -// corsica : 2014-09-25 Collectivité de Corse +// corsica : Collectivité de Corse +// https://www.iana.org/domains/root/db/corsica.html corsica -// country : 2013-12-19 DotCountry LLC +// country : Internet Naming Company LLC +// https://www.iana.org/domains/root/db/country.html country -// coupon : 2015-02-26 Amazon Registry Services, Inc. +// coupon : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/coupon.html coupon -// coupons : 2015-03-26 Binky Moon, LLC +// coupons : Binky Moon, LLC +// https://www.iana.org/domains/root/db/coupons.html coupons -// courses : 2014-12-04 OPEN UNIVERSITIES AUSTRALIA PTY LTD +// courses : Registry Services, LLC +// https://www.iana.org/domains/root/db/courses.html courses -// cpa : 2019-06-10 American Institute of Certified Public Accountants +// cpa : American Institute of Certified Public Accountants +// https://www.iana.org/domains/root/db/cpa.html cpa -// credit : 2014-03-20 Binky Moon, LLC +// credit : Binky Moon, LLC +// https://www.iana.org/domains/root/db/credit.html credit -// creditcard : 2014-03-20 Binky Moon, LLC +// creditcard : Binky Moon, LLC +// https://www.iana.org/domains/root/db/creditcard.html creditcard -// creditunion : 2015-01-22 DotCooperation LLC +// creditunion : DotCooperation LLC +// https://www.iana.org/domains/root/db/creditunion.html creditunion -// cricket : 2014-10-09 dot Cricket Limited +// cricket : dot Cricket Limited +// https://www.iana.org/domains/root/db/cricket.html cricket -// crown : 2014-10-24 Crown Equipment Corporation +// crown : Crown Equipment Corporation +// https://www.iana.org/domains/root/db/crown.html crown -// crs : 2014-04-03 Federated Co-operatives Limited +// crs : Federated Co-operatives Limited +// https://www.iana.org/domains/root/db/crs.html crs -// cruise : 2015-12-10 Viking River Cruises (Bermuda) Ltd. +// cruise : Viking River Cruises (Bermuda) Ltd. +// https://www.iana.org/domains/root/db/cruise.html cruise -// cruises : 2013-12-05 Binky Moon, LLC +// cruises : Binky Moon, LLC +// https://www.iana.org/domains/root/db/cruises.html cruises -// cuisinella : 2014-04-03 SCHMIDT GROUPE S.A.S. +// cuisinella : SCHMIDT GROUPE S.A.S. +// https://www.iana.org/domains/root/db/cuisinella.html cuisinella -// cymru : 2014-05-08 Nominet UK +// cymru : Nominet UK +// https://www.iana.org/domains/root/db/cymru.html cymru -// cyou : 2015-01-22 ShortDot SA +// cyou : ShortDot SA +// https://www.iana.org/domains/root/db/cyou.html cyou -// dabur : 2014-02-06 Dabur India Limited +// dabur : Dabur India Limited +// https://www.iana.org/domains/root/db/dabur.html dabur -// dad : 2014-01-23 Charleston Road Registry Inc. +// dad : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/dad.html dad -// dance : 2013-10-24 Dog Beach, LLC +// dance : Dog Beach, LLC +// https://www.iana.org/domains/root/db/dance.html dance -// data : 2016-06-02 Dish DBS Corporation +// data : Dish DBS Corporation +// https://www.iana.org/domains/root/db/data.html data -// date : 2014-11-20 dot Date Limited +// date : dot Date Limited +// https://www.iana.org/domains/root/db/date.html date -// dating : 2013-12-05 Binky Moon, LLC +// dating : Binky Moon, LLC +// https://www.iana.org/domains/root/db/dating.html dating -// datsun : 2014-03-27 NISSAN MOTOR CO., LTD. +// datsun : NISSAN MOTOR CO., LTD. +// https://www.iana.org/domains/root/db/datsun.html datsun -// day : 2014-01-30 Charleston Road Registry Inc. +// day : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/day.html day -// dclk : 2014-11-20 Charleston Road Registry Inc. +// dclk : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/dclk.html dclk -// dds : 2015-05-07 Registry Services, LLC +// dds : Registry Services, LLC +// https://www.iana.org/domains/root/db/dds.html dds -// deal : 2015-06-25 Amazon Registry Services, Inc. +// deal : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/deal.html deal -// dealer : 2014-12-22 Intercap Registry Inc. +// dealer : Intercap Registry Inc. +// https://www.iana.org/domains/root/db/dealer.html dealer -// deals : 2014-05-22 Binky Moon, LLC +// deals : Binky Moon, LLC +// https://www.iana.org/domains/root/db/deals.html deals -// degree : 2014-03-06 Dog Beach, LLC +// degree : Dog Beach, LLC +// https://www.iana.org/domains/root/db/degree.html degree -// delivery : 2014-09-11 Binky Moon, LLC +// delivery : Binky Moon, LLC +// https://www.iana.org/domains/root/db/delivery.html delivery -// dell : 2014-10-24 Dell Inc. +// dell : Dell Inc. +// https://www.iana.org/domains/root/db/dell.html dell -// deloitte : 2015-07-31 Deloitte Touche Tohmatsu +// deloitte : Deloitte Touche Tohmatsu +// https://www.iana.org/domains/root/db/deloitte.html deloitte -// delta : 2015-02-19 Delta Air Lines, Inc. +// delta : Delta Air Lines, Inc. +// https://www.iana.org/domains/root/db/delta.html delta -// democrat : 2013-10-24 Dog Beach, LLC +// democrat : Dog Beach, LLC +// https://www.iana.org/domains/root/db/democrat.html democrat -// dental : 2014-03-20 Binky Moon, LLC +// dental : Binky Moon, LLC +// https://www.iana.org/domains/root/db/dental.html dental -// dentist : 2014-03-20 Dog Beach, LLC +// dentist : Dog Beach, LLC +// https://www.iana.org/domains/root/db/dentist.html dentist -// desi : 2013-11-14 Desi Networks LLC +// desi +// https://www.iana.org/domains/root/db/desi.html desi -// design : 2014-11-07 Registry Services, LLC +// design : Registry Services, LLC +// https://www.iana.org/domains/root/db/design.html design -// dev : 2014-10-16 Charleston Road Registry Inc. +// dev : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/dev.html dev -// dhl : 2015-07-23 Deutsche Post AG +// dhl : Deutsche Post AG +// https://www.iana.org/domains/root/db/dhl.html dhl -// diamonds : 2013-09-22 Binky Moon, LLC +// diamonds : Binky Moon, LLC +// https://www.iana.org/domains/root/db/diamonds.html diamonds -// diet : 2014-06-26 XYZ.COM LLC +// diet : XYZ.COM LLC +// https://www.iana.org/domains/root/db/diet.html diet -// digital : 2014-03-06 Binky Moon, LLC +// digital : Binky Moon, LLC +// https://www.iana.org/domains/root/db/digital.html digital -// direct : 2014-04-10 Binky Moon, LLC +// direct : Binky Moon, LLC +// https://www.iana.org/domains/root/db/direct.html direct -// directory : 2013-09-20 Binky Moon, LLC +// directory : Binky Moon, LLC +// https://www.iana.org/domains/root/db/directory.html directory -// discount : 2014-03-06 Binky Moon, LLC +// discount : Binky Moon, LLC +// https://www.iana.org/domains/root/db/discount.html discount -// discover : 2015-07-23 Discover Financial Services +// discover : Discover Financial Services +// https://www.iana.org/domains/root/db/discover.html discover -// dish : 2015-07-30 Dish DBS Corporation +// dish : Dish DBS Corporation +// https://www.iana.org/domains/root/db/dish.html dish -// diy : 2015-11-05 Lifestyle Domain Holdings, Inc. +// diy : Internet Naming Company LLC +// https://www.iana.org/domains/root/db/diy.html diy -// dnp : 2013-12-13 Dai Nippon Printing Co., Ltd. +// dnp : Dai Nippon Printing Co., Ltd. +// https://www.iana.org/domains/root/db/dnp.html dnp -// docs : 2014-10-16 Charleston Road Registry Inc. +// docs : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/docs.html docs -// doctor : 2016-06-02 Binky Moon, LLC +// doctor : Binky Moon, LLC +// https://www.iana.org/domains/root/db/doctor.html doctor -// dog : 2014-12-04 Binky Moon, LLC +// dog : Binky Moon, LLC +// https://www.iana.org/domains/root/db/dog.html dog -// domains : 2013-10-17 Binky Moon, LLC +// domains : Binky Moon, LLC +// https://www.iana.org/domains/root/db/domains.html domains -// dot : 2015-05-21 Dish DBS Corporation +// dot : Dish DBS Corporation +// https://www.iana.org/domains/root/db/dot.html dot -// download : 2014-11-20 dot Support Limited +// download : dot Support Limited +// https://www.iana.org/domains/root/db/download.html download -// drive : 2015-03-05 Charleston Road Registry Inc. +// drive : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/drive.html drive -// dtv : 2015-06-04 Dish DBS Corporation +// dtv : Dish DBS Corporation +// https://www.iana.org/domains/root/db/dtv.html dtv -// dubai : 2015-01-01 Dubai Smart Government Department +// dubai : Dubai Smart Government Department +// https://www.iana.org/domains/root/db/dubai.html dubai -// dunlop : 2015-07-02 The Goodyear Tire & Rubber Company +// dunlop : The Goodyear Tire & Rubber Company +// https://www.iana.org/domains/root/db/dunlop.html dunlop -// dupont : 2015-06-25 DuPont Specialty Products USA, LLC +// dupont : DuPont Specialty Products USA, LLC +// https://www.iana.org/domains/root/db/dupont.html dupont -// durban : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry +// durban : ZA Central Registry NPC trading as ZA Central Registry +// https://www.iana.org/domains/root/db/durban.html durban -// dvag : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG +// dvag : Deutsche Vermögensberatung Aktiengesellschaft DVAG +// https://www.iana.org/domains/root/db/dvag.html dvag -// dvr : 2016-05-26 DISH Technologies L.L.C. +// dvr : DISH Technologies L.L.C. +// https://www.iana.org/domains/root/db/dvr.html dvr -// earth : 2014-12-04 Interlink Co., Ltd. +// earth : Interlink Systems Innovation Institute K.K. +// https://www.iana.org/domains/root/db/earth.html earth -// eat : 2014-01-23 Charleston Road Registry Inc. +// eat : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/eat.html eat -// eco : 2016-07-08 Big Room Inc. +// eco : Big Room Inc. +// https://www.iana.org/domains/root/db/eco.html eco -// edeka : 2014-12-18 EDEKA Verband kaufmännischer Genossenschaften e.V. +// edeka : EDEKA Verband kaufmännischer Genossenschaften e.V. +// https://www.iana.org/domains/root/db/edeka.html edeka -// education : 2013-11-07 Binky Moon, LLC +// education : Binky Moon, LLC +// https://www.iana.org/domains/root/db/education.html education -// email : 2013-10-31 Binky Moon, LLC +// email : Binky Moon, LLC +// https://www.iana.org/domains/root/db/email.html email -// emerck : 2014-04-03 Merck KGaA +// emerck : Merck KGaA +// https://www.iana.org/domains/root/db/emerck.html emerck -// energy : 2014-09-11 Binky Moon, LLC +// energy : Binky Moon, LLC +// https://www.iana.org/domains/root/db/energy.html energy -// engineer : 2014-03-06 Dog Beach, LLC +// engineer : Dog Beach, LLC +// https://www.iana.org/domains/root/db/engineer.html engineer -// engineering : 2014-03-06 Binky Moon, LLC +// engineering : Binky Moon, LLC +// https://www.iana.org/domains/root/db/engineering.html engineering -// enterprises : 2013-09-20 Binky Moon, LLC +// enterprises : Binky Moon, LLC +// https://www.iana.org/domains/root/db/enterprises.html enterprises -// epson : 2014-12-04 Seiko Epson Corporation +// epson : Seiko Epson Corporation +// https://www.iana.org/domains/root/db/epson.html epson -// equipment : 2013-08-27 Binky Moon, LLC +// equipment : Binky Moon, LLC +// https://www.iana.org/domains/root/db/equipment.html equipment -// ericsson : 2015-07-09 Telefonaktiebolaget L M Ericsson +// ericsson : Telefonaktiebolaget L M Ericsson +// https://www.iana.org/domains/root/db/ericsson.html ericsson -// erni : 2014-04-03 ERNI Group Holding AG +// erni : ERNI Group Holding AG +// https://www.iana.org/domains/root/db/erni.html erni -// esq : 2014-05-08 Charleston Road Registry Inc. +// esq : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/esq.html esq -// estate : 2013-08-27 Binky Moon, LLC +// estate : Binky Moon, LLC +// https://www.iana.org/domains/root/db/estate.html estate -// etisalat : 2015-09-03 Emirates Telecommunications Corporation (trading as Etisalat) -etisalat - -// eurovision : 2014-04-24 European Broadcasting Union (EBU) +// eurovision : European Broadcasting Union (EBU) +// https://www.iana.org/domains/root/db/eurovision.html eurovision -// eus : 2013-12-12 Puntueus Fundazioa +// eus : Puntueus Fundazioa +// https://www.iana.org/domains/root/db/eus.html eus -// events : 2013-12-05 Binky Moon, LLC +// events : Binky Moon, LLC +// https://www.iana.org/domains/root/db/events.html events -// exchange : 2014-03-06 Binky Moon, LLC +// exchange : Binky Moon, LLC +// https://www.iana.org/domains/root/db/exchange.html exchange -// expert : 2013-11-21 Binky Moon, LLC +// expert : Binky Moon, LLC +// https://www.iana.org/domains/root/db/expert.html expert -// exposed : 2013-12-05 Binky Moon, LLC +// exposed : Binky Moon, LLC +// https://www.iana.org/domains/root/db/exposed.html exposed -// express : 2015-02-11 Binky Moon, LLC +// express : Binky Moon, LLC +// https://www.iana.org/domains/root/db/express.html express -// extraspace : 2015-05-14 Extra Space Storage LLC +// extraspace : Extra Space Storage LLC +// https://www.iana.org/domains/root/db/extraspace.html extraspace -// fage : 2014-12-18 Fage International S.A. +// fage : Fage International S.A. +// https://www.iana.org/domains/root/db/fage.html fage -// fail : 2014-03-06 Binky Moon, LLC +// fail : Binky Moon, LLC +// https://www.iana.org/domains/root/db/fail.html fail -// fairwinds : 2014-11-13 FairWinds Partners, LLC +// fairwinds : FairWinds Partners, LLC +// https://www.iana.org/domains/root/db/fairwinds.html fairwinds -// faith : 2014-11-20 dot Faith Limited +// faith : dot Faith Limited +// https://www.iana.org/domains/root/db/faith.html faith -// family : 2015-04-02 Dog Beach, LLC +// family : Dog Beach, LLC +// https://www.iana.org/domains/root/db/family.html family -// fan : 2014-03-06 Dog Beach, LLC +// fan : Dog Beach, LLC +// https://www.iana.org/domains/root/db/fan.html fan -// fans : 2014-11-07 ZDNS International Limited +// fans : ZDNS International Limited +// https://www.iana.org/domains/root/db/fans.html fans -// farm : 2013-11-07 Binky Moon, LLC +// farm : Binky Moon, LLC +// https://www.iana.org/domains/root/db/farm.html farm -// farmers : 2015-07-09 Farmers Insurance Exchange +// farmers : Farmers Insurance Exchange +// https://www.iana.org/domains/root/db/farmers.html farmers -// fashion : 2014-07-03 Registry Services, LLC +// fashion : Registry Services, LLC +// https://www.iana.org/domains/root/db/fashion.html fashion -// fast : 2014-12-18 Amazon Registry Services, Inc. +// fast : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/fast.html fast -// fedex : 2015-08-06 Federal Express Corporation +// fedex : Federal Express Corporation +// https://www.iana.org/domains/root/db/fedex.html fedex -// feedback : 2013-12-19 Top Level Spectrum, Inc. +// feedback : Top Level Spectrum, Inc. +// https://www.iana.org/domains/root/db/feedback.html feedback -// ferrari : 2015-07-31 Fiat Chrysler Automobiles N.V. +// ferrari : Fiat Chrysler Automobiles N.V. +// https://www.iana.org/domains/root/db/ferrari.html ferrari -// ferrero : 2014-12-18 Ferrero Trading Lux S.A. +// ferrero : Ferrero Trading Lux S.A. +// https://www.iana.org/domains/root/db/ferrero.html ferrero -// fiat : 2015-07-31 Fiat Chrysler Automobiles N.V. -fiat - -// fidelity : 2015-07-30 Fidelity Brokerage Services LLC +// fidelity : Fidelity Brokerage Services LLC +// https://www.iana.org/domains/root/db/fidelity.html fidelity -// fido : 2015-08-06 Rogers Communications Canada Inc. +// fido : Rogers Communications Canada Inc. +// https://www.iana.org/domains/root/db/fido.html fido -// film : 2015-01-08 Motion Picture Domain Registry Pty Ltd +// film : Motion Picture Domain Registry Pty Ltd +// https://www.iana.org/domains/root/db/film.html film -// final : 2014-10-16 Núcleo de Informação e Coordenação do Ponto BR - NIC.br +// final : Núcleo de Informação e Coordenação do Ponto BR - NIC.br +// https://www.iana.org/domains/root/db/final.html final -// finance : 2014-03-20 Binky Moon, LLC +// finance : Binky Moon, LLC +// https://www.iana.org/domains/root/db/finance.html finance -// financial : 2014-03-06 Binky Moon, LLC +// financial : Binky Moon, LLC +// https://www.iana.org/domains/root/db/financial.html financial -// fire : 2015-06-25 Amazon Registry Services, Inc. +// fire : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/fire.html fire -// firestone : 2014-12-18 Bridgestone Licensing Services, Inc +// firestone : Bridgestone Licensing Services, Inc +// https://www.iana.org/domains/root/db/firestone.html firestone -// firmdale : 2014-03-27 Firmdale Holdings Limited +// firmdale : Firmdale Holdings Limited +// https://www.iana.org/domains/root/db/firmdale.html firmdale -// fish : 2013-12-12 Binky Moon, LLC +// fish : Binky Moon, LLC +// https://www.iana.org/domains/root/db/fish.html fish -// fishing : 2013-11-21 Registry Services, LLC +// fishing : Registry Services, LLC +// https://www.iana.org/domains/root/db/fishing.html fishing -// fit : 2014-11-07 Registry Services, LLC +// fit : Registry Services, LLC +// https://www.iana.org/domains/root/db/fit.html fit -// fitness : 2014-03-06 Binky Moon, LLC +// fitness : Binky Moon, LLC +// https://www.iana.org/domains/root/db/fitness.html fitness -// flickr : 2015-04-02 Flickr, Inc. +// flickr : Flickr, Inc. +// https://www.iana.org/domains/root/db/flickr.html flickr -// flights : 2013-12-05 Binky Moon, LLC +// flights : Binky Moon, LLC +// https://www.iana.org/domains/root/db/flights.html flights -// flir : 2015-07-23 FLIR Systems, Inc. +// flir : FLIR Systems, Inc. +// https://www.iana.org/domains/root/db/flir.html flir -// florist : 2013-11-07 Binky Moon, LLC +// florist : Binky Moon, LLC +// https://www.iana.org/domains/root/db/florist.html florist -// flowers : 2014-10-09 XYZ.COM LLC +// flowers : XYZ.COM LLC +// https://www.iana.org/domains/root/db/flowers.html flowers -// fly : 2014-05-08 Charleston Road Registry Inc. +// fly : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/fly.html fly -// foo : 2014-01-23 Charleston Road Registry Inc. +// foo : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/foo.html foo -// food : 2016-04-21 Lifestyle Domain Holdings, Inc. +// food : Internet Naming Company LLC +// https://www.iana.org/domains/root/db/food.html food -// foodnetwork : 2015-07-02 Lifestyle Domain Holdings, Inc. -foodnetwork - -// football : 2014-12-18 Binky Moon, LLC +// football : Binky Moon, LLC +// https://www.iana.org/domains/root/db/football.html football -// ford : 2014-11-13 Ford Motor Company +// ford : Ford Motor Company +// https://www.iana.org/domains/root/db/ford.html ford -// forex : 2014-12-11 Dog Beach, LLC +// forex : Dog Beach, LLC +// https://www.iana.org/domains/root/db/forex.html forex -// forsale : 2014-05-22 Dog Beach, LLC +// forsale : Dog Beach, LLC +// https://www.iana.org/domains/root/db/forsale.html forsale -// forum : 2015-04-02 Fegistry, LLC +// forum : Fegistry, LLC +// https://www.iana.org/domains/root/db/forum.html forum -// foundation : 2013-12-05 Binky Moon, LLC +// foundation : Public Interest Registry +// https://www.iana.org/domains/root/db/foundation.html foundation -// fox : 2015-09-11 FOX Registry, LLC +// fox : FOX Registry, LLC +// https://www.iana.org/domains/root/db/fox.html fox -// free : 2015-12-10 Amazon Registry Services, Inc. +// free : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/free.html free -// fresenius : 2015-07-30 Fresenius Immobilien-Verwaltungs-GmbH +// fresenius : Fresenius Immobilien-Verwaltungs-GmbH +// https://www.iana.org/domains/root/db/fresenius.html fresenius -// frl : 2014-05-15 FRLregistry B.V. +// frl : FRLregistry B.V. +// https://www.iana.org/domains/root/db/frl.html frl -// frogans : 2013-12-19 OP3FT +// frogans : OP3FT +// https://www.iana.org/domains/root/db/frogans.html frogans -// frontdoor : 2015-07-02 Lifestyle Domain Holdings, Inc. -frontdoor - -// frontier : 2015-02-05 Frontier Communications Corporation +// frontier : Frontier Communications Corporation +// https://www.iana.org/domains/root/db/frontier.html frontier -// ftr : 2015-07-16 Frontier Communications Corporation +// ftr : Frontier Communications Corporation +// https://www.iana.org/domains/root/db/ftr.html ftr -// fujitsu : 2015-07-30 Fujitsu Limited +// fujitsu : Fujitsu Limited +// https://www.iana.org/domains/root/db/fujitsu.html fujitsu -// fun : 2016-01-14 Radix FZC +// fun : Radix Technologies Inc. +// https://www.iana.org/domains/root/db/fun.html fun -// fund : 2014-03-20 Binky Moon, LLC +// fund : Binky Moon, LLC +// https://www.iana.org/domains/root/db/fund.html fund -// furniture : 2014-03-20 Binky Moon, LLC +// furniture : Binky Moon, LLC +// https://www.iana.org/domains/root/db/furniture.html furniture -// futbol : 2013-09-20 Dog Beach, LLC +// futbol : Dog Beach, LLC +// https://www.iana.org/domains/root/db/futbol.html futbol -// fyi : 2015-04-02 Binky Moon, LLC +// fyi : Binky Moon, LLC +// https://www.iana.org/domains/root/db/fyi.html fyi -// gal : 2013-11-07 Asociación puntoGAL +// gal : Asociación puntoGAL +// https://www.iana.org/domains/root/db/gal.html gal -// gallery : 2013-09-13 Binky Moon, LLC +// gallery : Binky Moon, LLC +// https://www.iana.org/domains/root/db/gallery.html gallery -// gallo : 2015-06-11 Gallo Vineyards, Inc. +// gallo : Gallo Vineyards, Inc. +// https://www.iana.org/domains/root/db/gallo.html gallo -// gallup : 2015-02-19 Gallup, Inc. +// gallup : Gallup, Inc. +// https://www.iana.org/domains/root/db/gallup.html gallup -// game : 2015-05-28 XYZ.COM LLC +// game : XYZ.COM LLC +// https://www.iana.org/domains/root/db/game.html game -// games : 2015-05-28 Dog Beach, LLC +// games : Dog Beach, LLC +// https://www.iana.org/domains/root/db/games.html games -// gap : 2015-07-31 The Gap, Inc. +// gap : The Gap, Inc. +// https://www.iana.org/domains/root/db/gap.html gap -// garden : 2014-06-26 Registry Services, LLC +// garden : Registry Services, LLC +// https://www.iana.org/domains/root/db/garden.html garden -// gay : 2019-05-23 Top Level Design, LLC +// gay : Registry Services, LLC +// https://www.iana.org/domains/root/db/gay.html gay -// gbiz : 2014-07-17 Charleston Road Registry Inc. +// gbiz : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/gbiz.html gbiz -// gdn : 2014-07-31 Joint Stock Company "Navigation-information systems" +// gdn : Joint Stock Company "Navigation-information systems" +// https://www.iana.org/domains/root/db/gdn.html gdn -// gea : 2014-12-04 GEA Group Aktiengesellschaft +// gea : GEA Group Aktiengesellschaft +// https://www.iana.org/domains/root/db/gea.html gea -// gent : 2014-01-23 COMBELL NV +// gent : Easyhost BV +// https://www.iana.org/domains/root/db/gent.html gent -// genting : 2015-03-12 Resorts World Inc Pte. Ltd. +// genting : Resorts World Inc Pte. Ltd. +// https://www.iana.org/domains/root/db/genting.html genting -// george : 2015-07-31 Wal-Mart Stores, Inc. +// george : Wal-Mart Stores, Inc. +// https://www.iana.org/domains/root/db/george.html george -// ggee : 2014-01-09 GMO Internet, Inc. +// ggee : GMO Internet, Inc. +// https://www.iana.org/domains/root/db/ggee.html ggee -// gift : 2013-10-17 DotGift, LLC +// gift : DotGift, LLC +// https://www.iana.org/domains/root/db/gift.html gift -// gifts : 2014-07-03 Binky Moon, LLC +// gifts : Binky Moon, LLC +// https://www.iana.org/domains/root/db/gifts.html gifts -// gives : 2014-03-06 Dog Beach, LLC +// gives : Public Interest Registry +// https://www.iana.org/domains/root/db/gives.html gives -// giving : 2014-11-13 Giving Limited +// giving : Public Interest Registry +// https://www.iana.org/domains/root/db/giving.html giving -// glass : 2013-11-07 Binky Moon, LLC +// glass : Binky Moon, LLC +// https://www.iana.org/domains/root/db/glass.html glass -// gle : 2014-07-24 Charleston Road Registry Inc. +// gle : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/gle.html gle -// global : 2014-04-17 Dot Global Domain Registry Limited +// global : Identity Digital Limited +// https://www.iana.org/domains/root/db/global.html global -// globo : 2013-12-19 Globo Comunicação e Participações S.A +// globo : Globo Comunicação e Participações S.A +// https://www.iana.org/domains/root/db/globo.html globo -// gmail : 2014-05-01 Charleston Road Registry Inc. +// gmail : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/gmail.html gmail -// gmbh : 2016-01-29 Binky Moon, LLC +// gmbh : Binky Moon, LLC +// https://www.iana.org/domains/root/db/gmbh.html gmbh -// gmo : 2014-01-09 GMO Internet, Inc. +// gmo : GMO Internet, Inc. +// https://www.iana.org/domains/root/db/gmo.html gmo -// gmx : 2014-04-24 1&1 Mail & Media GmbH +// gmx : 1&1 Mail & Media GmbH +// https://www.iana.org/domains/root/db/gmx.html gmx -// godaddy : 2015-07-23 Go Daddy East, LLC +// godaddy : Go Daddy East, LLC +// https://www.iana.org/domains/root/db/godaddy.html godaddy -// gold : 2015-01-22 Binky Moon, LLC +// gold : Binky Moon, LLC +// https://www.iana.org/domains/root/db/gold.html gold -// goldpoint : 2014-11-20 YODOBASHI CAMERA CO.,LTD. +// goldpoint : YODOBASHI CAMERA CO.,LTD. +// https://www.iana.org/domains/root/db/goldpoint.html goldpoint -// golf : 2014-12-18 Binky Moon, LLC +// golf : Binky Moon, LLC +// https://www.iana.org/domains/root/db/golf.html golf -// goo : 2014-12-18 NTT Resonant Inc. +// goo : NTT DOCOMO, INC. +// https://www.iana.org/domains/root/db/goo.html goo -// goodyear : 2015-07-02 The Goodyear Tire & Rubber Company +// goodyear : The Goodyear Tire & Rubber Company +// https://www.iana.org/domains/root/db/goodyear.html goodyear -// goog : 2014-11-20 Charleston Road Registry Inc. +// goog : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/goog.html goog -// google : 2014-07-24 Charleston Road Registry Inc. +// google : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/google.html google -// gop : 2014-01-16 Republican State Leadership Committee, Inc. +// gop : Republican State Leadership Committee, Inc. +// https://www.iana.org/domains/root/db/gop.html gop -// got : 2014-12-18 Amazon Registry Services, Inc. +// got : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/got.html got -// grainger : 2015-05-07 Grainger Registry Services, LLC +// grainger : Grainger Registry Services, LLC +// https://www.iana.org/domains/root/db/grainger.html grainger -// graphics : 2013-09-13 Binky Moon, LLC +// graphics : Binky Moon, LLC +// https://www.iana.org/domains/root/db/graphics.html graphics -// gratis : 2014-03-20 Binky Moon, LLC +// gratis : Binky Moon, LLC +// https://www.iana.org/domains/root/db/gratis.html gratis -// green : 2014-05-08 Afilias Limited +// green : Identity Digital Limited +// https://www.iana.org/domains/root/db/green.html green -// gripe : 2014-03-06 Binky Moon, LLC +// gripe : Binky Moon, LLC +// https://www.iana.org/domains/root/db/gripe.html gripe -// grocery : 2016-06-16 Wal-Mart Stores, Inc. +// grocery : Wal-Mart Stores, Inc. +// https://www.iana.org/domains/root/db/grocery.html grocery -// group : 2014-08-15 Binky Moon, LLC +// group : Binky Moon, LLC +// https://www.iana.org/domains/root/db/group.html group -// guardian : 2015-07-30 The Guardian Life Insurance Company of America -guardian - -// gucci : 2014-11-13 Guccio Gucci S.p.a. +// gucci : Guccio Gucci S.p.a. +// https://www.iana.org/domains/root/db/gucci.html gucci -// guge : 2014-08-28 Charleston Road Registry Inc. +// guge : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/guge.html guge -// guide : 2013-09-13 Binky Moon, LLC +// guide : Binky Moon, LLC +// https://www.iana.org/domains/root/db/guide.html guide -// guitars : 2013-11-14 XYZ.COM LLC +// guitars : XYZ.COM LLC +// https://www.iana.org/domains/root/db/guitars.html guitars -// guru : 2013-08-27 Binky Moon, LLC +// guru : Binky Moon, LLC +// https://www.iana.org/domains/root/db/guru.html guru -// hair : 2015-12-03 XYZ.COM LLC +// hair : XYZ.COM LLC +// https://www.iana.org/domains/root/db/hair.html hair -// hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH +// hamburg : Hamburg Top-Level-Domain GmbH +// https://www.iana.org/domains/root/db/hamburg.html hamburg -// hangout : 2014-11-13 Charleston Road Registry Inc. +// hangout : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/hangout.html hangout -// haus : 2013-12-05 Dog Beach, LLC +// haus : Dog Beach, LLC +// https://www.iana.org/domains/root/db/haus.html haus -// hbo : 2015-07-30 HBO Registry Services, Inc. +// hbo : HBO Registry Services, Inc. +// https://www.iana.org/domains/root/db/hbo.html hbo -// hdfc : 2015-07-30 HOUSING DEVELOPMENT FINANCE CORPORATION LIMITED +// hdfc : HOUSING DEVELOPMENT FINANCE CORPORATION LIMITED +// https://www.iana.org/domains/root/db/hdfc.html hdfc -// hdfcbank : 2015-02-12 HDFC Bank Limited +// hdfcbank : HDFC Bank Limited +// https://www.iana.org/domains/root/db/hdfcbank.html hdfcbank -// health : 2015-02-11 DotHealth, LLC +// health : Registry Services, LLC +// https://www.iana.org/domains/root/db/health.html health -// healthcare : 2014-06-12 Binky Moon, LLC +// healthcare : Binky Moon, LLC +// https://www.iana.org/domains/root/db/healthcare.html healthcare -// help : 2014-06-26 UNR Corp. +// help : Innovation service Limited +// https://www.iana.org/domains/root/db/help.html help -// helsinki : 2015-02-05 City of Helsinki +// helsinki : City of Helsinki +// https://www.iana.org/domains/root/db/helsinki.html helsinki -// here : 2014-02-06 Charleston Road Registry Inc. +// here : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/here.html here -// hermes : 2014-07-10 HERMES INTERNATIONAL +// hermes : HERMES INTERNATIONAL +// https://www.iana.org/domains/root/db/hermes.html hermes -// hgtv : 2015-07-02 Lifestyle Domain Holdings, Inc. -hgtv - -// hiphop : 2014-03-06 Dot Hip Hop, LLC +// hiphop : Dot Hip Hop, LLC +// https://www.iana.org/domains/root/db/hiphop.html hiphop -// hisamitsu : 2015-07-16 Hisamitsu Pharmaceutical Co.,Inc. +// hisamitsu : Hisamitsu Pharmaceutical Co.,Inc. +// https://www.iana.org/domains/root/db/hisamitsu.html hisamitsu -// hitachi : 2014-10-31 Hitachi, Ltd. +// hitachi : Hitachi, Ltd. +// https://www.iana.org/domains/root/db/hitachi.html hitachi -// hiv : 2014-03-13 UNR Corp. +// hiv : Internet Naming Company LLC +// https://www.iana.org/domains/root/db/hiv.html hiv -// hkt : 2015-05-14 PCCW-HKT DataCom Services Limited +// hkt : PCCW-HKT DataCom Services Limited +// https://www.iana.org/domains/root/db/hkt.html hkt -// hockey : 2015-03-19 Binky Moon, LLC +// hockey : Binky Moon, LLC +// https://www.iana.org/domains/root/db/hockey.html hockey -// holdings : 2013-08-27 Binky Moon, LLC +// holdings : Binky Moon, LLC +// https://www.iana.org/domains/root/db/holdings.html holdings -// holiday : 2013-11-07 Binky Moon, LLC +// holiday : Binky Moon, LLC +// https://www.iana.org/domains/root/db/holiday.html holiday -// homedepot : 2015-04-02 Home Depot Product Authority, LLC +// homedepot : Home Depot Product Authority, LLC +// https://www.iana.org/domains/root/db/homedepot.html homedepot -// homegoods : 2015-07-16 The TJX Companies, Inc. +// homegoods : The TJX Companies, Inc. +// https://www.iana.org/domains/root/db/homegoods.html homegoods -// homes : 2014-01-09 XYZ.COM LLC +// homes : XYZ.COM LLC +// https://www.iana.org/domains/root/db/homes.html homes -// homesense : 2015-07-16 The TJX Companies, Inc. +// homesense : The TJX Companies, Inc. +// https://www.iana.org/domains/root/db/homesense.html homesense -// honda : 2014-12-18 Honda Motor Co., Ltd. +// honda : Honda Motor Co., Ltd. +// https://www.iana.org/domains/root/db/honda.html honda -// horse : 2013-11-21 Registry Services, LLC +// horse : Registry Services, LLC +// https://www.iana.org/domains/root/db/horse.html horse -// hospital : 2016-10-20 Binky Moon, LLC +// hospital : Binky Moon, LLC +// https://www.iana.org/domains/root/db/hospital.html hospital -// host : 2014-04-17 Radix FZC +// host : Radix Technologies Inc. +// https://www.iana.org/domains/root/db/host.html host -// hosting : 2014-05-29 XYZ.COM LLC +// hosting : XYZ.COM LLC +// https://www.iana.org/domains/root/db/hosting.html hosting -// hot : 2015-08-27 Amazon Registry Services, Inc. +// hot : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/hot.html hot -// hoteles : 2015-03-05 Travel Reservations SRL -hoteles - -// hotels : 2016-04-07 Booking.com B.V. +// hotels : Booking.com B.V. +// https://www.iana.org/domains/root/db/hotels.html hotels -// hotmail : 2014-12-18 Microsoft Corporation +// hotmail : Microsoft Corporation +// https://www.iana.org/domains/root/db/hotmail.html hotmail -// house : 2013-11-07 Binky Moon, LLC +// house : Binky Moon, LLC +// https://www.iana.org/domains/root/db/house.html house -// how : 2014-01-23 Charleston Road Registry Inc. +// how : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/how.html how -// hsbc : 2014-10-24 HSBC Global Services (UK) Limited +// hsbc : HSBC Global Services (UK) Limited +// https://www.iana.org/domains/root/db/hsbc.html hsbc -// hughes : 2015-07-30 Hughes Satellite Systems Corporation +// hughes : Hughes Satellite Systems Corporation +// https://www.iana.org/domains/root/db/hughes.html hughes -// hyatt : 2015-07-30 Hyatt GTLD, L.L.C. +// hyatt : Hyatt GTLD, L.L.C. +// https://www.iana.org/domains/root/db/hyatt.html hyatt -// hyundai : 2015-07-09 Hyundai Motor Company +// hyundai : Hyundai Motor Company +// https://www.iana.org/domains/root/db/hyundai.html hyundai -// ibm : 2014-07-31 International Business Machines Corporation +// ibm : International Business Machines Corporation +// https://www.iana.org/domains/root/db/ibm.html ibm -// icbc : 2015-02-19 Industrial and Commercial Bank of China Limited +// icbc : Industrial and Commercial Bank of China Limited +// https://www.iana.org/domains/root/db/icbc.html icbc -// ice : 2014-10-30 IntercontinentalExchange, Inc. +// ice : IntercontinentalExchange, Inc. +// https://www.iana.org/domains/root/db/ice.html ice -// icu : 2015-01-08 ShortDot SA +// icu : ShortDot SA +// https://www.iana.org/domains/root/db/icu.html icu -// ieee : 2015-07-23 IEEE Global LLC +// ieee : IEEE Global LLC +// https://www.iana.org/domains/root/db/ieee.html ieee -// ifm : 2014-01-30 ifm electronic gmbh +// ifm : ifm electronic gmbh +// https://www.iana.org/domains/root/db/ifm.html ifm -// ikano : 2015-07-09 Ikano S.A. +// ikano : Ikano S.A. +// https://www.iana.org/domains/root/db/ikano.html ikano -// imamat : 2015-08-06 Fondation Aga Khan (Aga Khan Foundation) +// imamat : Fondation Aga Khan (Aga Khan Foundation) +// https://www.iana.org/domains/root/db/imamat.html imamat -// imdb : 2015-06-25 Amazon Registry Services, Inc. +// imdb : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/imdb.html imdb -// immo : 2014-07-10 Binky Moon, LLC +// immo : Binky Moon, LLC +// https://www.iana.org/domains/root/db/immo.html immo -// immobilien : 2013-11-07 Dog Beach, LLC +// immobilien : Dog Beach, LLC +// https://www.iana.org/domains/root/db/immobilien.html immobilien -// inc : 2018-03-10 Intercap Registry Inc. +// inc : Intercap Registry Inc. +// https://www.iana.org/domains/root/db/inc.html inc -// industries : 2013-12-05 Binky Moon, LLC +// industries : Binky Moon, LLC +// https://www.iana.org/domains/root/db/industries.html industries -// infiniti : 2014-03-27 NISSAN MOTOR CO., LTD. +// infiniti : NISSAN MOTOR CO., LTD. +// https://www.iana.org/domains/root/db/infiniti.html infiniti -// ing : 2014-01-23 Charleston Road Registry Inc. +// ing : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/ing.html ing -// ink : 2013-12-05 Top Level Design, LLC +// ink : Registry Services, LLC +// https://www.iana.org/domains/root/db/ink.html ink -// institute : 2013-11-07 Binky Moon, LLC +// institute : Binky Moon, LLC +// https://www.iana.org/domains/root/db/institute.html institute -// insurance : 2015-02-19 fTLD Registry Services LLC +// insurance : fTLD Registry Services LLC +// https://www.iana.org/domains/root/db/insurance.html insurance -// insure : 2014-03-20 Binky Moon, LLC +// insure : Binky Moon, LLC +// https://www.iana.org/domains/root/db/insure.html insure -// international : 2013-11-07 Binky Moon, LLC +// international : Binky Moon, LLC +// https://www.iana.org/domains/root/db/international.html international -// intuit : 2015-07-30 Intuit Administrative Services, Inc. +// intuit : Intuit Administrative Services, Inc. +// https://www.iana.org/domains/root/db/intuit.html intuit -// investments : 2014-03-20 Binky Moon, LLC +// investments : Binky Moon, LLC +// https://www.iana.org/domains/root/db/investments.html investments -// ipiranga : 2014-08-28 Ipiranga Produtos de Petroleo S.A. +// ipiranga : Ipiranga Produtos de Petroleo S.A. +// https://www.iana.org/domains/root/db/ipiranga.html ipiranga -// irish : 2014-08-07 Binky Moon, LLC +// irish : Binky Moon, LLC +// https://www.iana.org/domains/root/db/irish.html irish -// ismaili : 2015-08-06 Fondation Aga Khan (Aga Khan Foundation) +// ismaili : Fondation Aga Khan (Aga Khan Foundation) +// https://www.iana.org/domains/root/db/ismaili.html ismaili -// ist : 2014-08-28 Istanbul Metropolitan Municipality +// ist : Istanbul Metropolitan Municipality +// https://www.iana.org/domains/root/db/ist.html ist -// istanbul : 2014-08-28 Istanbul Metropolitan Municipality +// istanbul : Istanbul Metropolitan Municipality +// https://www.iana.org/domains/root/db/istanbul.html istanbul -// itau : 2014-10-02 Itau Unibanco Holding S.A. +// itau : Itau Unibanco Holding S.A. +// https://www.iana.org/domains/root/db/itau.html itau -// itv : 2015-07-09 ITV Services Limited +// itv : ITV Services Limited +// https://www.iana.org/domains/root/db/itv.html itv -// jaguar : 2014-11-13 Jaguar Land Rover Ltd +// jaguar : Jaguar Land Rover Ltd +// https://www.iana.org/domains/root/db/jaguar.html jaguar -// java : 2014-06-19 Oracle Corporation +// java : Oracle Corporation +// https://www.iana.org/domains/root/db/java.html java -// jcb : 2014-11-20 JCB Co., Ltd. +// jcb : JCB Co., Ltd. +// https://www.iana.org/domains/root/db/jcb.html jcb -// jeep : 2015-07-30 FCA US LLC. +// jeep : FCA US LLC. +// https://www.iana.org/domains/root/db/jeep.html jeep -// jetzt : 2014-01-09 Binky Moon, LLC +// jetzt : Binky Moon, LLC +// https://www.iana.org/domains/root/db/jetzt.html jetzt -// jewelry : 2015-03-05 Binky Moon, LLC +// jewelry : Binky Moon, LLC +// https://www.iana.org/domains/root/db/jewelry.html jewelry -// jio : 2015-04-02 Reliance Industries Limited +// jio : Reliance Industries Limited +// https://www.iana.org/domains/root/db/jio.html jio -// jll : 2015-04-02 Jones Lang LaSalle Incorporated +// jll : Jones Lang LaSalle Incorporated +// https://www.iana.org/domains/root/db/jll.html jll -// jmp : 2015-03-26 Matrix IP LLC +// jmp : Matrix IP LLC +// https://www.iana.org/domains/root/db/jmp.html jmp -// jnj : 2015-06-18 Johnson & Johnson Services, Inc. +// jnj : Johnson & Johnson Services, Inc. +// https://www.iana.org/domains/root/db/jnj.html jnj -// joburg : 2014-03-24 ZA Central Registry NPC trading as ZA Central Registry +// joburg : ZA Central Registry NPC trading as ZA Central Registry +// https://www.iana.org/domains/root/db/joburg.html joburg -// jot : 2014-12-18 Amazon Registry Services, Inc. +// jot : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/jot.html jot -// joy : 2014-12-18 Amazon Registry Services, Inc. +// joy : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/joy.html joy -// jpmorgan : 2015-04-30 JPMorgan Chase Bank, National Association +// jpmorgan : JPMorgan Chase Bank, National Association +// https://www.iana.org/domains/root/db/jpmorgan.html jpmorgan -// jprs : 2014-09-18 Japan Registry Services Co., Ltd. +// jprs : Japan Registry Services Co., Ltd. +// https://www.iana.org/domains/root/db/jprs.html jprs -// juegos : 2014-03-20 UNR Corp. +// juegos : Dog Beach, LLC +// https://www.iana.org/domains/root/db/juegos.html juegos -// juniper : 2015-07-30 JUNIPER NETWORKS, INC. +// juniper : JUNIPER NETWORKS, INC. +// https://www.iana.org/domains/root/db/juniper.html juniper -// kaufen : 2013-11-07 Dog Beach, LLC +// kaufen : Dog Beach, LLC +// https://www.iana.org/domains/root/db/kaufen.html kaufen -// kddi : 2014-09-12 KDDI CORPORATION +// kddi : KDDI CORPORATION +// https://www.iana.org/domains/root/db/kddi.html kddi -// kerryhotels : 2015-04-30 Kerry Trading Co. Limited +// kerryhotels : Kerry Trading Co. Limited +// https://www.iana.org/domains/root/db/kerryhotels.html kerryhotels -// kerrylogistics : 2015-04-09 Kerry Trading Co. Limited +// kerrylogistics : Kerry Trading Co. Limited +// https://www.iana.org/domains/root/db/kerrylogistics.html kerrylogistics -// kerryproperties : 2015-04-09 Kerry Trading Co. Limited +// kerryproperties : Kerry Trading Co. Limited +// https://www.iana.org/domains/root/db/kerryproperties.html kerryproperties -// kfh : 2014-12-04 Kuwait Finance House +// kfh : Kuwait Finance House +// https://www.iana.org/domains/root/db/kfh.html kfh -// kia : 2015-07-09 KIA MOTORS CORPORATION +// kia : KIA MOTORS CORPORATION +// https://www.iana.org/domains/root/db/kia.html kia -// kids : 2021-08-13 DotKids Foundation Limited +// kids : DotKids Foundation Limited +// https://www.iana.org/domains/root/db/kids.html kids -// kim : 2013-09-23 Afilias Limited +// kim : Identity Digital Limited +// https://www.iana.org/domains/root/db/kim.html kim -// kinder : 2014-11-07 Ferrero Trading Lux S.A. -kinder - -// kindle : 2015-06-25 Amazon Registry Services, Inc. +// kindle : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/kindle.html kindle -// kitchen : 2013-09-20 Binky Moon, LLC +// kitchen : Binky Moon, LLC +// https://www.iana.org/domains/root/db/kitchen.html kitchen -// kiwi : 2013-09-20 DOT KIWI LIMITED +// kiwi : DOT KIWI LIMITED +// https://www.iana.org/domains/root/db/kiwi.html kiwi -// koeln : 2014-01-09 dotKoeln GmbH +// koeln : dotKoeln GmbH +// https://www.iana.org/domains/root/db/koeln.html koeln -// komatsu : 2015-01-08 Komatsu Ltd. +// komatsu : Komatsu Ltd. +// https://www.iana.org/domains/root/db/komatsu.html komatsu -// kosher : 2015-08-20 Kosher Marketing Assets LLC +// kosher : Kosher Marketing Assets LLC +// https://www.iana.org/domains/root/db/kosher.html kosher -// kpmg : 2015-04-23 KPMG International Cooperative (KPMG International Genossenschaft) +// kpmg : KPMG International Cooperative (KPMG International Genossenschaft) +// https://www.iana.org/domains/root/db/kpmg.html kpmg -// kpn : 2015-01-08 Koninklijke KPN N.V. +// kpn : Koninklijke KPN N.V. +// https://www.iana.org/domains/root/db/kpn.html kpn -// krd : 2013-12-05 KRG Department of Information Technology +// krd : KRG Department of Information Technology +// https://www.iana.org/domains/root/db/krd.html krd -// kred : 2013-12-19 KredTLD Pty Ltd +// kred : KredTLD Pty Ltd +// https://www.iana.org/domains/root/db/kred.html kred -// kuokgroup : 2015-04-09 Kerry Trading Co. Limited +// kuokgroup : Kerry Trading Co. Limited +// https://www.iana.org/domains/root/db/kuokgroup.html kuokgroup -// kyoto : 2014-11-07 Academic Institution: Kyoto Jyoho Gakuen +// kyoto : Academic Institution: Kyoto Jyoho Gakuen +// https://www.iana.org/domains/root/db/kyoto.html kyoto -// lacaixa : 2014-01-09 Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa” +// lacaixa : Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona, “la Caixa” +// https://www.iana.org/domains/root/db/lacaixa.html lacaixa -// lamborghini : 2015-06-04 Automobili Lamborghini S.p.A. +// lamborghini : Automobili Lamborghini S.p.A. +// https://www.iana.org/domains/root/db/lamborghini.html lamborghini -// lamer : 2015-10-01 The Estée Lauder Companies Inc. +// lamer : The Estée Lauder Companies Inc. +// https://www.iana.org/domains/root/db/lamer.html lamer -// lancaster : 2015-02-12 LANCASTER +// lancaster : LANCASTER +// https://www.iana.org/domains/root/db/lancaster.html lancaster -// lancia : 2015-07-31 Fiat Chrysler Automobiles N.V. -lancia - -// land : 2013-09-10 Binky Moon, LLC +// land : Binky Moon, LLC +// https://www.iana.org/domains/root/db/land.html land -// landrover : 2014-11-13 Jaguar Land Rover Ltd +// landrover : Jaguar Land Rover Ltd +// https://www.iana.org/domains/root/db/landrover.html landrover -// lanxess : 2015-07-30 LANXESS Corporation +// lanxess : LANXESS Corporation +// https://www.iana.org/domains/root/db/lanxess.html lanxess -// lasalle : 2015-04-02 Jones Lang LaSalle Incorporated +// lasalle : Jones Lang LaSalle Incorporated +// https://www.iana.org/domains/root/db/lasalle.html lasalle -// lat : 2014-10-16 ECOM-LAC Federaciòn de Latinoamèrica y el Caribe para Internet y el Comercio Electrònico +// lat : XYZ.COM LLC +// https://www.iana.org/domains/root/db/lat.html lat -// latino : 2015-07-30 Dish DBS Corporation +// latino : Dish DBS Corporation +// https://www.iana.org/domains/root/db/latino.html latino -// latrobe : 2014-06-16 La Trobe University +// latrobe : La Trobe University +// https://www.iana.org/domains/root/db/latrobe.html latrobe -// law : 2015-01-22 Registry Services, LLC +// law : Registry Services, LLC +// https://www.iana.org/domains/root/db/law.html law -// lawyer : 2014-03-20 Dog Beach, LLC +// lawyer : Dog Beach, LLC +// https://www.iana.org/domains/root/db/lawyer.html lawyer -// lds : 2014-03-20 IRI Domain Management, LLC +// lds : IRI Domain Management, LLC +// https://www.iana.org/domains/root/db/lds.html lds -// lease : 2014-03-06 Binky Moon, LLC +// lease : Binky Moon, LLC +// https://www.iana.org/domains/root/db/lease.html lease -// leclerc : 2014-08-07 A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc +// leclerc : A.C.D. LEC Association des Centres Distributeurs Edouard Leclerc +// https://www.iana.org/domains/root/db/leclerc.html leclerc -// lefrak : 2015-07-16 LeFrak Organization, Inc. +// lefrak : LeFrak Organization, Inc. +// https://www.iana.org/domains/root/db/lefrak.html lefrak -// legal : 2014-10-16 Binky Moon, LLC +// legal : Binky Moon, LLC +// https://www.iana.org/domains/root/db/legal.html legal -// lego : 2015-07-16 LEGO Juris A/S +// lego : LEGO Juris A/S +// https://www.iana.org/domains/root/db/lego.html lego -// lexus : 2015-04-23 TOYOTA MOTOR CORPORATION +// lexus : TOYOTA MOTOR CORPORATION +// https://www.iana.org/domains/root/db/lexus.html lexus -// lgbt : 2014-05-08 Afilias Limited +// lgbt : Identity Digital Limited +// https://www.iana.org/domains/root/db/lgbt.html lgbt -// lidl : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG +// lidl : Schwarz Domains und Services GmbH & Co. KG +// https://www.iana.org/domains/root/db/lidl.html lidl -// life : 2014-02-06 Binky Moon, LLC +// life : Binky Moon, LLC +// https://www.iana.org/domains/root/db/life.html life -// lifeinsurance : 2015-01-15 American Council of Life Insurers +// lifeinsurance : American Council of Life Insurers +// https://www.iana.org/domains/root/db/lifeinsurance.html lifeinsurance -// lifestyle : 2014-12-11 Lifestyle Domain Holdings, Inc. +// lifestyle : Internet Naming Company LLC +// https://www.iana.org/domains/root/db/lifestyle.html lifestyle -// lighting : 2013-08-27 Binky Moon, LLC +// lighting : Binky Moon, LLC +// https://www.iana.org/domains/root/db/lighting.html lighting -// like : 2014-12-18 Amazon Registry Services, Inc. +// like : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/like.html like -// lilly : 2015-07-31 Eli Lilly and Company +// lilly : Eli Lilly and Company +// https://www.iana.org/domains/root/db/lilly.html lilly -// limited : 2014-03-06 Binky Moon, LLC +// limited : Binky Moon, LLC +// https://www.iana.org/domains/root/db/limited.html limited -// limo : 2013-10-17 Binky Moon, LLC +// limo : Binky Moon, LLC +// https://www.iana.org/domains/root/db/limo.html limo -// lincoln : 2014-11-13 Ford Motor Company +// lincoln : Ford Motor Company +// https://www.iana.org/domains/root/db/lincoln.html lincoln -// linde : 2014-12-04 Linde Aktiengesellschaft -linde - -// link : 2013-11-14 UNR Corp. +// link : Nova Registry Ltd +// https://www.iana.org/domains/root/db/link.html link -// lipsy : 2015-06-25 Lipsy Ltd +// lipsy : Lipsy Ltd +// https://www.iana.org/domains/root/db/lipsy.html lipsy -// live : 2014-12-04 Dog Beach, LLC +// live : Dog Beach, LLC +// https://www.iana.org/domains/root/db/live.html live -// living : 2015-07-30 Lifestyle Domain Holdings, Inc. +// living : Internet Naming Company LLC +// https://www.iana.org/domains/root/db/living.html living -// llc : 2017-12-14 Afilias Limited +// llc : Identity Digital Limited +// https://www.iana.org/domains/root/db/llc.html llc -// llp : 2019-08-26 UNR Corp. +// llp : Intercap Registry Inc. +// https://www.iana.org/domains/root/db/llp.html llp -// loan : 2014-11-20 dot Loan Limited +// loan : dot Loan Limited +// https://www.iana.org/domains/root/db/loan.html loan -// loans : 2014-03-20 Binky Moon, LLC +// loans : Binky Moon, LLC +// https://www.iana.org/domains/root/db/loans.html loans -// locker : 2015-06-04 Dish DBS Corporation +// locker : Orange Domains LLC +// https://www.iana.org/domains/root/db/locker.html locker -// locus : 2015-06-25 Locus Analytics LLC +// locus : Locus Analytics LLC +// https://www.iana.org/domains/root/db/locus.html locus -// loft : 2015-07-30 Annco, Inc. -loft - -// lol : 2015-01-30 XYZ.COM LLC +// lol : XYZ.COM LLC +// https://www.iana.org/domains/root/db/lol.html lol -// london : 2013-11-14 Dot London Domains Limited +// london : Dot London Domains Limited +// https://www.iana.org/domains/root/db/london.html london -// lotte : 2014-11-07 Lotte Holdings Co., Ltd. +// lotte : Lotte Holdings Co., Ltd. +// https://www.iana.org/domains/root/db/lotte.html lotte -// lotto : 2014-04-10 Afilias Limited +// lotto : Identity Digital Limited +// https://www.iana.org/domains/root/db/lotto.html lotto -// love : 2014-12-22 Merchant Law Group LLP +// love : Waterford Limited +// https://www.iana.org/domains/root/db/love.html love -// lpl : 2015-07-30 LPL Holdings, Inc. +// lpl : LPL Holdings, Inc. +// https://www.iana.org/domains/root/db/lpl.html lpl -// lplfinancial : 2015-07-30 LPL Holdings, Inc. +// lplfinancial : LPL Holdings, Inc. +// https://www.iana.org/domains/root/db/lplfinancial.html lplfinancial -// ltd : 2014-09-25 Binky Moon, LLC +// ltd : Binky Moon, LLC +// https://www.iana.org/domains/root/db/ltd.html ltd -// ltda : 2014-04-17 InterNetX, Corp +// ltda : InterNetX, Corp +// https://www.iana.org/domains/root/db/ltda.html ltda -// lundbeck : 2015-08-06 H. Lundbeck A/S +// lundbeck : H. Lundbeck A/S +// https://www.iana.org/domains/root/db/lundbeck.html lundbeck -// luxe : 2014-01-09 Registry Services, LLC +// luxe : Registry Services, LLC +// https://www.iana.org/domains/root/db/luxe.html luxe -// luxury : 2013-10-17 Luxury Partners, LLC +// luxury : Luxury Partners, LLC +// https://www.iana.org/domains/root/db/luxury.html luxury -// macys : 2015-07-31 Macys, Inc. -macys - -// madrid : 2014-05-01 Comunidad de Madrid +// madrid : Comunidad de Madrid +// https://www.iana.org/domains/root/db/madrid.html madrid -// maif : 2014-10-02 Mutuelle Assurance Instituteur France (MAIF) +// maif : Mutuelle Assurance Instituteur France (MAIF) +// https://www.iana.org/domains/root/db/maif.html maif -// maison : 2013-12-05 Binky Moon, LLC +// maison : Binky Moon, LLC +// https://www.iana.org/domains/root/db/maison.html maison -// makeup : 2015-01-15 XYZ.COM LLC +// makeup : XYZ.COM LLC +// https://www.iana.org/domains/root/db/makeup.html makeup -// man : 2014-12-04 MAN SE +// man : MAN SE +// https://www.iana.org/domains/root/db/man.html man -// management : 2013-11-07 Binky Moon, LLC +// management : Binky Moon, LLC +// https://www.iana.org/domains/root/db/management.html management -// mango : 2013-10-24 PUNTO FA S.L. +// mango : PUNTO FA S.L. +// https://www.iana.org/domains/root/db/mango.html mango -// map : 2016-06-09 Charleston Road Registry Inc. +// map : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/map.html map -// market : 2014-03-06 Dog Beach, LLC +// market : Dog Beach, LLC +// https://www.iana.org/domains/root/db/market.html market -// marketing : 2013-11-07 Binky Moon, LLC +// marketing : Binky Moon, LLC +// https://www.iana.org/domains/root/db/marketing.html marketing -// markets : 2014-12-11 Dog Beach, LLC +// markets : Dog Beach, LLC +// https://www.iana.org/domains/root/db/markets.html markets -// marriott : 2014-10-09 Marriott Worldwide Corporation +// marriott : Marriott Worldwide Corporation +// https://www.iana.org/domains/root/db/marriott.html marriott -// marshalls : 2015-07-16 The TJX Companies, Inc. +// marshalls : The TJX Companies, Inc. +// https://www.iana.org/domains/root/db/marshalls.html marshalls -// maserati : 2015-07-31 Fiat Chrysler Automobiles N.V. -maserati - -// mattel : 2015-08-06 Mattel Sites, Inc. +// mattel : Mattel Sites, Inc. +// https://www.iana.org/domains/root/db/mattel.html mattel -// mba : 2015-04-02 Binky Moon, LLC +// mba : Binky Moon, LLC +// https://www.iana.org/domains/root/db/mba.html mba -// mckinsey : 2015-07-31 McKinsey Holdings, Inc. +// mckinsey : McKinsey Holdings, Inc. +// https://www.iana.org/domains/root/db/mckinsey.html mckinsey -// med : 2015-08-06 Medistry LLC +// med : Medistry LLC +// https://www.iana.org/domains/root/db/med.html med -// media : 2014-03-06 Binky Moon, LLC +// media : Binky Moon, LLC +// https://www.iana.org/domains/root/db/media.html media -// meet : 2014-01-16 Charleston Road Registry Inc. +// meet : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/meet.html meet -// melbourne : 2014-05-29 The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation +// melbourne : The Crown in right of the State of Victoria, represented by its Department of State Development, Business and Innovation +// https://www.iana.org/domains/root/db/melbourne.html melbourne -// meme : 2014-01-30 Charleston Road Registry Inc. +// meme : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/meme.html meme -// memorial : 2014-10-16 Dog Beach, LLC +// memorial : Dog Beach, LLC +// https://www.iana.org/domains/root/db/memorial.html memorial -// men : 2015-02-26 Exclusive Registry Limited +// men : Exclusive Registry Limited +// https://www.iana.org/domains/root/db/men.html men -// menu : 2013-09-11 Dot Menu Registry, LLC +// menu : Dot Menu Registry, LLC +// https://www.iana.org/domains/root/db/menu.html menu -// merckmsd : 2016-07-14 MSD Registry Holdings, Inc. +// merckmsd : MSD Registry Holdings, Inc. +// https://www.iana.org/domains/root/db/merckmsd.html merckmsd -// miami : 2013-12-19 Registry Services, LLC +// miami : Registry Services, LLC +// https://www.iana.org/domains/root/db/miami.html miami -// microsoft : 2014-12-18 Microsoft Corporation +// microsoft : Microsoft Corporation +// https://www.iana.org/domains/root/db/microsoft.html microsoft -// mini : 2014-01-09 Bayerische Motoren Werke Aktiengesellschaft +// mini : Bayerische Motoren Werke Aktiengesellschaft +// https://www.iana.org/domains/root/db/mini.html mini -// mint : 2015-07-30 Intuit Administrative Services, Inc. +// mint : Intuit Administrative Services, Inc. +// https://www.iana.org/domains/root/db/mint.html mint -// mit : 2015-07-02 Massachusetts Institute of Technology +// mit : Massachusetts Institute of Technology +// https://www.iana.org/domains/root/db/mit.html mit -// mitsubishi : 2015-07-23 Mitsubishi Corporation +// mitsubishi : Mitsubishi Corporation +// https://www.iana.org/domains/root/db/mitsubishi.html mitsubishi -// mlb : 2015-05-21 MLB Advanced Media DH, LLC +// mlb : MLB Advanced Media DH, LLC +// https://www.iana.org/domains/root/db/mlb.html mlb -// mls : 2015-04-23 The Canadian Real Estate Association +// mls : The Canadian Real Estate Association +// https://www.iana.org/domains/root/db/mls.html mls -// mma : 2014-11-07 MMA IARD +// mma : MMA IARD +// https://www.iana.org/domains/root/db/mma.html mma -// mobile : 2016-06-02 Dish DBS Corporation +// mobile : Dish DBS Corporation +// https://www.iana.org/domains/root/db/mobile.html mobile -// moda : 2013-11-07 Dog Beach, LLC +// moda : Dog Beach, LLC +// https://www.iana.org/domains/root/db/moda.html moda -// moe : 2013-11-13 Interlink Co., Ltd. +// moe : Interlink Systems Innovation Institute K.K. +// https://www.iana.org/domains/root/db/moe.html moe -// moi : 2014-12-18 Amazon Registry Services, Inc. +// moi : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/moi.html moi -// mom : 2015-04-16 XYZ.COM LLC +// mom : XYZ.COM LLC +// https://www.iana.org/domains/root/db/mom.html mom -// monash : 2013-09-30 Monash University +// monash : Monash University +// https://www.iana.org/domains/root/db/monash.html monash -// money : 2014-10-16 Binky Moon, LLC +// money : Binky Moon, LLC +// https://www.iana.org/domains/root/db/money.html money -// monster : 2015-09-11 XYZ.COM LLC +// monster : XYZ.COM LLC +// https://www.iana.org/domains/root/db/monster.html monster -// mormon : 2013-12-05 IRI Domain Management, LLC +// mormon : IRI Domain Management, LLC +// https://www.iana.org/domains/root/db/mormon.html mormon -// mortgage : 2014-03-20 Dog Beach, LLC +// mortgage : Dog Beach, LLC +// https://www.iana.org/domains/root/db/mortgage.html mortgage -// moscow : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID) +// moscow : Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID) +// https://www.iana.org/domains/root/db/moscow.html moscow -// moto : 2015-06-04 Motorola Trademark Holdings, LLC +// moto : Motorola Trademark Holdings, LLC +// https://www.iana.org/domains/root/db/moto.html moto -// motorcycles : 2014-01-09 XYZ.COM LLC +// motorcycles : XYZ.COM LLC +// https://www.iana.org/domains/root/db/motorcycles.html motorcycles -// mov : 2014-01-30 Charleston Road Registry Inc. +// mov : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/mov.html mov -// movie : 2015-02-05 Binky Moon, LLC +// movie : Binky Moon, LLC +// https://www.iana.org/domains/root/db/movie.html movie -// msd : 2015-07-23 MSD Registry Holdings, Inc. +// msd : MSD Registry Holdings, Inc. +// https://www.iana.org/domains/root/db/msd.html msd -// mtn : 2014-12-04 MTN Dubai Limited +// mtn : MTN Dubai Limited +// https://www.iana.org/domains/root/db/mtn.html mtn -// mtr : 2015-03-12 MTR Corporation Limited +// mtr : MTR Corporation Limited +// https://www.iana.org/domains/root/db/mtr.html mtr -// music : 2021-05-04 DotMusic Limited +// music : DotMusic Limited +// https://www.iana.org/domains/root/db/music.html music -// mutual : 2015-04-02 Northwestern Mutual MU TLD Registry, LLC -mutual - -// nab : 2015-08-20 National Australia Bank Limited +// nab : National Australia Bank Limited +// https://www.iana.org/domains/root/db/nab.html nab -// nagoya : 2013-10-24 GMO Registry, Inc. +// nagoya : GMO Registry, Inc. +// https://www.iana.org/domains/root/db/nagoya.html nagoya -// natura : 2015-03-12 NATURA COSMÉTICOS S.A. -natura - -// navy : 2014-03-06 Dog Beach, LLC +// navy : Dog Beach, LLC +// https://www.iana.org/domains/root/db/navy.html navy -// nba : 2015-07-31 NBA REGISTRY, LLC +// nba : NBA REGISTRY, LLC +// https://www.iana.org/domains/root/db/nba.html nba -// nec : 2015-01-08 NEC Corporation +// nec : NEC Corporation +// https://www.iana.org/domains/root/db/nec.html nec -// netbank : 2014-06-26 COMMONWEALTH BANK OF AUSTRALIA +// netbank : COMMONWEALTH BANK OF AUSTRALIA +// https://www.iana.org/domains/root/db/netbank.html netbank -// netflix : 2015-06-18 Netflix, Inc. +// netflix : Netflix, Inc. +// https://www.iana.org/domains/root/db/netflix.html netflix -// network : 2013-11-14 Binky Moon, LLC +// network : Binky Moon, LLC +// https://www.iana.org/domains/root/db/network.html network -// neustar : 2013-12-05 NeuStar, Inc. +// neustar : NeuStar, Inc. +// https://www.iana.org/domains/root/db/neustar.html neustar -// new : 2014-01-30 Charleston Road Registry Inc. +// new : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/new.html new -// news : 2014-12-18 Dog Beach, LLC +// news : Dog Beach, LLC +// https://www.iana.org/domains/root/db/news.html news -// next : 2015-06-18 Next plc +// next : Next plc +// https://www.iana.org/domains/root/db/next.html next -// nextdirect : 2015-06-18 Next plc +// nextdirect : Next plc +// https://www.iana.org/domains/root/db/nextdirect.html nextdirect -// nexus : 2014-07-24 Charleston Road Registry Inc. +// nexus : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/nexus.html nexus -// nfl : 2015-07-23 NFL Reg Ops LLC +// nfl : NFL Reg Ops LLC +// https://www.iana.org/domains/root/db/nfl.html nfl -// ngo : 2014-03-06 Public Interest Registry +// ngo : Public Interest Registry +// https://www.iana.org/domains/root/db/ngo.html ngo -// nhk : 2014-02-13 Japan Broadcasting Corporation (NHK) +// nhk : Japan Broadcasting Corporation (NHK) +// https://www.iana.org/domains/root/db/nhk.html nhk -// nico : 2014-12-04 DWANGO Co., Ltd. +// nico : DWANGO Co., Ltd. +// https://www.iana.org/domains/root/db/nico.html nico -// nike : 2015-07-23 NIKE, Inc. +// nike : NIKE, Inc. +// https://www.iana.org/domains/root/db/nike.html nike -// nikon : 2015-05-21 NIKON CORPORATION +// nikon : NIKON CORPORATION +// https://www.iana.org/domains/root/db/nikon.html nikon -// ninja : 2013-11-07 Dog Beach, LLC +// ninja : Dog Beach, LLC +// https://www.iana.org/domains/root/db/ninja.html ninja -// nissan : 2014-03-27 NISSAN MOTOR CO., LTD. +// nissan : NISSAN MOTOR CO., LTD. +// https://www.iana.org/domains/root/db/nissan.html nissan -// nissay : 2015-10-29 Nippon Life Insurance Company +// nissay : Nippon Life Insurance Company +// https://www.iana.org/domains/root/db/nissay.html nissay -// nokia : 2015-01-08 Nokia Corporation +// nokia : Nokia Corporation +// https://www.iana.org/domains/root/db/nokia.html nokia -// northwesternmutual : 2015-06-18 Northwestern Mutual Registry, LLC -northwesternmutual - -// norton : 2014-12-04 NortonLifeLock Inc. +// norton : NortonLifeLock Inc. +// https://www.iana.org/domains/root/db/norton.html norton -// now : 2015-06-25 Amazon Registry Services, Inc. +// now : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/now.html now -// nowruz : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti. +// nowruz : Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti. +// https://www.iana.org/domains/root/db/nowruz.html nowruz -// nowtv : 2015-05-14 Starbucks (HK) Limited +// nowtv : Starbucks (HK) Limited +// https://www.iana.org/domains/root/db/nowtv.html nowtv -// nra : 2014-05-22 NRA Holdings Company, INC. +// nra : NRA Holdings Company, INC. +// https://www.iana.org/domains/root/db/nra.html nra -// nrw : 2013-11-21 Minds + Machines GmbH +// nrw : Minds + Machines GmbH +// https://www.iana.org/domains/root/db/nrw.html nrw -// ntt : 2014-10-31 NIPPON TELEGRAPH AND TELEPHONE CORPORATION +// ntt : NIPPON TELEGRAPH AND TELEPHONE CORPORATION +// https://www.iana.org/domains/root/db/ntt.html ntt -// nyc : 2014-01-23 The City of New York by and through the New York City Department of Information Technology & Telecommunications +// nyc : The City of New York by and through the New York City Department of Information Technology & Telecommunications +// https://www.iana.org/domains/root/db/nyc.html nyc -// obi : 2014-09-25 OBI Group Holding SE & Co. KGaA +// obi : OBI Group Holding SE & Co. KGaA +// https://www.iana.org/domains/root/db/obi.html obi -// observer : 2015-04-30 Dog Beach, LLC +// observer : Fegistry, LLC +// https://www.iana.org/domains/root/db/observer.html observer -// office : 2015-03-12 Microsoft Corporation +// office : Microsoft Corporation +// https://www.iana.org/domains/root/db/office.html office -// okinawa : 2013-12-05 BRregistry, Inc. +// okinawa : BRregistry, Inc. +// https://www.iana.org/domains/root/db/okinawa.html okinawa -// olayan : 2015-05-14 Crescent Holding GmbH +// olayan : Competrol (Luxembourg) Sarl +// https://www.iana.org/domains/root/db/olayan.html olayan -// olayangroup : 2015-05-14 Crescent Holding GmbH +// olayangroup : Competrol (Luxembourg) Sarl +// https://www.iana.org/domains/root/db/olayangroup.html olayangroup -// oldnavy : 2015-07-31 The Gap, Inc. -oldnavy - -// ollo : 2015-06-04 Dish DBS Corporation +// ollo : Dish DBS Corporation +// https://www.iana.org/domains/root/db/ollo.html ollo -// omega : 2015-01-08 The Swatch Group Ltd +// omega : The Swatch Group Ltd +// https://www.iana.org/domains/root/db/omega.html omega -// one : 2014-11-07 One.com A/S +// one : One.com A/S +// https://www.iana.org/domains/root/db/one.html one -// ong : 2014-03-06 Public Interest Registry +// ong : Public Interest Registry +// https://www.iana.org/domains/root/db/ong.html ong -// onl : 2013-09-16 iRegistry GmbH +// onl : iRegistry GmbH +// https://www.iana.org/domains/root/db/onl.html onl -// online : 2015-01-15 Radix FZC +// online : Radix Technologies Inc. +// https://www.iana.org/domains/root/db/online.html online -// ooo : 2014-01-09 INFIBEAM AVENUES LIMITED +// ooo : INFIBEAM AVENUES LIMITED +// https://www.iana.org/domains/root/db/ooo.html ooo -// open : 2015-07-31 American Express Travel Related Services Company, Inc. +// open : American Express Travel Related Services Company, Inc. +// https://www.iana.org/domains/root/db/open.html open -// oracle : 2014-06-19 Oracle Corporation +// oracle : Oracle Corporation +// https://www.iana.org/domains/root/db/oracle.html oracle -// orange : 2015-03-12 Orange Brand Services Limited +// orange : Orange Brand Services Limited +// https://www.iana.org/domains/root/db/orange.html orange -// organic : 2014-03-27 Afilias Limited +// organic : Identity Digital Limited +// https://www.iana.org/domains/root/db/organic.html organic -// origins : 2015-10-01 The Estée Lauder Companies Inc. +// origins : The Estée Lauder Companies Inc. +// https://www.iana.org/domains/root/db/origins.html origins -// osaka : 2014-09-04 Osaka Registry Co., Ltd. +// osaka : Osaka Registry Co., Ltd. +// https://www.iana.org/domains/root/db/osaka.html osaka -// otsuka : 2013-10-11 Otsuka Holdings Co., Ltd. +// otsuka : Otsuka Holdings Co., Ltd. +// https://www.iana.org/domains/root/db/otsuka.html otsuka -// ott : 2015-06-04 Dish DBS Corporation +// ott : Dish DBS Corporation +// https://www.iana.org/domains/root/db/ott.html ott -// ovh : 2014-01-16 MédiaBC +// ovh : MédiaBC +// https://www.iana.org/domains/root/db/ovh.html ovh -// page : 2014-12-04 Charleston Road Registry Inc. +// page : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/page.html page -// panasonic : 2015-07-30 Panasonic Corporation +// panasonic : Panasonic Holdings Corporation +// https://www.iana.org/domains/root/db/panasonic.html panasonic -// paris : 2014-01-30 City of Paris +// paris : City of Paris +// https://www.iana.org/domains/root/db/paris.html paris -// pars : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti. +// pars : Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti. +// https://www.iana.org/domains/root/db/pars.html pars -// partners : 2013-12-05 Binky Moon, LLC +// partners : Binky Moon, LLC +// https://www.iana.org/domains/root/db/partners.html partners -// parts : 2013-12-05 Binky Moon, LLC +// parts : Binky Moon, LLC +// https://www.iana.org/domains/root/db/parts.html parts -// party : 2014-09-11 Blue Sky Registry Limited +// party : Blue Sky Registry Limited +// https://www.iana.org/domains/root/db/party.html party -// passagens : 2015-03-05 Travel Reservations SRL -passagens - -// pay : 2015-08-27 Amazon Registry Services, Inc. +// pay : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/pay.html pay -// pccw : 2015-05-14 PCCW Enterprises Limited +// pccw : PCCW Enterprises Limited +// https://www.iana.org/domains/root/db/pccw.html pccw -// pet : 2015-05-07 Afilias Limited +// pet : Identity Digital Limited +// https://www.iana.org/domains/root/db/pet.html pet -// pfizer : 2015-09-11 Pfizer Inc. +// pfizer : Pfizer Inc. +// https://www.iana.org/domains/root/db/pfizer.html pfizer -// pharmacy : 2014-06-19 National Association of Boards of Pharmacy +// pharmacy : National Association of Boards of Pharmacy +// https://www.iana.org/domains/root/db/pharmacy.html pharmacy -// phd : 2016-07-28 Charleston Road Registry Inc. +// phd : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/phd.html phd -// philips : 2014-11-07 Koninklijke Philips N.V. +// philips : Koninklijke Philips N.V. +// https://www.iana.org/domains/root/db/philips.html philips -// phone : 2016-06-02 Dish DBS Corporation +// phone : Dish DBS Corporation +// https://www.iana.org/domains/root/db/phone.html phone -// photo : 2013-11-14 UNR Corp. +// photo : Registry Services, LLC +// https://www.iana.org/domains/root/db/photo.html photo -// photography : 2013-09-20 Binky Moon, LLC +// photography : Binky Moon, LLC +// https://www.iana.org/domains/root/db/photography.html photography -// photos : 2013-10-17 Binky Moon, LLC +// photos : Binky Moon, LLC +// https://www.iana.org/domains/root/db/photos.html photos -// physio : 2014-05-01 PhysBiz Pty Ltd +// physio : PhysBiz Pty Ltd +// https://www.iana.org/domains/root/db/physio.html physio -// pics : 2013-11-14 XYZ.COM LLC +// pics : XYZ.COM LLC +// https://www.iana.org/domains/root/db/pics.html pics -// pictet : 2014-06-26 Pictet Europe S.A. +// pictet : Pictet Europe S.A. +// https://www.iana.org/domains/root/db/pictet.html pictet -// pictures : 2014-03-06 Binky Moon, LLC +// pictures : Binky Moon, LLC +// https://www.iana.org/domains/root/db/pictures.html pictures -// pid : 2015-01-08 Top Level Spectrum, Inc. +// pid : Top Level Spectrum, Inc. +// https://www.iana.org/domains/root/db/pid.html pid -// pin : 2014-12-18 Amazon Registry Services, Inc. +// pin : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/pin.html pin -// ping : 2015-06-11 Ping Registry Provider, Inc. +// ping : Ping Registry Provider, Inc. +// https://www.iana.org/domains/root/db/ping.html ping -// pink : 2013-10-01 Afilias Limited +// pink : Identity Digital Limited +// https://www.iana.org/domains/root/db/pink.html pink -// pioneer : 2015-07-16 Pioneer Corporation +// pioneer : Pioneer Corporation +// https://www.iana.org/domains/root/db/pioneer.html pioneer -// pizza : 2014-06-26 Binky Moon, LLC +// pizza : Binky Moon, LLC +// https://www.iana.org/domains/root/db/pizza.html pizza -// place : 2014-04-24 Binky Moon, LLC +// place : Binky Moon, LLC +// https://www.iana.org/domains/root/db/place.html place -// play : 2015-03-05 Charleston Road Registry Inc. +// play : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/play.html play -// playstation : 2015-07-02 Sony Interactive Entertainment Inc. +// playstation : Sony Interactive Entertainment Inc. +// https://www.iana.org/domains/root/db/playstation.html playstation -// plumbing : 2013-09-10 Binky Moon, LLC +// plumbing : Binky Moon, LLC +// https://www.iana.org/domains/root/db/plumbing.html plumbing -// plus : 2015-02-05 Binky Moon, LLC +// plus : Binky Moon, LLC +// https://www.iana.org/domains/root/db/plus.html plus -// pnc : 2015-07-02 PNC Domain Co., LLC +// pnc : PNC Domain Co., LLC +// https://www.iana.org/domains/root/db/pnc.html pnc -// pohl : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG +// pohl : Deutsche Vermögensberatung Aktiengesellschaft DVAG +// https://www.iana.org/domains/root/db/pohl.html pohl -// poker : 2014-07-03 Afilias Limited +// poker : Identity Digital Limited +// https://www.iana.org/domains/root/db/poker.html poker -// politie : 2015-08-20 Politie Nederland +// politie : Politie Nederland +// https://www.iana.org/domains/root/db/politie.html politie -// porn : 2014-10-16 ICM Registry PN LLC +// porn : ICM Registry PN LLC +// https://www.iana.org/domains/root/db/porn.html porn -// pramerica : 2015-07-30 Prudential Financial, Inc. +// pramerica : Prudential Financial, Inc. +// https://www.iana.org/domains/root/db/pramerica.html pramerica -// praxi : 2013-12-05 Praxi S.p.A. +// praxi : Praxi S.p.A. +// https://www.iana.org/domains/root/db/praxi.html praxi -// press : 2014-04-03 Radix FZC +// press : Radix Technologies Inc. +// https://www.iana.org/domains/root/db/press.html press -// prime : 2015-06-25 Amazon Registry Services, Inc. +// prime : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/prime.html prime -// prod : 2014-01-23 Charleston Road Registry Inc. +// prod : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/prod.html prod -// productions : 2013-12-05 Binky Moon, LLC +// productions : Binky Moon, LLC +// https://www.iana.org/domains/root/db/productions.html productions -// prof : 2014-07-24 Charleston Road Registry Inc. +// prof : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/prof.html prof -// progressive : 2015-07-23 Progressive Casualty Insurance Company +// progressive : Progressive Casualty Insurance Company +// https://www.iana.org/domains/root/db/progressive.html progressive -// promo : 2014-12-18 Afilias Limited +// promo : Identity Digital Limited +// https://www.iana.org/domains/root/db/promo.html promo -// properties : 2013-12-05 Binky Moon, LLC +// properties : Binky Moon, LLC +// https://www.iana.org/domains/root/db/properties.html properties -// property : 2014-05-22 UNR Corp. +// property : Digital Property Infrastructure Limited +// https://www.iana.org/domains/root/db/property.html property -// protection : 2015-04-23 XYZ.COM LLC +// protection : XYZ.COM LLC +// https://www.iana.org/domains/root/db/protection.html protection -// pru : 2015-07-30 Prudential Financial, Inc. +// pru : Prudential Financial, Inc. +// https://www.iana.org/domains/root/db/pru.html pru -// prudential : 2015-07-30 Prudential Financial, Inc. +// prudential : Prudential Financial, Inc. +// https://www.iana.org/domains/root/db/prudential.html prudential -// pub : 2013-12-12 Dog Beach, LLC +// pub : Dog Beach, LLC +// https://www.iana.org/domains/root/db/pub.html pub -// pwc : 2015-10-29 PricewaterhouseCoopers LLP +// pwc : PricewaterhouseCoopers LLP +// https://www.iana.org/domains/root/db/pwc.html pwc -// qpon : 2013-11-14 dotCOOL, Inc. +// qpon : dotQPON LLC +// https://www.iana.org/domains/root/db/qpon.html qpon -// quebec : 2013-12-19 PointQuébec Inc +// quebec : PointQuébec Inc +// https://www.iana.org/domains/root/db/quebec.html quebec -// quest : 2015-03-26 XYZ.COM LLC +// quest : XYZ.COM LLC +// https://www.iana.org/domains/root/db/quest.html quest -// racing : 2014-12-04 Premier Registry Limited +// racing : Premier Registry Limited +// https://www.iana.org/domains/root/db/racing.html racing -// radio : 2016-07-21 European Broadcasting Union (EBU) +// radio : European Broadcasting Union (EBU) +// https://www.iana.org/domains/root/db/radio.html radio -// read : 2014-12-18 Amazon Registry Services, Inc. +// read : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/read.html read -// realestate : 2015-09-11 dotRealEstate LLC +// realestate : dotRealEstate LLC +// https://www.iana.org/domains/root/db/realestate.html realestate -// realtor : 2014-05-29 Real Estate Domains LLC +// realtor : Real Estate Domains LLC +// https://www.iana.org/domains/root/db/realtor.html realtor -// realty : 2015-03-19 Dog Beach, LLC +// realty : Internet Naming Company LLC +// https://www.iana.org/domains/root/db/realty.html realty -// recipes : 2013-10-17 Binky Moon, LLC +// recipes : Binky Moon, LLC +// https://www.iana.org/domains/root/db/recipes.html recipes -// red : 2013-11-07 Afilias Limited +// red : Identity Digital Limited +// https://www.iana.org/domains/root/db/red.html red -// redstone : 2014-10-31 Redstone Haute Couture Co., Ltd. +// redstone : Redstone Haute Couture Co., Ltd. +// https://www.iana.org/domains/root/db/redstone.html redstone -// redumbrella : 2015-03-26 Travelers TLD, LLC +// redumbrella : Travelers TLD, LLC +// https://www.iana.org/domains/root/db/redumbrella.html redumbrella -// rehab : 2014-03-06 Dog Beach, LLC +// rehab : Dog Beach, LLC +// https://www.iana.org/domains/root/db/rehab.html rehab -// reise : 2014-03-13 Binky Moon, LLC +// reise : Binky Moon, LLC +// https://www.iana.org/domains/root/db/reise.html reise -// reisen : 2014-03-06 Binky Moon, LLC +// reisen : Binky Moon, LLC +// https://www.iana.org/domains/root/db/reisen.html reisen -// reit : 2014-09-04 National Association of Real Estate Investment Trusts, Inc. +// reit : National Association of Real Estate Investment Trusts, Inc. +// https://www.iana.org/domains/root/db/reit.html reit -// reliance : 2015-04-02 Reliance Industries Limited +// reliance : Reliance Industries Limited +// https://www.iana.org/domains/root/db/reliance.html reliance -// ren : 2013-12-12 ZDNS International Limited +// ren : ZDNS International Limited +// https://www.iana.org/domains/root/db/ren.html ren -// rent : 2014-12-04 XYZ.COM LLC +// rent : XYZ.COM LLC +// https://www.iana.org/domains/root/db/rent.html rent -// rentals : 2013-12-05 Binky Moon, LLC +// rentals : Binky Moon, LLC +// https://www.iana.org/domains/root/db/rentals.html rentals -// repair : 2013-11-07 Binky Moon, LLC +// repair : Binky Moon, LLC +// https://www.iana.org/domains/root/db/repair.html repair -// report : 2013-12-05 Binky Moon, LLC +// report : Binky Moon, LLC +// https://www.iana.org/domains/root/db/report.html report -// republican : 2014-03-20 Dog Beach, LLC +// republican : Dog Beach, LLC +// https://www.iana.org/domains/root/db/republican.html republican -// rest : 2013-12-19 Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable +// rest : Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable +// https://www.iana.org/domains/root/db/rest.html rest -// restaurant : 2014-07-03 Binky Moon, LLC +// restaurant : Binky Moon, LLC +// https://www.iana.org/domains/root/db/restaurant.html restaurant -// review : 2014-11-20 dot Review Limited +// review : dot Review Limited +// https://www.iana.org/domains/root/db/review.html review -// reviews : 2013-09-13 Dog Beach, LLC +// reviews : Dog Beach, LLC +// https://www.iana.org/domains/root/db/reviews.html reviews -// rexroth : 2015-06-18 Robert Bosch GMBH +// rexroth : Robert Bosch GMBH +// https://www.iana.org/domains/root/db/rexroth.html rexroth -// rich : 2013-11-21 iRegistry GmbH +// rich : iRegistry GmbH +// https://www.iana.org/domains/root/db/rich.html rich -// richardli : 2015-05-14 Pacific Century Asset Management (HK) Limited +// richardli : Pacific Century Asset Management (HK) Limited +// https://www.iana.org/domains/root/db/richardli.html richardli -// ricoh : 2014-11-20 Ricoh Company, Ltd. +// ricoh : Ricoh Company, Ltd. +// https://www.iana.org/domains/root/db/ricoh.html ricoh -// ril : 2015-04-02 Reliance Industries Limited +// ril : Reliance Industries Limited +// https://www.iana.org/domains/root/db/ril.html ril -// rio : 2014-02-27 Empresa Municipal de Informática SA - IPLANRIO +// rio : Empresa Municipal de Informática SA - IPLANRIO +// https://www.iana.org/domains/root/db/rio.html rio -// rip : 2014-07-10 Dog Beach, LLC +// rip : Dog Beach, LLC +// https://www.iana.org/domains/root/db/rip.html rip -// rocher : 2014-12-18 Ferrero Trading Lux S.A. -rocher - -// rocks : 2013-11-14 Dog Beach, LLC +// rocks : Dog Beach, LLC +// https://www.iana.org/domains/root/db/rocks.html rocks -// rodeo : 2013-12-19 Registry Services, LLC +// rodeo : Registry Services, LLC +// https://www.iana.org/domains/root/db/rodeo.html rodeo -// rogers : 2015-08-06 Rogers Communications Canada Inc. +// rogers : Rogers Communications Canada Inc. +// https://www.iana.org/domains/root/db/rogers.html rogers -// room : 2014-12-18 Amazon Registry Services, Inc. +// room : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/room.html room -// rsvp : 2014-05-08 Charleston Road Registry Inc. +// rsvp : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/rsvp.html rsvp -// rugby : 2016-12-15 World Rugby Strategic Developments Limited +// rugby : World Rugby Strategic Developments Limited +// https://www.iana.org/domains/root/db/rugby.html rugby -// ruhr : 2013-10-02 regiodot GmbH & Co. KG +// ruhr : dotSaarland GmbH +// https://www.iana.org/domains/root/db/ruhr.html ruhr -// run : 2015-03-19 Binky Moon, LLC +// run : Binky Moon, LLC +// https://www.iana.org/domains/root/db/run.html run -// rwe : 2015-04-02 RWE AG +// rwe : RWE AG +// https://www.iana.org/domains/root/db/rwe.html rwe -// ryukyu : 2014-01-09 BRregistry, Inc. +// ryukyu : BRregistry, Inc. +// https://www.iana.org/domains/root/db/ryukyu.html ryukyu -// saarland : 2013-12-12 dotSaarland GmbH +// saarland : dotSaarland GmbH +// https://www.iana.org/domains/root/db/saarland.html saarland -// safe : 2014-12-18 Amazon Registry Services, Inc. +// safe : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/safe.html safe -// safety : 2015-01-08 Safety Registry Services, LLC. +// safety : Safety Registry Services, LLC. +// https://www.iana.org/domains/root/db/safety.html safety -// sakura : 2014-12-18 SAKURA Internet Inc. +// sakura : SAKURA Internet Inc. +// https://www.iana.org/domains/root/db/sakura.html sakura -// sale : 2014-10-16 Dog Beach, LLC +// sale : Dog Beach, LLC +// https://www.iana.org/domains/root/db/sale.html sale -// salon : 2014-12-11 Binky Moon, LLC +// salon : Binky Moon, LLC +// https://www.iana.org/domains/root/db/salon.html salon -// samsclub : 2015-07-31 Wal-Mart Stores, Inc. +// samsclub : Wal-Mart Stores, Inc. +// https://www.iana.org/domains/root/db/samsclub.html samsclub -// samsung : 2014-04-03 SAMSUNG SDS CO., LTD +// samsung : SAMSUNG SDS CO., LTD +// https://www.iana.org/domains/root/db/samsung.html samsung -// sandvik : 2014-11-13 Sandvik AB +// sandvik : Sandvik AB +// https://www.iana.org/domains/root/db/sandvik.html sandvik -// sandvikcoromant : 2014-11-07 Sandvik AB +// sandvikcoromant : Sandvik AB +// https://www.iana.org/domains/root/db/sandvikcoromant.html sandvikcoromant -// sanofi : 2014-10-09 Sanofi +// sanofi : Sanofi +// https://www.iana.org/domains/root/db/sanofi.html sanofi -// sap : 2014-03-27 SAP AG +// sap : SAP AG +// https://www.iana.org/domains/root/db/sap.html sap -// sarl : 2014-07-03 Binky Moon, LLC +// sarl : Binky Moon, LLC +// https://www.iana.org/domains/root/db/sarl.html sarl -// sas : 2015-04-02 Research IP LLC +// sas : Research IP LLC +// https://www.iana.org/domains/root/db/sas.html sas -// save : 2015-06-25 Amazon Registry Services, Inc. +// save : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/save.html save -// saxo : 2014-10-31 Saxo Bank A/S +// saxo : Saxo Bank A/S +// https://www.iana.org/domains/root/db/saxo.html saxo -// sbi : 2015-03-12 STATE BANK OF INDIA +// sbi : STATE BANK OF INDIA +// https://www.iana.org/domains/root/db/sbi.html sbi -// sbs : 2014-11-07 ShortDot SA +// sbs : ShortDot SA +// https://www.iana.org/domains/root/db/sbs.html sbs -// sca : 2014-03-13 SVENSKA CELLULOSA AKTIEBOLAGET SCA (publ) -sca - -// scb : 2014-02-20 The Siam Commercial Bank Public Company Limited ("SCB") +// scb : The Siam Commercial Bank Public Company Limited ("SCB") +// https://www.iana.org/domains/root/db/scb.html scb -// schaeffler : 2015-08-06 Schaeffler Technologies AG & Co. KG +// schaeffler : Schaeffler Technologies AG & Co. KG +// https://www.iana.org/domains/root/db/schaeffler.html schaeffler -// schmidt : 2014-04-03 SCHMIDT GROUPE S.A.S. +// schmidt : SCHMIDT GROUPE S.A.S. +// https://www.iana.org/domains/root/db/schmidt.html schmidt -// scholarships : 2014-04-24 Scholarships.com, LLC +// scholarships : Scholarships.com, LLC +// https://www.iana.org/domains/root/db/scholarships.html scholarships -// school : 2014-12-18 Binky Moon, LLC +// school : Binky Moon, LLC +// https://www.iana.org/domains/root/db/school.html school -// schule : 2014-03-06 Binky Moon, LLC +// schule : Binky Moon, LLC +// https://www.iana.org/domains/root/db/schule.html schule -// schwarz : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG +// schwarz : Schwarz Domains und Services GmbH & Co. KG +// https://www.iana.org/domains/root/db/schwarz.html schwarz -// science : 2014-09-11 dot Science Limited +// science : dot Science Limited +// https://www.iana.org/domains/root/db/science.html science -// scot : 2014-01-23 Dot Scot Registry Limited +// scot : Dot Scot Registry Limited +// https://www.iana.org/domains/root/db/scot.html scot -// search : 2016-06-09 Charleston Road Registry Inc. +// search : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/search.html search -// seat : 2014-05-22 SEAT, S.A. (Sociedad Unipersonal) +// seat : SEAT, S.A. (Sociedad Unipersonal) +// https://www.iana.org/domains/root/db/seat.html seat -// secure : 2015-08-27 Amazon Registry Services, Inc. +// secure : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/secure.html secure -// security : 2015-05-14 XYZ.COM LLC +// security : XYZ.COM LLC +// https://www.iana.org/domains/root/db/security.html security -// seek : 2014-12-04 Seek Limited +// seek : Seek Limited +// https://www.iana.org/domains/root/db/seek.html seek -// select : 2015-10-08 Registry Services, LLC +// select : Registry Services, LLC +// https://www.iana.org/domains/root/db/select.html select -// sener : 2014-10-24 Sener Ingeniería y Sistemas, S.A. +// sener : Sener Ingeniería y Sistemas, S.A. +// https://www.iana.org/domains/root/db/sener.html sener -// services : 2014-02-27 Binky Moon, LLC +// services : Binky Moon, LLC +// https://www.iana.org/domains/root/db/services.html services -// ses : 2015-07-23 SES -ses - -// seven : 2015-08-06 Seven West Media Ltd +// seven : Seven West Media Ltd +// https://www.iana.org/domains/root/db/seven.html seven -// sew : 2014-07-17 SEW-EURODRIVE GmbH & Co KG +// sew : SEW-EURODRIVE GmbH & Co KG +// https://www.iana.org/domains/root/db/sew.html sew -// sex : 2014-11-13 ICM Registry SX LLC +// sex : ICM Registry SX LLC +// https://www.iana.org/domains/root/db/sex.html sex -// sexy : 2013-09-11 UNR Corp. +// sexy : Internet Naming Company LLC +// https://www.iana.org/domains/root/db/sexy.html sexy -// sfr : 2015-08-13 Societe Francaise du Radiotelephone - SFR +// sfr : Societe Francaise du Radiotelephone - SFR +// https://www.iana.org/domains/root/db/sfr.html sfr -// shangrila : 2015-09-03 Shangri‐La International Hotel Management Limited +// shangrila : Shangri‐La International Hotel Management Limited +// https://www.iana.org/domains/root/db/shangrila.html shangrila -// sharp : 2014-05-01 Sharp Corporation +// sharp : Sharp Corporation +// https://www.iana.org/domains/root/db/sharp.html sharp -// shaw : 2015-04-23 Shaw Cablesystems G.P. +// shaw : Shaw Cablesystems G.P. +// https://www.iana.org/domains/root/db/shaw.html shaw -// shell : 2015-07-30 Shell Information Technology International Inc +// shell : Shell Information Technology International Inc +// https://www.iana.org/domains/root/db/shell.html shell -// shia : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti. +// shia : Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti. +// https://www.iana.org/domains/root/db/shia.html shia -// shiksha : 2013-11-14 Afilias Limited +// shiksha : Identity Digital Limited +// https://www.iana.org/domains/root/db/shiksha.html shiksha -// shoes : 2013-10-02 Binky Moon, LLC +// shoes : Binky Moon, LLC +// https://www.iana.org/domains/root/db/shoes.html shoes -// shop : 2016-04-08 GMO Registry, Inc. +// shop : GMO Registry, Inc. +// https://www.iana.org/domains/root/db/shop.html shop -// shopping : 2016-03-31 Binky Moon, LLC +// shopping : Binky Moon, LLC +// https://www.iana.org/domains/root/db/shopping.html shopping -// shouji : 2015-01-08 Beijing Qihu Keji Co., Ltd. +// shouji : Beijing Qihu Keji Co., Ltd. +// https://www.iana.org/domains/root/db/shouji.html shouji -// show : 2015-03-05 Binky Moon, LLC +// show : Binky Moon, LLC +// https://www.iana.org/domains/root/db/show.html show -// showtime : 2015-08-06 CBS Domains Inc. -showtime - -// silk : 2015-06-25 Amazon Registry Services, Inc. +// silk : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/silk.html silk -// sina : 2015-03-12 Sina Corporation +// sina : Sina Corporation +// https://www.iana.org/domains/root/db/sina.html sina -// singles : 2013-08-27 Binky Moon, LLC +// singles : Binky Moon, LLC +// https://www.iana.org/domains/root/db/singles.html singles -// site : 2015-01-15 Radix FZC +// site : Radix Technologies Inc. +// https://www.iana.org/domains/root/db/site.html site -// ski : 2015-04-09 Afilias Limited +// ski : Identity Digital Limited +// https://www.iana.org/domains/root/db/ski.html ski -// skin : 2015-01-15 XYZ.COM LLC +// skin : XYZ.COM LLC +// https://www.iana.org/domains/root/db/skin.html skin -// sky : 2014-06-19 Sky International AG +// sky : Sky International AG +// https://www.iana.org/domains/root/db/sky.html sky -// skype : 2014-12-18 Microsoft Corporation +// skype : Microsoft Corporation +// https://www.iana.org/domains/root/db/skype.html skype -// sling : 2015-07-30 DISH Technologies L.L.C. +// sling : DISH Technologies L.L.C. +// https://www.iana.org/domains/root/db/sling.html sling -// smart : 2015-07-09 Smart Communications, Inc. (SMART) +// smart : Smart Communications, Inc. (SMART) +// https://www.iana.org/domains/root/db/smart.html smart -// smile : 2014-12-18 Amazon Registry Services, Inc. +// smile : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/smile.html smile -// sncf : 2015-02-19 Société Nationale des Chemins de fer Francais S N C F +// sncf : Société Nationale SNCF +// https://www.iana.org/domains/root/db/sncf.html sncf -// soccer : 2015-03-26 Binky Moon, LLC +// soccer : Binky Moon, LLC +// https://www.iana.org/domains/root/db/soccer.html soccer -// social : 2013-11-07 Dog Beach, LLC +// social : Dog Beach, LLC +// https://www.iana.org/domains/root/db/social.html social -// softbank : 2015-07-02 SoftBank Group Corp. +// softbank : SoftBank Group Corp. +// https://www.iana.org/domains/root/db/softbank.html softbank -// software : 2014-03-20 Dog Beach, LLC +// software : Dog Beach, LLC +// https://www.iana.org/domains/root/db/software.html software -// sohu : 2013-12-19 Sohu.com Limited +// sohu : Sohu.com Limited +// https://www.iana.org/domains/root/db/sohu.html sohu -// solar : 2013-11-07 Binky Moon, LLC +// solar : Binky Moon, LLC +// https://www.iana.org/domains/root/db/solar.html solar -// solutions : 2013-11-07 Binky Moon, LLC +// solutions : Binky Moon, LLC +// https://www.iana.org/domains/root/db/solutions.html solutions -// song : 2015-02-26 Amazon Registry Services, Inc. +// song : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/song.html song -// sony : 2015-01-08 Sony Corporation +// sony : Sony Corporation +// https://www.iana.org/domains/root/db/sony.html sony -// soy : 2014-01-23 Charleston Road Registry Inc. +// soy : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/soy.html soy -// spa : 2019-09-19 Asia Spa and Wellness Promotion Council Limited +// spa : Asia Spa and Wellness Promotion Council Limited +// https://www.iana.org/domains/root/db/spa.html spa -// space : 2014-04-03 Radix FZC +// space : Radix Technologies Inc. +// https://www.iana.org/domains/root/db/space.html space -// sport : 2017-11-16 Global Association of International Sports Federations (GAISF) +// sport : SportAccord +// https://www.iana.org/domains/root/db/sport.html sport -// spot : 2015-02-26 Amazon Registry Services, Inc. +// spot : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/spot.html spot -// srl : 2015-05-07 InterNetX, Corp +// srl : InterNetX, Corp +// https://www.iana.org/domains/root/db/srl.html srl -// stada : 2014-11-13 STADA Arzneimittel AG +// stada : STADA Arzneimittel AG +// https://www.iana.org/domains/root/db/stada.html stada -// staples : 2015-07-30 Staples, Inc. +// staples : Staples, Inc. +// https://www.iana.org/domains/root/db/staples.html staples -// star : 2015-01-08 Star India Private Limited +// star : Star India Private Limited +// https://www.iana.org/domains/root/db/star.html star -// statebank : 2015-03-12 STATE BANK OF INDIA +// statebank : STATE BANK OF INDIA +// https://www.iana.org/domains/root/db/statebank.html statebank -// statefarm : 2015-07-30 State Farm Mutual Automobile Insurance Company +// statefarm : State Farm Mutual Automobile Insurance Company +// https://www.iana.org/domains/root/db/statefarm.html statefarm -// stc : 2014-10-09 Saudi Telecom Company +// stc : Saudi Telecom Company +// https://www.iana.org/domains/root/db/stc.html stc -// stcgroup : 2014-10-09 Saudi Telecom Company +// stcgroup : Saudi Telecom Company +// https://www.iana.org/domains/root/db/stcgroup.html stcgroup -// stockholm : 2014-12-18 Stockholms kommun +// stockholm : Stockholms kommun +// https://www.iana.org/domains/root/db/stockholm.html stockholm -// storage : 2014-12-22 XYZ.COM LLC +// storage : XYZ.COM LLC +// https://www.iana.org/domains/root/db/storage.html storage -// store : 2015-04-09 Radix FZC +// store : Radix Technologies Inc. +// https://www.iana.org/domains/root/db/store.html store -// stream : 2016-01-08 dot Stream Limited +// stream : dot Stream Limited +// https://www.iana.org/domains/root/db/stream.html stream -// studio : 2015-02-11 Dog Beach, LLC +// studio : Dog Beach, LLC +// https://www.iana.org/domains/root/db/studio.html studio -// study : 2014-12-11 OPEN UNIVERSITIES AUSTRALIA PTY LTD +// study : Registry Services, LLC +// https://www.iana.org/domains/root/db/study.html study -// style : 2014-12-04 Binky Moon, LLC +// style : Binky Moon, LLC +// https://www.iana.org/domains/root/db/style.html style -// sucks : 2014-12-22 Vox Populi Registry Ltd. +// sucks : Vox Populi Registry Ltd. +// https://www.iana.org/domains/root/db/sucks.html sucks -// supplies : 2013-12-19 Binky Moon, LLC +// supplies : Binky Moon, LLC +// https://www.iana.org/domains/root/db/supplies.html supplies -// supply : 2013-12-19 Binky Moon, LLC +// supply : Binky Moon, LLC +// https://www.iana.org/domains/root/db/supply.html supply -// support : 2013-10-24 Binky Moon, LLC +// support : Binky Moon, LLC +// https://www.iana.org/domains/root/db/support.html support -// surf : 2014-01-09 Registry Services, LLC +// surf : Registry Services, LLC +// https://www.iana.org/domains/root/db/surf.html surf -// surgery : 2014-03-20 Binky Moon, LLC +// surgery : Binky Moon, LLC +// https://www.iana.org/domains/root/db/surgery.html surgery -// suzuki : 2014-02-20 SUZUKI MOTOR CORPORATION +// suzuki : SUZUKI MOTOR CORPORATION +// https://www.iana.org/domains/root/db/suzuki.html suzuki -// swatch : 2015-01-08 The Swatch Group Ltd +// swatch : The Swatch Group Ltd +// https://www.iana.org/domains/root/db/swatch.html swatch -// swiss : 2014-10-16 Swiss Confederation +// swiss : Swiss Confederation +// https://www.iana.org/domains/root/db/swiss.html swiss -// sydney : 2014-09-18 State of New South Wales, Department of Premier and Cabinet +// sydney : State of New South Wales, Department of Premier and Cabinet +// https://www.iana.org/domains/root/db/sydney.html sydney -// systems : 2013-11-07 Binky Moon, LLC +// systems : Binky Moon, LLC +// https://www.iana.org/domains/root/db/systems.html systems -// tab : 2014-12-04 Tabcorp Holdings Limited +// tab : Tabcorp Holdings Limited +// https://www.iana.org/domains/root/db/tab.html tab -// taipei : 2014-07-10 Taipei City Government +// taipei : Taipei City Government +// https://www.iana.org/domains/root/db/taipei.html taipei -// talk : 2015-04-09 Amazon Registry Services, Inc. +// talk : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/talk.html talk -// taobao : 2015-01-15 Alibaba Group Holding Limited +// taobao : Alibaba Group Holding Limited +// https://www.iana.org/domains/root/db/taobao.html taobao -// target : 2015-07-31 Target Domain Holdings, LLC +// target : Target Domain Holdings, LLC +// https://www.iana.org/domains/root/db/target.html target -// tatamotors : 2015-03-12 Tata Motors Ltd +// tatamotors : Tata Motors Ltd +// https://www.iana.org/domains/root/db/tatamotors.html tatamotors -// tatar : 2014-04-24 Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic" +// tatar : Limited Liability Company "Coordination Center of Regional Domain of Tatarstan Republic" +// https://www.iana.org/domains/root/db/tatar.html tatar -// tattoo : 2013-08-30 UNR Corp. +// tattoo : Registry Services, LLC +// https://www.iana.org/domains/root/db/tattoo.html tattoo -// tax : 2014-03-20 Binky Moon, LLC +// tax : Binky Moon, LLC +// https://www.iana.org/domains/root/db/tax.html tax -// taxi : 2015-03-19 Binky Moon, LLC +// taxi : Binky Moon, LLC +// https://www.iana.org/domains/root/db/taxi.html taxi -// tci : 2014-09-12 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti. +// tci : Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti. +// https://www.iana.org/domains/root/db/tci.html tci -// tdk : 2015-06-11 TDK Corporation +// tdk : TDK Corporation +// https://www.iana.org/domains/root/db/tdk.html tdk -// team : 2015-03-05 Binky Moon, LLC +// team : Binky Moon, LLC +// https://www.iana.org/domains/root/db/team.html team -// tech : 2015-01-30 Radix FZC +// tech : Radix Technologies Inc. +// https://www.iana.org/domains/root/db/tech.html tech -// technology : 2013-09-13 Binky Moon, LLC +// technology : Binky Moon, LLC +// https://www.iana.org/domains/root/db/technology.html technology -// temasek : 2014-08-07 Temasek Holdings (Private) Limited +// temasek : Temasek Holdings (Private) Limited +// https://www.iana.org/domains/root/db/temasek.html temasek -// tennis : 2014-12-04 Binky Moon, LLC +// tennis : Binky Moon, LLC +// https://www.iana.org/domains/root/db/tennis.html tennis -// teva : 2015-07-02 Teva Pharmaceutical Industries Limited +// teva : Teva Pharmaceutical Industries Limited +// https://www.iana.org/domains/root/db/teva.html teva -// thd : 2015-04-02 Home Depot Product Authority, LLC +// thd : Home Depot Product Authority, LLC +// https://www.iana.org/domains/root/db/thd.html thd -// theater : 2015-03-19 Binky Moon, LLC +// theater : Binky Moon, LLC +// https://www.iana.org/domains/root/db/theater.html theater -// theatre : 2015-05-07 XYZ.COM LLC +// theatre : XYZ.COM LLC +// https://www.iana.org/domains/root/db/theatre.html theatre -// tiaa : 2015-07-23 Teachers Insurance and Annuity Association of America +// tiaa : Teachers Insurance and Annuity Association of America +// https://www.iana.org/domains/root/db/tiaa.html tiaa -// tickets : 2015-02-05 XYZ.COM LLC +// tickets : XYZ.COM LLC +// https://www.iana.org/domains/root/db/tickets.html tickets -// tienda : 2013-11-14 Binky Moon, LLC +// tienda : Binky Moon, LLC +// https://www.iana.org/domains/root/db/tienda.html tienda -// tiffany : 2015-01-30 Tiffany and Company -tiffany - -// tips : 2013-09-20 Binky Moon, LLC +// tips : Binky Moon, LLC +// https://www.iana.org/domains/root/db/tips.html tips -// tires : 2014-11-07 Binky Moon, LLC +// tires : Binky Moon, LLC +// https://www.iana.org/domains/root/db/tires.html tires -// tirol : 2014-04-24 punkt Tirol GmbH +// tirol : punkt Tirol GmbH +// https://www.iana.org/domains/root/db/tirol.html tirol -// tjmaxx : 2015-07-16 The TJX Companies, Inc. +// tjmaxx : The TJX Companies, Inc. +// https://www.iana.org/domains/root/db/tjmaxx.html tjmaxx -// tjx : 2015-07-16 The TJX Companies, Inc. +// tjx : The TJX Companies, Inc. +// https://www.iana.org/domains/root/db/tjx.html tjx -// tkmaxx : 2015-07-16 The TJX Companies, Inc. +// tkmaxx : The TJX Companies, Inc. +// https://www.iana.org/domains/root/db/tkmaxx.html tkmaxx -// tmall : 2015-01-15 Alibaba Group Holding Limited +// tmall : Alibaba Group Holding Limited +// https://www.iana.org/domains/root/db/tmall.html tmall -// today : 2013-09-20 Binky Moon, LLC +// today : Binky Moon, LLC +// https://www.iana.org/domains/root/db/today.html today -// tokyo : 2013-11-13 GMO Registry, Inc. +// tokyo : GMO Registry, Inc. +// https://www.iana.org/domains/root/db/tokyo.html tokyo -// tools : 2013-11-21 Binky Moon, LLC +// tools : Binky Moon, LLC +// https://www.iana.org/domains/root/db/tools.html tools -// top : 2014-03-20 .TOP Registry +// top : .TOP Registry +// https://www.iana.org/domains/root/db/top.html top -// toray : 2014-12-18 Toray Industries, Inc. +// toray : Toray Industries, Inc. +// https://www.iana.org/domains/root/db/toray.html toray -// toshiba : 2014-04-10 TOSHIBA Corporation +// toshiba : TOSHIBA Corporation +// https://www.iana.org/domains/root/db/toshiba.html toshiba -// total : 2015-08-06 TOTAL SE +// total : TotalEnergies SE +// https://www.iana.org/domains/root/db/total.html total -// tours : 2015-01-22 Binky Moon, LLC +// tours : Binky Moon, LLC +// https://www.iana.org/domains/root/db/tours.html tours -// town : 2014-03-06 Binky Moon, LLC +// town : Binky Moon, LLC +// https://www.iana.org/domains/root/db/town.html town -// toyota : 2015-04-23 TOYOTA MOTOR CORPORATION +// toyota : TOYOTA MOTOR CORPORATION +// https://www.iana.org/domains/root/db/toyota.html toyota -// toys : 2014-03-06 Binky Moon, LLC +// toys : Binky Moon, LLC +// https://www.iana.org/domains/root/db/toys.html toys -// trade : 2014-01-23 Elite Registry Limited +// trade : Elite Registry Limited +// https://www.iana.org/domains/root/db/trade.html trade -// trading : 2014-12-11 Dog Beach, LLC +// trading : Dog Beach, LLC +// https://www.iana.org/domains/root/db/trading.html trading -// training : 2013-11-07 Binky Moon, LLC +// training : Binky Moon, LLC +// https://www.iana.org/domains/root/db/training.html training -// travel : 2015-10-09 Dog Beach, LLC +// travel : Dog Beach, LLC +// https://www.iana.org/domains/root/db/travel.html travel -// travelchannel : 2015-07-02 Lifestyle Domain Holdings, Inc. -travelchannel - -// travelers : 2015-03-26 Travelers TLD, LLC +// travelers : Travelers TLD, LLC +// https://www.iana.org/domains/root/db/travelers.html travelers -// travelersinsurance : 2015-03-26 Travelers TLD, LLC +// travelersinsurance : Travelers TLD, LLC +// https://www.iana.org/domains/root/db/travelersinsurance.html travelersinsurance -// trust : 2014-10-16 UNR Corp. +// trust : Internet Naming Company LLC +// https://www.iana.org/domains/root/db/trust.html trust -// trv : 2015-03-26 Travelers TLD, LLC +// trv : Travelers TLD, LLC +// https://www.iana.org/domains/root/db/trv.html trv -// tube : 2015-06-11 Latin American Telecom LLC +// tube : Latin American Telecom LLC +// https://www.iana.org/domains/root/db/tube.html tube -// tui : 2014-07-03 TUI AG +// tui : TUI AG +// https://www.iana.org/domains/root/db/tui.html tui -// tunes : 2015-02-26 Amazon Registry Services, Inc. +// tunes : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/tunes.html tunes -// tushu : 2014-12-18 Amazon Registry Services, Inc. +// tushu : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/tushu.html tushu -// tvs : 2015-02-19 T V SUNDRAM IYENGAR & SONS LIMITED +// tvs : T V SUNDRAM IYENGAR & SONS LIMITED +// https://www.iana.org/domains/root/db/tvs.html tvs -// ubank : 2015-08-20 National Australia Bank Limited +// ubank : National Australia Bank Limited +// https://www.iana.org/domains/root/db/ubank.html ubank -// ubs : 2014-12-11 UBS AG +// ubs : UBS AG +// https://www.iana.org/domains/root/db/ubs.html ubs -// unicom : 2015-10-15 China United Network Communications Corporation Limited +// unicom : China United Network Communications Corporation Limited +// https://www.iana.org/domains/root/db/unicom.html unicom -// university : 2014-03-06 Binky Moon, LLC +// university : Binky Moon, LLC +// https://www.iana.org/domains/root/db/university.html university -// uno : 2013-09-11 Radix FZC +// uno : Radix Technologies Inc. +// https://www.iana.org/domains/root/db/uno.html uno -// uol : 2014-05-01 UBN INTERNET LTDA. +// uol : UBN INTERNET LTDA. +// https://www.iana.org/domains/root/db/uol.html uol -// ups : 2015-06-25 UPS Market Driver, Inc. +// ups : UPS Market Driver, Inc. +// https://www.iana.org/domains/root/db/ups.html ups -// vacations : 2013-12-05 Binky Moon, LLC +// vacations : Binky Moon, LLC +// https://www.iana.org/domains/root/db/vacations.html vacations -// vana : 2014-12-11 Lifestyle Domain Holdings, Inc. +// vana : D3 Registry LLC +// https://www.iana.org/domains/root/db/vana.html vana -// vanguard : 2015-09-03 The Vanguard Group, Inc. +// vanguard : The Vanguard Group, Inc. +// https://www.iana.org/domains/root/db/vanguard.html vanguard -// vegas : 2014-01-16 Dot Vegas, Inc. +// vegas : Dot Vegas, Inc. +// https://www.iana.org/domains/root/db/vegas.html vegas -// ventures : 2013-08-27 Binky Moon, LLC +// ventures : Binky Moon, LLC +// https://www.iana.org/domains/root/db/ventures.html ventures -// verisign : 2015-08-13 VeriSign, Inc. +// verisign : VeriSign, Inc. +// https://www.iana.org/domains/root/db/verisign.html verisign -// versicherung : 2014-03-20 tldbox GmbH +// versicherung : tldbox GmbH +// https://www.iana.org/domains/root/db/versicherung.html versicherung -// vet : 2014-03-06 Dog Beach, LLC +// vet : Dog Beach, LLC +// https://www.iana.org/domains/root/db/vet.html vet -// viajes : 2013-10-17 Binky Moon, LLC +// viajes : Binky Moon, LLC +// https://www.iana.org/domains/root/db/viajes.html viajes -// video : 2014-10-16 Dog Beach, LLC +// video : Dog Beach, LLC +// https://www.iana.org/domains/root/db/video.html video -// vig : 2015-05-14 VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe +// vig : VIENNA INSURANCE GROUP AG Wiener Versicherung Gruppe +// https://www.iana.org/domains/root/db/vig.html vig -// viking : 2015-04-02 Viking River Cruises (Bermuda) Ltd. +// viking : Viking River Cruises (Bermuda) Ltd. +// https://www.iana.org/domains/root/db/viking.html viking -// villas : 2013-12-05 Binky Moon, LLC +// villas : Binky Moon, LLC +// https://www.iana.org/domains/root/db/villas.html villas -// vin : 2015-06-18 Binky Moon, LLC +// vin : Binky Moon, LLC +// https://www.iana.org/domains/root/db/vin.html vin -// vip : 2015-01-22 Registry Services, LLC +// vip : Registry Services, LLC +// https://www.iana.org/domains/root/db/vip.html vip -// virgin : 2014-09-25 Virgin Enterprises Limited +// virgin : Virgin Enterprises Limited +// https://www.iana.org/domains/root/db/virgin.html virgin -// visa : 2015-07-30 Visa Worldwide Pte. Limited +// visa : Visa Worldwide Pte. Limited +// https://www.iana.org/domains/root/db/visa.html visa -// vision : 2013-12-05 Binky Moon, LLC +// vision : Binky Moon, LLC +// https://www.iana.org/domains/root/db/vision.html vision -// viva : 2014-11-07 Saudi Telecom Company +// viva : Saudi Telecom Company +// https://www.iana.org/domains/root/db/viva.html viva -// vivo : 2015-07-31 Telefonica Brasil S.A. +// vivo : Telefonica Brasil S.A. +// https://www.iana.org/domains/root/db/vivo.html vivo -// vlaanderen : 2014-02-06 DNS.be vzw +// vlaanderen : DNS.be vzw +// https://www.iana.org/domains/root/db/vlaanderen.html vlaanderen -// vodka : 2013-12-19 Registry Services, LLC +// vodka : Registry Services, LLC +// https://www.iana.org/domains/root/db/vodka.html vodka -// volkswagen : 2015-05-14 Volkswagen Group of America Inc. -volkswagen - -// volvo : 2015-11-12 Volvo Holding Sverige Aktiebolag +// volvo : Volvo Holding Sverige Aktiebolag +// https://www.iana.org/domains/root/db/volvo.html volvo -// vote : 2013-11-21 Monolith Registry LLC +// vote : Monolith Registry LLC +// https://www.iana.org/domains/root/db/vote.html vote -// voting : 2013-11-13 Valuetainment Corp. +// voting : Valuetainment Corp. +// https://www.iana.org/domains/root/db/voting.html voting -// voto : 2013-11-21 Monolith Registry LLC +// voto : Monolith Registry LLC +// https://www.iana.org/domains/root/db/voto.html voto -// voyage : 2013-08-27 Binky Moon, LLC +// voyage : Binky Moon, LLC +// https://www.iana.org/domains/root/db/voyage.html voyage -// vuelos : 2015-03-05 Travel Reservations SRL -vuelos - -// wales : 2014-05-08 Nominet UK +// wales : Nominet UK +// https://www.iana.org/domains/root/db/wales.html wales -// walmart : 2015-07-31 Wal-Mart Stores, Inc. +// walmart : Wal-Mart Stores, Inc. +// https://www.iana.org/domains/root/db/walmart.html walmart -// walter : 2014-11-13 Sandvik AB +// walter : Sandvik AB +// https://www.iana.org/domains/root/db/walter.html walter -// wang : 2013-10-24 Zodiac Wang Limited +// wang : Zodiac Wang Limited +// https://www.iana.org/domains/root/db/wang.html wang -// wanggou : 2014-12-18 Amazon Registry Services, Inc. +// wanggou : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/wanggou.html wanggou -// watch : 2013-11-14 Binky Moon, LLC +// watch : Binky Moon, LLC +// https://www.iana.org/domains/root/db/watch.html watch -// watches : 2014-12-22 Afilias Limited +// watches : Identity Digital Limited +// https://www.iana.org/domains/root/db/watches.html watches -// weather : 2015-01-08 International Business Machines Corporation +// weather : International Business Machines Corporation +// https://www.iana.org/domains/root/db/weather.html weather -// weatherchannel : 2015-03-12 International Business Machines Corporation +// weatherchannel : International Business Machines Corporation +// https://www.iana.org/domains/root/db/weatherchannel.html weatherchannel -// webcam : 2014-01-23 dot Webcam Limited +// webcam : dot Webcam Limited +// https://www.iana.org/domains/root/db/webcam.html webcam -// weber : 2015-06-04 Saint-Gobain Weber SA +// weber : Saint-Gobain Weber SA +// https://www.iana.org/domains/root/db/weber.html weber -// website : 2014-04-03 Radix FZC +// website : Radix Technologies Inc. +// https://www.iana.org/domains/root/db/website.html website -// wedding : 2014-04-24 Registry Services, LLC +// wed +// https://www.iana.org/domains/root/db/wed.html +wed + +// wedding : Registry Services, LLC +// https://www.iana.org/domains/root/db/wedding.html wedding -// weibo : 2015-03-05 Sina Corporation +// weibo : Sina Corporation +// https://www.iana.org/domains/root/db/weibo.html weibo -// weir : 2015-01-29 Weir Group IP Limited +// weir : Weir Group IP Limited +// https://www.iana.org/domains/root/db/weir.html weir -// whoswho : 2014-02-20 Who's Who Registry +// whoswho : Who's Who Registry +// https://www.iana.org/domains/root/db/whoswho.html whoswho -// wien : 2013-10-28 punkt.wien GmbH +// wien : punkt.wien GmbH +// https://www.iana.org/domains/root/db/wien.html wien -// wiki : 2013-11-07 Top Level Design, LLC +// wiki : Registry Services, LLC +// https://www.iana.org/domains/root/db/wiki.html wiki -// williamhill : 2014-03-13 William Hill Organization Limited +// williamhill : William Hill Organization Limited +// https://www.iana.org/domains/root/db/williamhill.html williamhill -// win : 2014-11-20 First Registry Limited +// win : First Registry Limited +// https://www.iana.org/domains/root/db/win.html win -// windows : 2014-12-18 Microsoft Corporation +// windows : Microsoft Corporation +// https://www.iana.org/domains/root/db/windows.html windows -// wine : 2015-06-18 Binky Moon, LLC +// wine : Binky Moon, LLC +// https://www.iana.org/domains/root/db/wine.html wine -// winners : 2015-07-16 The TJX Companies, Inc. +// winners : The TJX Companies, Inc. +// https://www.iana.org/domains/root/db/winners.html winners -// wme : 2014-02-13 William Morris Endeavor Entertainment, LLC +// wme : William Morris Endeavor Entertainment, LLC +// https://www.iana.org/domains/root/db/wme.html wme -// wolterskluwer : 2015-08-06 Wolters Kluwer N.V. +// wolterskluwer : Wolters Kluwer N.V. +// https://www.iana.org/domains/root/db/wolterskluwer.html wolterskluwer -// woodside : 2015-07-09 Woodside Petroleum Limited +// woodside : Woodside Petroleum Limited +// https://www.iana.org/domains/root/db/woodside.html woodside -// work : 2013-12-19 Registry Services, LLC +// work : Registry Services, LLC +// https://www.iana.org/domains/root/db/work.html work -// works : 2013-11-14 Binky Moon, LLC +// works : Binky Moon, LLC +// https://www.iana.org/domains/root/db/works.html works -// world : 2014-06-12 Binky Moon, LLC +// world : Binky Moon, LLC +// https://www.iana.org/domains/root/db/world.html world -// wow : 2015-10-08 Amazon Registry Services, Inc. +// wow : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/wow.html wow -// wtc : 2013-12-19 World Trade Centers Association, Inc. +// wtc : World Trade Centers Association, Inc. +// https://www.iana.org/domains/root/db/wtc.html wtc -// wtf : 2014-03-06 Binky Moon, LLC +// wtf : Binky Moon, LLC +// https://www.iana.org/domains/root/db/wtf.html wtf -// xbox : 2014-12-18 Microsoft Corporation +// xbox : Microsoft Corporation +// https://www.iana.org/domains/root/db/xbox.html xbox -// xerox : 2014-10-24 Xerox DNHC LLC +// xerox : Xerox DNHC LLC +// https://www.iana.org/domains/root/db/xerox.html xerox -// xfinity : 2015-07-09 Comcast IP Holdings I, LLC -xfinity - -// xihuan : 2015-01-08 Beijing Qihu Keji Co., Ltd. +// xihuan : Beijing Qihu Keji Co., Ltd. +// https://www.iana.org/domains/root/db/xihuan.html xihuan -// xin : 2014-12-11 Elegant Leader Limited +// xin : Elegant Leader Limited +// https://www.iana.org/domains/root/db/xin.html xin -// xn--11b4c3d : 2015-01-15 VeriSign Sarl +// xn--11b4c3d : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--11b4c3d.html कॉम -// xn--1ck2e1b : 2015-02-26 Amazon Registry Services, Inc. +// xn--1ck2e1b : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--1ck2e1b.html セール -// xn--1qqw23a : 2014-01-09 Guangzhou YU Wei Information Technology Co., Ltd. +// xn--1qqw23a : Guangzhou YU Wei Information Technology Co., Ltd. +// https://www.iana.org/domains/root/db/xn--1qqw23a.html 佛山 -// xn--30rr7y : 2014-06-12 Excellent First Limited +// xn--30rr7y : Excellent First Limited +// https://www.iana.org/domains/root/db/xn--30rr7y.html 慈善 -// xn--3bst00m : 2013-09-13 Eagle Horizon Limited +// xn--3bst00m : Eagle Horizon Limited +// https://www.iana.org/domains/root/db/xn--3bst00m.html 集团 -// xn--3ds443g : 2013-09-08 TLD REGISTRY LIMITED OY +// xn--3ds443g : TLD REGISTRY LIMITED OY +// https://www.iana.org/domains/root/db/xn--3ds443g.html 在线 -// xn--3pxu8k : 2015-01-15 VeriSign Sarl +// xn--3pxu8k : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--3pxu8k.html 点看 -// xn--42c2d9a : 2015-01-15 VeriSign Sarl +// xn--42c2d9a : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--42c2d9a.html คอม -// xn--45q11c : 2013-11-21 Zodiac Gemini Ltd +// xn--45q11c : Zodiac Gemini Ltd +// https://www.iana.org/domains/root/db/xn--45q11c.html 八卦 -// xn--4gbrim : 2013-10-04 Helium TLDs Ltd +// xn--4gbrim : Helium TLDs Ltd +// https://www.iana.org/domains/root/db/xn--4gbrim.html موقع -// xn--55qw42g : 2013-11-08 China Organizational Name Administration Center +// xn--55qw42g : China Organizational Name Administration Center +// https://www.iana.org/domains/root/db/xn--55qw42g.html 公益 -// xn--55qx5d : 2013-11-14 China Internet Network Information Center (CNNIC) +// xn--55qx5d : China Internet Network Information Center (CNNIC) +// https://www.iana.org/domains/root/db/xn--55qx5d.html 公司 -// xn--5su34j936bgsg : 2015-09-03 Shangri‐La International Hotel Management Limited +// xn--5su34j936bgsg : Shangri‐La International Hotel Management Limited +// https://www.iana.org/domains/root/db/xn--5su34j936bgsg.html 香格里拉 -// xn--5tzm5g : 2014-12-22 Global Website TLD Asia Limited +// xn--5tzm5g : Global Website TLD Asia Limited +// https://www.iana.org/domains/root/db/xn--5tzm5g.html 网站 -// xn--6frz82g : 2013-09-23 Afilias Limited +// xn--6frz82g : Identity Digital Limited +// https://www.iana.org/domains/root/db/xn--6frz82g.html 移动 -// xn--6qq986b3xl : 2013-09-13 Tycoon Treasure Limited +// xn--6qq986b3xl : Tycoon Treasure Limited +// https://www.iana.org/domains/root/db/xn--6qq986b3xl.html 我爱你 -// xn--80adxhks : 2013-12-19 Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID) +// xn--80adxhks : Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID) +// https://www.iana.org/domains/root/db/xn--80adxhks.html москва -// xn--80aqecdr1a : 2015-10-21 Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication) +// xn--80aqecdr1a : Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication) +// https://www.iana.org/domains/root/db/xn--80aqecdr1a.html католик -// xn--80asehdb : 2013-07-14 CORE Association +// xn--80asehdb : CORE Association +// https://www.iana.org/domains/root/db/xn--80asehdb.html онлайн -// xn--80aswg : 2013-07-14 CORE Association +// xn--80aswg : CORE Association +// https://www.iana.org/domains/root/db/xn--80aswg.html сайт -// xn--8y0a063a : 2015-03-26 China United Network Communications Corporation Limited +// xn--8y0a063a : China United Network Communications Corporation Limited +// https://www.iana.org/domains/root/db/xn--8y0a063a.html 联通 -// xn--9dbq2a : 2015-01-15 VeriSign Sarl +// xn--9dbq2a : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--9dbq2a.html קום -// xn--9et52u : 2014-06-12 RISE VICTORY LIMITED +// xn--9et52u : RISE VICTORY LIMITED +// https://www.iana.org/domains/root/db/xn--9et52u.html 时尚 -// xn--9krt00a : 2015-03-12 Sina Corporation +// xn--9krt00a : Sina Corporation +// https://www.iana.org/domains/root/db/xn--9krt00a.html 微博 -// xn--b4w605ferd : 2014-08-07 Temasek Holdings (Private) Limited +// xn--b4w605ferd : Temasek Holdings (Private) Limited +// https://www.iana.org/domains/root/db/xn--b4w605ferd.html 淡马锡 -// xn--bck1b9a5dre4c : 2015-02-26 Amazon Registry Services, Inc. +// xn--bck1b9a5dre4c : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--bck1b9a5dre4c.html ファッション -// xn--c1avg : 2013-11-14 Public Interest Registry +// xn--c1avg : Public Interest Registry +// https://www.iana.org/domains/root/db/xn--c1avg.html орг -// xn--c2br7g : 2015-01-15 VeriSign Sarl +// xn--c2br7g : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--c2br7g.html नेट -// xn--cck2b3b : 2015-02-26 Amazon Registry Services, Inc. +// xn--cck2b3b : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--cck2b3b.html ストア -// xn--cckwcxetd : 2019-12-19 Amazon Registry Services, Inc. +// xn--cckwcxetd : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--cckwcxetd.html アマゾン -// xn--cg4bki : 2013-09-27 SAMSUNG SDS CO., LTD +// xn--cg4bki : SAMSUNG SDS CO., LTD +// https://www.iana.org/domains/root/db/xn--cg4bki.html 삼성 -// xn--czr694b : 2014-01-16 Internet DotTrademark Organisation Limited +// xn--czr694b : Internet DotTrademark Organisation Limited +// https://www.iana.org/domains/root/db/xn--czr694b.html 商标 -// xn--czrs0t : 2013-12-19 Binky Moon, LLC +// xn--czrs0t : Binky Moon, LLC +// https://www.iana.org/domains/root/db/xn--czrs0t.html 商店 -// xn--czru2d : 2013-11-21 Zodiac Aquarius Limited +// xn--czru2d : Zodiac Aquarius Limited +// https://www.iana.org/domains/root/db/xn--czru2d.html 商城 -// xn--d1acj3b : 2013-11-20 The Foundation for Network Initiatives “The Smart Internet” +// xn--d1acj3b : The Foundation for Network Initiatives “The Smart Internet” +// https://www.iana.org/domains/root/db/xn--d1acj3b.html дети -// xn--eckvdtc9d : 2014-12-18 Amazon Registry Services, Inc. +// xn--eckvdtc9d : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--eckvdtc9d.html ポイント -// xn--efvy88h : 2014-08-22 Guangzhou YU Wei Information Technology Co., Ltd. +// xn--efvy88h : Guangzhou YU Wei Information Technology Co., Ltd. +// https://www.iana.org/domains/root/db/xn--efvy88h.html 新闻 -// xn--fct429k : 2015-04-09 Amazon Registry Services, Inc. +// xn--fct429k : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--fct429k.html 家電 -// xn--fhbei : 2015-01-15 VeriSign Sarl +// xn--fhbei : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--fhbei.html كوم -// xn--fiq228c5hs : 2013-09-08 TLD REGISTRY LIMITED OY +// xn--fiq228c5hs : TLD REGISTRY LIMITED OY +// https://www.iana.org/domains/root/db/xn--fiq228c5hs.html 中文网 -// xn--fiq64b : 2013-10-14 CITIC Group Corporation +// xn--fiq64b : CITIC Group Corporation +// https://www.iana.org/domains/root/db/xn--fiq64b.html 中信 -// xn--fjq720a : 2014-05-22 Binky Moon, LLC +// xn--fjq720a : Binky Moon, LLC +// https://www.iana.org/domains/root/db/xn--fjq720a.html 娱乐 -// xn--flw351e : 2014-07-31 Charleston Road Registry Inc. +// xn--flw351e : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/xn--flw351e.html 谷歌 -// xn--fzys8d69uvgm : 2015-05-14 PCCW Enterprises Limited +// xn--fzys8d69uvgm : PCCW Enterprises Limited +// https://www.iana.org/domains/root/db/xn--fzys8d69uvgm.html 電訊盈科 -// xn--g2xx48c : 2015-01-30 Nawang Heli(Xiamen) Network Service Co., LTD. +// xn--g2xx48c : Nawang Heli(Xiamen) Network Service Co., LTD. +// https://www.iana.org/domains/root/db/xn--g2xx48c.html 购物 -// xn--gckr3f0f : 2015-02-26 Amazon Registry Services, Inc. +// xn--gckr3f0f : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--gckr3f0f.html クラウド -// xn--gk3at1e : 2015-10-08 Amazon Registry Services, Inc. +// xn--gk3at1e : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--gk3at1e.html 通販 -// xn--hxt814e : 2014-05-15 Zodiac Taurus Limited +// xn--hxt814e : Zodiac Taurus Limited +// https://www.iana.org/domains/root/db/xn--hxt814e.html 网店 -// xn--i1b6b1a6a2e : 2013-11-14 Public Interest Registry +// xn--i1b6b1a6a2e : Public Interest Registry +// https://www.iana.org/domains/root/db/xn--i1b6b1a6a2e.html संगठन -// xn--imr513n : 2014-12-11 Internet DotTrademark Organisation Limited +// xn--imr513n : Internet DotTrademark Organisation Limited +// https://www.iana.org/domains/root/db/xn--imr513n.html 餐厅 -// xn--io0a7i : 2013-11-14 China Internet Network Information Center (CNNIC) +// xn--io0a7i : China Internet Network Information Center (CNNIC) +// https://www.iana.org/domains/root/db/xn--io0a7i.html 网络 -// xn--j1aef : 2015-01-15 VeriSign Sarl +// xn--j1aef : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--j1aef.html ком -// xn--jlq480n2rg : 2019-12-19 Amazon Registry Services, Inc. +// xn--jlq480n2rg : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--jlq480n2rg.html 亚马逊 -// xn--jlq61u9w7b : 2015-01-08 Nokia Corporation -诺基亚 - -// xn--jvr189m : 2015-02-26 Amazon Registry Services, Inc. +// xn--jvr189m : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--jvr189m.html 食品 -// xn--kcrx77d1x4a : 2014-11-07 Koninklijke Philips N.V. +// xn--kcrx77d1x4a : Koninklijke Philips N.V. +// https://www.iana.org/domains/root/db/xn--kcrx77d1x4a.html 飞利浦 -// xn--kput3i : 2014-02-13 Beijing RITT-Net Technology Development Co., Ltd +// xn--kput3i : Beijing RITT-Net Technology Development Co., Ltd +// https://www.iana.org/domains/root/db/xn--kput3i.html 手机 -// xn--mgba3a3ejt : 2014-11-20 Aramco Services Company +// xn--mgba3a3ejt : Aramco Services Company +// https://www.iana.org/domains/root/db/xn--mgba3a3ejt.html ارامكو -// xn--mgba7c0bbn0a : 2015-05-14 Crescent Holding GmbH +// xn--mgba7c0bbn0a : Competrol (Luxembourg) Sarl +// https://www.iana.org/domains/root/db/xn--mgba7c0bbn0a.html العليان -// xn--mgbaakc7dvf : 2015-09-03 Emirates Telecommunications Corporation (trading as Etisalat) -اتصالات - -// xn--mgbab2bd : 2013-10-31 CORE Association +// xn--mgbab2bd : CORE Association +// https://www.iana.org/domains/root/db/xn--mgbab2bd.html بازار -// xn--mgbca7dzdo : 2015-07-30 Abu Dhabi Systems and Information Centre +// xn--mgbca7dzdo : Abu Dhabi Systems and Information Centre +// https://www.iana.org/domains/root/db/xn--mgbca7dzdo.html ابوظبي -// xn--mgbi4ecexp : 2015-10-21 Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication) +// xn--mgbi4ecexp : Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication) +// https://www.iana.org/domains/root/db/xn--mgbi4ecexp.html كاثوليك -// xn--mgbt3dhd : 2014-09-04 Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti. +// xn--mgbt3dhd : Asia Green IT System Bilgisayar San. ve Tic. Ltd. Sti. +// https://www.iana.org/domains/root/db/xn--mgbt3dhd.html همراه -// xn--mk1bu44c : 2015-01-15 VeriSign Sarl +// xn--mk1bu44c : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--mk1bu44c.html 닷컴 -// xn--mxtq1m : 2014-03-06 Net-Chinese Co., Ltd. +// xn--mxtq1m : Net-Chinese Co., Ltd. +// https://www.iana.org/domains/root/db/xn--mxtq1m.html 政府 -// xn--ngbc5azd : 2013-07-13 International Domain Registry Pty. Ltd. +// xn--ngbc5azd : International Domain Registry Pty. Ltd. +// https://www.iana.org/domains/root/db/xn--ngbc5azd.html شبكة -// xn--ngbe9e0a : 2014-12-04 Kuwait Finance House +// xn--ngbe9e0a : Kuwait Finance House +// https://www.iana.org/domains/root/db/xn--ngbe9e0a.html بيتك -// xn--ngbrx : 2015-11-12 League of Arab States +// xn--ngbrx : League of Arab States +// https://www.iana.org/domains/root/db/xn--ngbrx.html عرب -// xn--nqv7f : 2013-11-14 Public Interest Registry +// xn--nqv7f : Public Interest Registry +// https://www.iana.org/domains/root/db/xn--nqv7f.html 机构 -// xn--nqv7fs00ema : 2013-11-14 Public Interest Registry +// xn--nqv7fs00ema : Public Interest Registry +// https://www.iana.org/domains/root/db/xn--nqv7fs00ema.html 组织机构 -// xn--nyqy26a : 2014-11-07 Stable Tone Limited +// xn--nyqy26a : Stable Tone Limited +// https://www.iana.org/domains/root/db/xn--nyqy26a.html 健康 -// xn--otu796d : 2017-08-06 Jiang Yu Liang Cai Technology Company Limited +// xn--otu796d : Jiang Yu Liang Cai Technology Company Limited +// https://www.iana.org/domains/root/db/xn--otu796d.html 招聘 -// xn--p1acf : 2013-12-12 Rusnames Limited +// xn--p1acf : Rusnames Limited +// https://www.iana.org/domains/root/db/xn--p1acf.html рус -// xn--pssy2u : 2015-01-15 VeriSign Sarl +// xn--pssy2u : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--pssy2u.html 大拿 -// xn--q9jyb4c : 2013-09-17 Charleston Road Registry Inc. +// xn--q9jyb4c : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/xn--q9jyb4c.html みんな -// xn--qcka1pmc : 2014-07-31 Charleston Road Registry Inc. +// xn--qcka1pmc : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/xn--qcka1pmc.html グーグル -// xn--rhqv96g : 2013-09-11 Stable Tone Limited +// xn--rhqv96g : Stable Tone Limited +// https://www.iana.org/domains/root/db/xn--rhqv96g.html 世界 -// xn--rovu88b : 2015-02-26 Amazon Registry Services, Inc. +// xn--rovu88b : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/xn--rovu88b.html 書籍 -// xn--ses554g : 2014-01-16 KNET Co., Ltd. +// xn--ses554g : KNET Co., Ltd. +// https://www.iana.org/domains/root/db/xn--ses554g.html 网址 -// xn--t60b56a : 2015-01-15 VeriSign Sarl +// xn--t60b56a : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--t60b56a.html 닷넷 -// xn--tckwe : 2015-01-15 VeriSign Sarl +// xn--tckwe : VeriSign Sarl +// https://www.iana.org/domains/root/db/xn--tckwe.html コム -// xn--tiq49xqyj : 2015-10-21 Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication) +// xn--tiq49xqyj : Pontificium Consilium de Comunicationibus Socialibus (PCCS) (Pontifical Council for Social Communication) +// https://www.iana.org/domains/root/db/xn--tiq49xqyj.html 天主教 -// xn--unup4y : 2013-07-14 Binky Moon, LLC +// xn--unup4y : Binky Moon, LLC +// https://www.iana.org/domains/root/db/xn--unup4y.html 游戏 -// xn--vermgensberater-ctb : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG +// xn--vermgensberater-ctb : Deutsche Vermögensberatung Aktiengesellschaft DVAG +// https://www.iana.org/domains/root/db/xn--vermgensberater-ctb.html vermögensberater -// xn--vermgensberatung-pwb : 2014-06-23 Deutsche Vermögensberatung Aktiengesellschaft DVAG +// xn--vermgensberatung-pwb : Deutsche Vermögensberatung Aktiengesellschaft DVAG +// https://www.iana.org/domains/root/db/xn--vermgensberatung-pwb.html vermögensberatung -// xn--vhquv : 2013-08-27 Binky Moon, LLC +// xn--vhquv : Binky Moon, LLC +// https://www.iana.org/domains/root/db/xn--vhquv.html 企业 -// xn--vuq861b : 2014-10-16 Beijing Tele-info Network Technology Co., Ltd. +// xn--vuq861b : Beijing Tele-info Technology Co., Ltd. +// https://www.iana.org/domains/root/db/xn--vuq861b.html 信息 -// xn--w4r85el8fhu5dnra : 2015-04-30 Kerry Trading Co. Limited +// xn--w4r85el8fhu5dnra : Kerry Trading Co. Limited +// https://www.iana.org/domains/root/db/xn--w4r85el8fhu5dnra.html 嘉里大酒店 -// xn--w4rs40l : 2015-07-30 Kerry Trading Co. Limited +// xn--w4rs40l : Kerry Trading Co. Limited +// https://www.iana.org/domains/root/db/xn--w4rs40l.html 嘉里 -// xn--xhq521b : 2013-11-14 Guangzhou YU Wei Information Technology Co., Ltd. +// xn--xhq521b : Guangzhou YU Wei Information Technology Co., Ltd. +// https://www.iana.org/domains/root/db/xn--xhq521b.html 广东 -// xn--zfr164b : 2013-11-08 China Organizational Name Administration Center +// xn--zfr164b : China Organizational Name Administration Center +// https://www.iana.org/domains/root/db/xn--zfr164b.html 政务 -// xyz : 2013-12-05 XYZ.COM LLC +// xyz : XYZ.COM LLC +// https://www.iana.org/domains/root/db/xyz.html xyz -// yachts : 2014-01-09 XYZ.COM LLC +// yachts : XYZ.COM LLC +// https://www.iana.org/domains/root/db/yachts.html yachts -// yahoo : 2015-04-02 Oath Inc. +// yahoo : Yahoo Inc. +// https://www.iana.org/domains/root/db/yahoo.html yahoo -// yamaxun : 2014-12-18 Amazon Registry Services, Inc. +// yamaxun : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/yamaxun.html yamaxun -// yandex : 2014-04-10 Yandex Europe B.V. +// yandex : Yandex Europe B.V. +// https://www.iana.org/domains/root/db/yandex.html yandex -// yodobashi : 2014-11-20 YODOBASHI CAMERA CO.,LTD. +// yodobashi : YODOBASHI CAMERA CO.,LTD. +// https://www.iana.org/domains/root/db/yodobashi.html yodobashi -// yoga : 2014-05-29 Registry Services, LLC +// yoga : Registry Services, LLC +// https://www.iana.org/domains/root/db/yoga.html yoga -// yokohama : 2013-12-12 GMO Registry, Inc. +// yokohama : GMO Registry, Inc. +// https://www.iana.org/domains/root/db/yokohama.html yokohama -// you : 2015-04-09 Amazon Registry Services, Inc. +// you : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/you.html you -// youtube : 2014-05-01 Charleston Road Registry Inc. +// youtube : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/youtube.html youtube -// yun : 2015-01-08 Beijing Qihu Keji Co., Ltd. +// yun : Beijing Qihu Keji Co., Ltd. +// https://www.iana.org/domains/root/db/yun.html yun -// zappos : 2015-06-25 Amazon Registry Services, Inc. +// zappos : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/zappos.html zappos -// zara : 2014-11-07 Industria de Diseño Textil, S.A. (INDITEX, S.A.) +// zara : Industria de Diseño Textil, S.A. (INDITEX, S.A.) +// https://www.iana.org/domains/root/db/zara.html zara -// zero : 2014-12-18 Amazon Registry Services, Inc. +// zero : Amazon Registry Services, Inc. +// https://www.iana.org/domains/root/db/zero.html zero -// zip : 2014-05-08 Charleston Road Registry Inc. +// zip : Charleston Road Registry Inc. +// https://www.iana.org/domains/root/db/zip.html zip -// zone : 2013-11-14 Binky Moon, LLC +// zone : Binky Moon, LLC +// https://www.iana.org/domains/root/db/zone.html zone -// zuerich : 2014-11-07 Kanton Zürich (Canton of Zurich) +// zuerich : Kanton Zürich (Canton of Zurich) +// https://www.iana.org/domains/root/db/zuerich.html zuerich @@ -10602,6 +11179,12 @@ zuerich // ===BEGIN PRIVATE DOMAINS=== // (Note: these are in alphabetical order by company name) +// 12CHARS: https://12chars.com +// Submitted by Kenny Niehage +12chars.dev +12chars.it +12chars.pro + // 1GB LLC : https://www.1gb.ua/ // Submitted by 1GB LLC cc.ua @@ -10611,6 +11194,15 @@ ltd.ua // 611coin : https://611project.org/ 611.to +// AAA workspace : https://aaa.vodka +// Submitted by Kirill Rezraf +aaa.vodka + +// A2 Hosting +// Submitted by Tyler Hall +a2hosted.com +cpserver.com + // Aaron Marais' Gitlab pages: https://lab.aaronleem.co.za // Submitted by Aaron Marais graphox.us @@ -10619,15 +11211,34 @@ graphox.us // Submitted by accesso Team *.devcdnaccesso.com +// Acorn Labs : https://acorn.io +// Submitted by Craig Jellick +*.on-acorn.io + +// ActiveTrail: https://www.activetrail.biz/ +// Submitted by Ofer Kalaora +activetrail.biz + +// Adaptable.io : https://adaptable.io +// Submitted by Mark Terrel +adaptable.app + // Adobe : https://www.adobe.com/ // Submitted by Ian Boston and Lars Trieloff adobeaemcloud.com *.dev.adobeaemcloud.com +aem.live hlx.live adobeaemcloud.net +aem.page hlx.page hlx3.page +// Adobe Developer Platform : https://developer.adobe.com +// Submitted by Jesse MacFadyen +adobeio-static.net +adobeioruntime.net + // Agnat sp. z o.o. : https://domena.pl // Submitted by Przemyslaw Plewa beep.pl @@ -10642,6 +11253,24 @@ airkitapps.eu // Submitted by Etienne Stalmans aivencloud.com +// Akamai : https://www.akamai.com/ +// Submitted by Akamai Team +akadns.net +akamai.net +akamai-staging.net +akamaiedge.net +akamaiedge-staging.net +akamaihd.net +akamaihd-staging.net +akamaiorigin.net +akamaiorigin-staging.net +akamaized.net +akamaized-staging.net +edgekey.net +edgekey-staging.net +edgesuite.net +edgesuite-staging.net + // alboto.ca : http://alboto.ca // Submitted by Anton Avramov barsy.ca @@ -10663,105 +11292,769 @@ altervista.org // Submitted by Cyril alwaysdata.net -// Amazon CloudFront : https://aws.amazon.com/cloudfront/ +// Amaze Software : https://amaze.co +// Submitted by Domain Admin +myamaze.net + +// Amazon : https://www.amazon.com/ +// Submitted by AWS Security +// Subsections of Amazon/subsidiaries will appear until "concludes" tag + +// Amazon API Gateway +// Submitted by AWS Security +// Reference: 9e37648f-a66c-4655-9ab1-5981f8737197 +execute-api.cn-north-1.amazonaws.com.cn +execute-api.cn-northwest-1.amazonaws.com.cn +execute-api.af-south-1.amazonaws.com +execute-api.ap-east-1.amazonaws.com +execute-api.ap-northeast-1.amazonaws.com +execute-api.ap-northeast-2.amazonaws.com +execute-api.ap-northeast-3.amazonaws.com +execute-api.ap-south-1.amazonaws.com +execute-api.ap-south-2.amazonaws.com +execute-api.ap-southeast-1.amazonaws.com +execute-api.ap-southeast-2.amazonaws.com +execute-api.ap-southeast-3.amazonaws.com +execute-api.ap-southeast-4.amazonaws.com +execute-api.ca-central-1.amazonaws.com +execute-api.ca-west-1.amazonaws.com +execute-api.eu-central-1.amazonaws.com +execute-api.eu-central-2.amazonaws.com +execute-api.eu-north-1.amazonaws.com +execute-api.eu-south-1.amazonaws.com +execute-api.eu-south-2.amazonaws.com +execute-api.eu-west-1.amazonaws.com +execute-api.eu-west-2.amazonaws.com +execute-api.eu-west-3.amazonaws.com +execute-api.il-central-1.amazonaws.com +execute-api.me-central-1.amazonaws.com +execute-api.me-south-1.amazonaws.com +execute-api.sa-east-1.amazonaws.com +execute-api.us-east-1.amazonaws.com +execute-api.us-east-2.amazonaws.com +execute-api.us-gov-east-1.amazonaws.com +execute-api.us-gov-west-1.amazonaws.com +execute-api.us-west-1.amazonaws.com +execute-api.us-west-2.amazonaws.com + +// Amazon CloudFront // Submitted by Donavan Miller +// Reference: 54144616-fd49-4435-8535-19c6a601bdb3 cloudfront.net -// Amazon Elastic Compute Cloud : https://aws.amazon.com/ec2/ +// Amazon Cognito +// Submitted by AWS Security +// Reference: 09588633-91fe-49d8-b4e7-ec36496d11f3 +auth.af-south-1.amazoncognito.com +auth.ap-northeast-1.amazoncognito.com +auth.ap-northeast-2.amazoncognito.com +auth.ap-northeast-3.amazoncognito.com +auth.ap-south-1.amazoncognito.com +auth.ap-south-2.amazoncognito.com +auth.ap-southeast-1.amazoncognito.com +auth.ap-southeast-2.amazoncognito.com +auth.ap-southeast-3.amazoncognito.com +auth.ap-southeast-4.amazoncognito.com +auth.ca-central-1.amazoncognito.com +auth.eu-central-1.amazoncognito.com +auth.eu-central-2.amazoncognito.com +auth.eu-north-1.amazoncognito.com +auth.eu-south-1.amazoncognito.com +auth.eu-south-2.amazoncognito.com +auth.eu-west-1.amazoncognito.com +auth.eu-west-2.amazoncognito.com +auth.eu-west-3.amazoncognito.com +auth.il-central-1.amazoncognito.com +auth.me-central-1.amazoncognito.com +auth.me-south-1.amazoncognito.com +auth.sa-east-1.amazoncognito.com +auth.us-east-1.amazoncognito.com +auth-fips.us-east-1.amazoncognito.com +auth.us-east-2.amazoncognito.com +auth-fips.us-east-2.amazoncognito.com +auth-fips.us-gov-west-1.amazoncognito.com +auth.us-west-1.amazoncognito.com +auth-fips.us-west-1.amazoncognito.com +auth.us-west-2.amazoncognito.com +auth-fips.us-west-2.amazoncognito.com + +// Amazon EC2 // Submitted by Luke Wells +// Reference: 4c38fa71-58ac-4768-99e5-689c1767e537 +*.compute.amazonaws.com.cn *.compute.amazonaws.com *.compute-1.amazonaws.com -*.compute.amazonaws.com.cn us-east-1.amazonaws.com -// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/ -// Submitted by Luke Wells +// Amazon EMR +// Submitted by AWS Security +// Reference: 82f43f9f-bbb8-400e-8349-854f5a62f20d +emrappui-prod.cn-north-1.amazonaws.com.cn +emrnotebooks-prod.cn-north-1.amazonaws.com.cn +emrstudio-prod.cn-north-1.amazonaws.com.cn +emrappui-prod.cn-northwest-1.amazonaws.com.cn +emrnotebooks-prod.cn-northwest-1.amazonaws.com.cn +emrstudio-prod.cn-northwest-1.amazonaws.com.cn +emrappui-prod.af-south-1.amazonaws.com +emrnotebooks-prod.af-south-1.amazonaws.com +emrstudio-prod.af-south-1.amazonaws.com +emrappui-prod.ap-east-1.amazonaws.com +emrnotebooks-prod.ap-east-1.amazonaws.com +emrstudio-prod.ap-east-1.amazonaws.com +emrappui-prod.ap-northeast-1.amazonaws.com +emrnotebooks-prod.ap-northeast-1.amazonaws.com +emrstudio-prod.ap-northeast-1.amazonaws.com +emrappui-prod.ap-northeast-2.amazonaws.com +emrnotebooks-prod.ap-northeast-2.amazonaws.com +emrstudio-prod.ap-northeast-2.amazonaws.com +emrappui-prod.ap-northeast-3.amazonaws.com +emrnotebooks-prod.ap-northeast-3.amazonaws.com +emrstudio-prod.ap-northeast-3.amazonaws.com +emrappui-prod.ap-south-1.amazonaws.com +emrnotebooks-prod.ap-south-1.amazonaws.com +emrstudio-prod.ap-south-1.amazonaws.com +emrappui-prod.ap-south-2.amazonaws.com +emrnotebooks-prod.ap-south-2.amazonaws.com +emrstudio-prod.ap-south-2.amazonaws.com +emrappui-prod.ap-southeast-1.amazonaws.com +emrnotebooks-prod.ap-southeast-1.amazonaws.com +emrstudio-prod.ap-southeast-1.amazonaws.com +emrappui-prod.ap-southeast-2.amazonaws.com +emrnotebooks-prod.ap-southeast-2.amazonaws.com +emrstudio-prod.ap-southeast-2.amazonaws.com +emrappui-prod.ap-southeast-3.amazonaws.com +emrnotebooks-prod.ap-southeast-3.amazonaws.com +emrstudio-prod.ap-southeast-3.amazonaws.com +emrappui-prod.ap-southeast-4.amazonaws.com +emrnotebooks-prod.ap-southeast-4.amazonaws.com +emrstudio-prod.ap-southeast-4.amazonaws.com +emrappui-prod.ca-central-1.amazonaws.com +emrnotebooks-prod.ca-central-1.amazonaws.com +emrstudio-prod.ca-central-1.amazonaws.com +emrappui-prod.ca-west-1.amazonaws.com +emrnotebooks-prod.ca-west-1.amazonaws.com +emrstudio-prod.ca-west-1.amazonaws.com +emrappui-prod.eu-central-1.amazonaws.com +emrnotebooks-prod.eu-central-1.amazonaws.com +emrstudio-prod.eu-central-1.amazonaws.com +emrappui-prod.eu-central-2.amazonaws.com +emrnotebooks-prod.eu-central-2.amazonaws.com +emrstudio-prod.eu-central-2.amazonaws.com +emrappui-prod.eu-north-1.amazonaws.com +emrnotebooks-prod.eu-north-1.amazonaws.com +emrstudio-prod.eu-north-1.amazonaws.com +emrappui-prod.eu-south-1.amazonaws.com +emrnotebooks-prod.eu-south-1.amazonaws.com +emrstudio-prod.eu-south-1.amazonaws.com +emrappui-prod.eu-south-2.amazonaws.com +emrnotebooks-prod.eu-south-2.amazonaws.com +emrstudio-prod.eu-south-2.amazonaws.com +emrappui-prod.eu-west-1.amazonaws.com +emrnotebooks-prod.eu-west-1.amazonaws.com +emrstudio-prod.eu-west-1.amazonaws.com +emrappui-prod.eu-west-2.amazonaws.com +emrnotebooks-prod.eu-west-2.amazonaws.com +emrstudio-prod.eu-west-2.amazonaws.com +emrappui-prod.eu-west-3.amazonaws.com +emrnotebooks-prod.eu-west-3.amazonaws.com +emrstudio-prod.eu-west-3.amazonaws.com +emrappui-prod.il-central-1.amazonaws.com +emrnotebooks-prod.il-central-1.amazonaws.com +emrstudio-prod.il-central-1.amazonaws.com +emrappui-prod.me-central-1.amazonaws.com +emrnotebooks-prod.me-central-1.amazonaws.com +emrstudio-prod.me-central-1.amazonaws.com +emrappui-prod.me-south-1.amazonaws.com +emrnotebooks-prod.me-south-1.amazonaws.com +emrstudio-prod.me-south-1.amazonaws.com +emrappui-prod.sa-east-1.amazonaws.com +emrnotebooks-prod.sa-east-1.amazonaws.com +emrstudio-prod.sa-east-1.amazonaws.com +emrappui-prod.us-east-1.amazonaws.com +emrnotebooks-prod.us-east-1.amazonaws.com +emrstudio-prod.us-east-1.amazonaws.com +emrappui-prod.us-east-2.amazonaws.com +emrnotebooks-prod.us-east-2.amazonaws.com +emrstudio-prod.us-east-2.amazonaws.com +emrappui-prod.us-gov-east-1.amazonaws.com +emrnotebooks-prod.us-gov-east-1.amazonaws.com +emrstudio-prod.us-gov-east-1.amazonaws.com +emrappui-prod.us-gov-west-1.amazonaws.com +emrnotebooks-prod.us-gov-west-1.amazonaws.com +emrstudio-prod.us-gov-west-1.amazonaws.com +emrappui-prod.us-west-1.amazonaws.com +emrnotebooks-prod.us-west-1.amazonaws.com +emrstudio-prod.us-west-1.amazonaws.com +emrappui-prod.us-west-2.amazonaws.com +emrnotebooks-prod.us-west-2.amazonaws.com +emrstudio-prod.us-west-2.amazonaws.com + +// Amazon Managed Workflows for Apache Airflow +// Submitted by AWS Security +// Reference: 87f24ece-a77e-40e8-bb4a-f6b74fe9f975 +*.cn-north-1.airflow.amazonaws.com.cn +*.cn-northwest-1.airflow.amazonaws.com.cn +*.af-south-1.airflow.amazonaws.com +*.ap-east-1.airflow.amazonaws.com +*.ap-northeast-1.airflow.amazonaws.com +*.ap-northeast-2.airflow.amazonaws.com +*.ap-south-1.airflow.amazonaws.com +*.ap-southeast-1.airflow.amazonaws.com +*.ap-southeast-2.airflow.amazonaws.com +*.ca-central-1.airflow.amazonaws.com +*.eu-central-1.airflow.amazonaws.com +*.eu-north-1.airflow.amazonaws.com +*.eu-south-1.airflow.amazonaws.com +*.eu-west-1.airflow.amazonaws.com +*.eu-west-2.airflow.amazonaws.com +*.eu-west-3.airflow.amazonaws.com +*.me-south-1.airflow.amazonaws.com +*.sa-east-1.airflow.amazonaws.com +*.us-east-1.airflow.amazonaws.com +*.us-east-2.airflow.amazonaws.com +*.us-west-1.airflow.amazonaws.com +*.us-west-2.airflow.amazonaws.com + +// Amazon S3 +// Submitted by AWS Security +// Reference: cd5c8b3a-67b7-4b40-9236-c87ce81a3d10 +s3.dualstack.cn-north-1.amazonaws.com.cn +s3-accesspoint.dualstack.cn-north-1.amazonaws.com.cn +s3-website.dualstack.cn-north-1.amazonaws.com.cn +s3.cn-north-1.amazonaws.com.cn +s3-accesspoint.cn-north-1.amazonaws.com.cn +s3-deprecated.cn-north-1.amazonaws.com.cn +s3-object-lambda.cn-north-1.amazonaws.com.cn +s3-website.cn-north-1.amazonaws.com.cn +s3.dualstack.cn-northwest-1.amazonaws.com.cn +s3-accesspoint.dualstack.cn-northwest-1.amazonaws.com.cn +s3.cn-northwest-1.amazonaws.com.cn +s3-accesspoint.cn-northwest-1.amazonaws.com.cn +s3-object-lambda.cn-northwest-1.amazonaws.com.cn +s3-website.cn-northwest-1.amazonaws.com.cn +s3.dualstack.af-south-1.amazonaws.com +s3-accesspoint.dualstack.af-south-1.amazonaws.com +s3-website.dualstack.af-south-1.amazonaws.com +s3.af-south-1.amazonaws.com +s3-accesspoint.af-south-1.amazonaws.com +s3-object-lambda.af-south-1.amazonaws.com +s3-website.af-south-1.amazonaws.com +s3.dualstack.ap-east-1.amazonaws.com +s3-accesspoint.dualstack.ap-east-1.amazonaws.com +s3.ap-east-1.amazonaws.com +s3-accesspoint.ap-east-1.amazonaws.com +s3-object-lambda.ap-east-1.amazonaws.com +s3-website.ap-east-1.amazonaws.com +s3.dualstack.ap-northeast-1.amazonaws.com +s3-accesspoint.dualstack.ap-northeast-1.amazonaws.com +s3-website.dualstack.ap-northeast-1.amazonaws.com +s3.ap-northeast-1.amazonaws.com +s3-accesspoint.ap-northeast-1.amazonaws.com +s3-object-lambda.ap-northeast-1.amazonaws.com +s3-website.ap-northeast-1.amazonaws.com +s3.dualstack.ap-northeast-2.amazonaws.com +s3-accesspoint.dualstack.ap-northeast-2.amazonaws.com +s3-website.dualstack.ap-northeast-2.amazonaws.com +s3.ap-northeast-2.amazonaws.com +s3-accesspoint.ap-northeast-2.amazonaws.com +s3-object-lambda.ap-northeast-2.amazonaws.com +s3-website.ap-northeast-2.amazonaws.com +s3.dualstack.ap-northeast-3.amazonaws.com +s3-accesspoint.dualstack.ap-northeast-3.amazonaws.com +s3-website.dualstack.ap-northeast-3.amazonaws.com +s3.ap-northeast-3.amazonaws.com +s3-accesspoint.ap-northeast-3.amazonaws.com +s3-object-lambda.ap-northeast-3.amazonaws.com +s3-website.ap-northeast-3.amazonaws.com +s3.dualstack.ap-south-1.amazonaws.com +s3-accesspoint.dualstack.ap-south-1.amazonaws.com +s3-website.dualstack.ap-south-1.amazonaws.com +s3.ap-south-1.amazonaws.com +s3-accesspoint.ap-south-1.amazonaws.com +s3-object-lambda.ap-south-1.amazonaws.com +s3-website.ap-south-1.amazonaws.com +s3.dualstack.ap-south-2.amazonaws.com +s3-accesspoint.dualstack.ap-south-2.amazonaws.com +s3.ap-south-2.amazonaws.com +s3-accesspoint.ap-south-2.amazonaws.com +s3-object-lambda.ap-south-2.amazonaws.com +s3-website.ap-south-2.amazonaws.com +s3.dualstack.ap-southeast-1.amazonaws.com +s3-accesspoint.dualstack.ap-southeast-1.amazonaws.com +s3-website.dualstack.ap-southeast-1.amazonaws.com +s3.ap-southeast-1.amazonaws.com +s3-accesspoint.ap-southeast-1.amazonaws.com +s3-object-lambda.ap-southeast-1.amazonaws.com +s3-website.ap-southeast-1.amazonaws.com +s3.dualstack.ap-southeast-2.amazonaws.com +s3-accesspoint.dualstack.ap-southeast-2.amazonaws.com +s3-website.dualstack.ap-southeast-2.amazonaws.com +s3.ap-southeast-2.amazonaws.com +s3-accesspoint.ap-southeast-2.amazonaws.com +s3-object-lambda.ap-southeast-2.amazonaws.com +s3-website.ap-southeast-2.amazonaws.com +s3.dualstack.ap-southeast-3.amazonaws.com +s3-accesspoint.dualstack.ap-southeast-3.amazonaws.com +s3.ap-southeast-3.amazonaws.com +s3-accesspoint.ap-southeast-3.amazonaws.com +s3-object-lambda.ap-southeast-3.amazonaws.com +s3-website.ap-southeast-3.amazonaws.com +s3.dualstack.ap-southeast-4.amazonaws.com +s3-accesspoint.dualstack.ap-southeast-4.amazonaws.com +s3.ap-southeast-4.amazonaws.com +s3-accesspoint.ap-southeast-4.amazonaws.com +s3-object-lambda.ap-southeast-4.amazonaws.com +s3-website.ap-southeast-4.amazonaws.com +s3.dualstack.ca-central-1.amazonaws.com +s3-accesspoint.dualstack.ca-central-1.amazonaws.com +s3-accesspoint-fips.dualstack.ca-central-1.amazonaws.com +s3-fips.dualstack.ca-central-1.amazonaws.com +s3-website.dualstack.ca-central-1.amazonaws.com +s3.ca-central-1.amazonaws.com +s3-accesspoint.ca-central-1.amazonaws.com +s3-accesspoint-fips.ca-central-1.amazonaws.com +s3-fips.ca-central-1.amazonaws.com +s3-object-lambda.ca-central-1.amazonaws.com +s3-website.ca-central-1.amazonaws.com +s3.dualstack.ca-west-1.amazonaws.com +s3-accesspoint.dualstack.ca-west-1.amazonaws.com +s3-accesspoint-fips.dualstack.ca-west-1.amazonaws.com +s3-fips.dualstack.ca-west-1.amazonaws.com +s3-website.dualstack.ca-west-1.amazonaws.com +s3.ca-west-1.amazonaws.com +s3-accesspoint.ca-west-1.amazonaws.com +s3-accesspoint-fips.ca-west-1.amazonaws.com +s3-fips.ca-west-1.amazonaws.com +s3-website.ca-west-1.amazonaws.com +s3.dualstack.eu-central-1.amazonaws.com +s3-accesspoint.dualstack.eu-central-1.amazonaws.com +s3-website.dualstack.eu-central-1.amazonaws.com +s3.eu-central-1.amazonaws.com +s3-accesspoint.eu-central-1.amazonaws.com +s3-object-lambda.eu-central-1.amazonaws.com +s3-website.eu-central-1.amazonaws.com +s3.dualstack.eu-central-2.amazonaws.com +s3-accesspoint.dualstack.eu-central-2.amazonaws.com +s3.eu-central-2.amazonaws.com +s3-accesspoint.eu-central-2.amazonaws.com +s3-object-lambda.eu-central-2.amazonaws.com +s3-website.eu-central-2.amazonaws.com +s3.dualstack.eu-north-1.amazonaws.com +s3-accesspoint.dualstack.eu-north-1.amazonaws.com +s3.eu-north-1.amazonaws.com +s3-accesspoint.eu-north-1.amazonaws.com +s3-object-lambda.eu-north-1.amazonaws.com +s3-website.eu-north-1.amazonaws.com +s3.dualstack.eu-south-1.amazonaws.com +s3-accesspoint.dualstack.eu-south-1.amazonaws.com +s3-website.dualstack.eu-south-1.amazonaws.com +s3.eu-south-1.amazonaws.com +s3-accesspoint.eu-south-1.amazonaws.com +s3-object-lambda.eu-south-1.amazonaws.com +s3-website.eu-south-1.amazonaws.com +s3.dualstack.eu-south-2.amazonaws.com +s3-accesspoint.dualstack.eu-south-2.amazonaws.com +s3.eu-south-2.amazonaws.com +s3-accesspoint.eu-south-2.amazonaws.com +s3-object-lambda.eu-south-2.amazonaws.com +s3-website.eu-south-2.amazonaws.com +s3.dualstack.eu-west-1.amazonaws.com +s3-accesspoint.dualstack.eu-west-1.amazonaws.com +s3-website.dualstack.eu-west-1.amazonaws.com +s3.eu-west-1.amazonaws.com +s3-accesspoint.eu-west-1.amazonaws.com +s3-deprecated.eu-west-1.amazonaws.com +s3-object-lambda.eu-west-1.amazonaws.com +s3-website.eu-west-1.amazonaws.com +s3.dualstack.eu-west-2.amazonaws.com +s3-accesspoint.dualstack.eu-west-2.amazonaws.com +s3.eu-west-2.amazonaws.com +s3-accesspoint.eu-west-2.amazonaws.com +s3-object-lambda.eu-west-2.amazonaws.com +s3-website.eu-west-2.amazonaws.com +s3.dualstack.eu-west-3.amazonaws.com +s3-accesspoint.dualstack.eu-west-3.amazonaws.com +s3-website.dualstack.eu-west-3.amazonaws.com +s3.eu-west-3.amazonaws.com +s3-accesspoint.eu-west-3.amazonaws.com +s3-object-lambda.eu-west-3.amazonaws.com +s3-website.eu-west-3.amazonaws.com +s3.dualstack.il-central-1.amazonaws.com +s3-accesspoint.dualstack.il-central-1.amazonaws.com +s3.il-central-1.amazonaws.com +s3-accesspoint.il-central-1.amazonaws.com +s3-object-lambda.il-central-1.amazonaws.com +s3-website.il-central-1.amazonaws.com +s3.dualstack.me-central-1.amazonaws.com +s3-accesspoint.dualstack.me-central-1.amazonaws.com +s3.me-central-1.amazonaws.com +s3-accesspoint.me-central-1.amazonaws.com +s3-object-lambda.me-central-1.amazonaws.com +s3-website.me-central-1.amazonaws.com +s3.dualstack.me-south-1.amazonaws.com +s3-accesspoint.dualstack.me-south-1.amazonaws.com +s3.me-south-1.amazonaws.com +s3-accesspoint.me-south-1.amazonaws.com +s3-object-lambda.me-south-1.amazonaws.com +s3-website.me-south-1.amazonaws.com +s3.amazonaws.com +s3-1.amazonaws.com +s3-ap-east-1.amazonaws.com +s3-ap-northeast-1.amazonaws.com +s3-ap-northeast-2.amazonaws.com +s3-ap-northeast-3.amazonaws.com +s3-ap-south-1.amazonaws.com +s3-ap-southeast-1.amazonaws.com +s3-ap-southeast-2.amazonaws.com +s3-ca-central-1.amazonaws.com +s3-eu-central-1.amazonaws.com +s3-eu-north-1.amazonaws.com +s3-eu-west-1.amazonaws.com +s3-eu-west-2.amazonaws.com +s3-eu-west-3.amazonaws.com +s3-external-1.amazonaws.com +s3-fips-us-gov-east-1.amazonaws.com +s3-fips-us-gov-west-1.amazonaws.com +mrap.accesspoint.s3-global.amazonaws.com +s3-me-south-1.amazonaws.com +s3-sa-east-1.amazonaws.com +s3-us-east-2.amazonaws.com +s3-us-gov-east-1.amazonaws.com +s3-us-gov-west-1.amazonaws.com +s3-us-west-1.amazonaws.com +s3-us-west-2.amazonaws.com +s3-website-ap-northeast-1.amazonaws.com +s3-website-ap-southeast-1.amazonaws.com +s3-website-ap-southeast-2.amazonaws.com +s3-website-eu-west-1.amazonaws.com +s3-website-sa-east-1.amazonaws.com +s3-website-us-east-1.amazonaws.com +s3-website-us-gov-west-1.amazonaws.com +s3-website-us-west-1.amazonaws.com +s3-website-us-west-2.amazonaws.com +s3.dualstack.sa-east-1.amazonaws.com +s3-accesspoint.dualstack.sa-east-1.amazonaws.com +s3-website.dualstack.sa-east-1.amazonaws.com +s3.sa-east-1.amazonaws.com +s3-accesspoint.sa-east-1.amazonaws.com +s3-object-lambda.sa-east-1.amazonaws.com +s3-website.sa-east-1.amazonaws.com +s3.dualstack.us-east-1.amazonaws.com +s3-accesspoint.dualstack.us-east-1.amazonaws.com +s3-accesspoint-fips.dualstack.us-east-1.amazonaws.com +s3-fips.dualstack.us-east-1.amazonaws.com +s3-website.dualstack.us-east-1.amazonaws.com +s3.us-east-1.amazonaws.com +s3-accesspoint.us-east-1.amazonaws.com +s3-accesspoint-fips.us-east-1.amazonaws.com +s3-deprecated.us-east-1.amazonaws.com +s3-fips.us-east-1.amazonaws.com +s3-object-lambda.us-east-1.amazonaws.com +s3-website.us-east-1.amazonaws.com +s3.dualstack.us-east-2.amazonaws.com +s3-accesspoint.dualstack.us-east-2.amazonaws.com +s3-accesspoint-fips.dualstack.us-east-2.amazonaws.com +s3-fips.dualstack.us-east-2.amazonaws.com +s3.us-east-2.amazonaws.com +s3-accesspoint.us-east-2.amazonaws.com +s3-accesspoint-fips.us-east-2.amazonaws.com +s3-deprecated.us-east-2.amazonaws.com +s3-fips.us-east-2.amazonaws.com +s3-object-lambda.us-east-2.amazonaws.com +s3-website.us-east-2.amazonaws.com +s3.dualstack.us-gov-east-1.amazonaws.com +s3-accesspoint.dualstack.us-gov-east-1.amazonaws.com +s3-accesspoint-fips.dualstack.us-gov-east-1.amazonaws.com +s3-fips.dualstack.us-gov-east-1.amazonaws.com +s3.us-gov-east-1.amazonaws.com +s3-accesspoint.us-gov-east-1.amazonaws.com +s3-accesspoint-fips.us-gov-east-1.amazonaws.com +s3-fips.us-gov-east-1.amazonaws.com +s3-object-lambda.us-gov-east-1.amazonaws.com +s3-website.us-gov-east-1.amazonaws.com +s3.dualstack.us-gov-west-1.amazonaws.com +s3-accesspoint.dualstack.us-gov-west-1.amazonaws.com +s3-accesspoint-fips.dualstack.us-gov-west-1.amazonaws.com +s3-fips.dualstack.us-gov-west-1.amazonaws.com +s3.us-gov-west-1.amazonaws.com +s3-accesspoint.us-gov-west-1.amazonaws.com +s3-accesspoint-fips.us-gov-west-1.amazonaws.com +s3-fips.us-gov-west-1.amazonaws.com +s3-object-lambda.us-gov-west-1.amazonaws.com +s3-website.us-gov-west-1.amazonaws.com +s3.dualstack.us-west-1.amazonaws.com +s3-accesspoint.dualstack.us-west-1.amazonaws.com +s3-accesspoint-fips.dualstack.us-west-1.amazonaws.com +s3-fips.dualstack.us-west-1.amazonaws.com +s3-website.dualstack.us-west-1.amazonaws.com +s3.us-west-1.amazonaws.com +s3-accesspoint.us-west-1.amazonaws.com +s3-accesspoint-fips.us-west-1.amazonaws.com +s3-fips.us-west-1.amazonaws.com +s3-object-lambda.us-west-1.amazonaws.com +s3-website.us-west-1.amazonaws.com +s3.dualstack.us-west-2.amazonaws.com +s3-accesspoint.dualstack.us-west-2.amazonaws.com +s3-accesspoint-fips.dualstack.us-west-2.amazonaws.com +s3-fips.dualstack.us-west-2.amazonaws.com +s3-website.dualstack.us-west-2.amazonaws.com +s3.us-west-2.amazonaws.com +s3-accesspoint.us-west-2.amazonaws.com +s3-accesspoint-fips.us-west-2.amazonaws.com +s3-deprecated.us-west-2.amazonaws.com +s3-fips.us-west-2.amazonaws.com +s3-object-lambda.us-west-2.amazonaws.com +s3-website.us-west-2.amazonaws.com + +// Amazon SageMaker Ground Truth +// Submitted by AWS Security +// Reference: 98dbfde4-7802-48c3-8751-b60f204e0d9c +labeling.ap-northeast-1.sagemaker.aws +labeling.ap-northeast-2.sagemaker.aws +labeling.ap-south-1.sagemaker.aws +labeling.ap-southeast-1.sagemaker.aws +labeling.ap-southeast-2.sagemaker.aws +labeling.ca-central-1.sagemaker.aws +labeling.eu-central-1.sagemaker.aws +labeling.eu-west-1.sagemaker.aws +labeling.eu-west-2.sagemaker.aws +labeling.us-east-1.sagemaker.aws +labeling.us-east-2.sagemaker.aws +labeling.us-west-2.sagemaker.aws + +// Amazon SageMaker Notebook Instances +// Submitted by AWS Security +// Reference: b5ea56df-669e-43cc-9537-14aa172f5dfc +notebook.af-south-1.sagemaker.aws +notebook.ap-east-1.sagemaker.aws +notebook.ap-northeast-1.sagemaker.aws +notebook.ap-northeast-2.sagemaker.aws +notebook.ap-northeast-3.sagemaker.aws +notebook.ap-south-1.sagemaker.aws +notebook.ap-south-2.sagemaker.aws +notebook.ap-southeast-1.sagemaker.aws +notebook.ap-southeast-2.sagemaker.aws +notebook.ap-southeast-3.sagemaker.aws +notebook.ap-southeast-4.sagemaker.aws +notebook.ca-central-1.sagemaker.aws +notebook-fips.ca-central-1.sagemaker.aws +notebook.ca-west-1.sagemaker.aws +notebook-fips.ca-west-1.sagemaker.aws +notebook.eu-central-1.sagemaker.aws +notebook.eu-central-2.sagemaker.aws +notebook.eu-north-1.sagemaker.aws +notebook.eu-south-1.sagemaker.aws +notebook.eu-south-2.sagemaker.aws +notebook.eu-west-1.sagemaker.aws +notebook.eu-west-2.sagemaker.aws +notebook.eu-west-3.sagemaker.aws +notebook.il-central-1.sagemaker.aws +notebook.me-central-1.sagemaker.aws +notebook.me-south-1.sagemaker.aws +notebook.sa-east-1.sagemaker.aws +notebook.us-east-1.sagemaker.aws +notebook-fips.us-east-1.sagemaker.aws +notebook.us-east-2.sagemaker.aws +notebook-fips.us-east-2.sagemaker.aws +notebook.us-gov-east-1.sagemaker.aws +notebook-fips.us-gov-east-1.sagemaker.aws +notebook.us-gov-west-1.sagemaker.aws +notebook-fips.us-gov-west-1.sagemaker.aws +notebook.us-west-1.sagemaker.aws +notebook-fips.us-west-1.sagemaker.aws +notebook.us-west-2.sagemaker.aws +notebook-fips.us-west-2.sagemaker.aws +notebook.cn-north-1.sagemaker.com.cn +notebook.cn-northwest-1.sagemaker.com.cn + +// Amazon SageMaker Studio +// Submitted by AWS Security +// Reference: 69c723d9-6e1a-4bff-a203-48eecd203183 +studio.af-south-1.sagemaker.aws +studio.ap-east-1.sagemaker.aws +studio.ap-northeast-1.sagemaker.aws +studio.ap-northeast-2.sagemaker.aws +studio.ap-northeast-3.sagemaker.aws +studio.ap-south-1.sagemaker.aws +studio.ap-southeast-1.sagemaker.aws +studio.ap-southeast-2.sagemaker.aws +studio.ap-southeast-3.sagemaker.aws +studio.ca-central-1.sagemaker.aws +studio.eu-central-1.sagemaker.aws +studio.eu-north-1.sagemaker.aws +studio.eu-south-1.sagemaker.aws +studio.eu-south-2.sagemaker.aws +studio.eu-west-1.sagemaker.aws +studio.eu-west-2.sagemaker.aws +studio.eu-west-3.sagemaker.aws +studio.il-central-1.sagemaker.aws +studio.me-central-1.sagemaker.aws +studio.me-south-1.sagemaker.aws +studio.sa-east-1.sagemaker.aws +studio.us-east-1.sagemaker.aws +studio.us-east-2.sagemaker.aws +studio.us-gov-east-1.sagemaker.aws +studio-fips.us-gov-east-1.sagemaker.aws +studio.us-gov-west-1.sagemaker.aws +studio-fips.us-gov-west-1.sagemaker.aws +studio.us-west-1.sagemaker.aws +studio.us-west-2.sagemaker.aws +studio.cn-north-1.sagemaker.com.cn +studio.cn-northwest-1.sagemaker.com.cn + +// Analytics on AWS +// Submitted by AWS Security +// Reference: 955f9f40-a495-4e73-ae85-67b77ac9cadd +analytics-gateway.ap-northeast-1.amazonaws.com +analytics-gateway.ap-northeast-2.amazonaws.com +analytics-gateway.ap-south-1.amazonaws.com +analytics-gateway.ap-southeast-1.amazonaws.com +analytics-gateway.ap-southeast-2.amazonaws.com +analytics-gateway.eu-central-1.amazonaws.com +analytics-gateway.eu-west-1.amazonaws.com +analytics-gateway.us-east-1.amazonaws.com +analytics-gateway.us-east-2.amazonaws.com +analytics-gateway.us-west-2.amazonaws.com + +// AWS Amplify +// Submitted by AWS Security +// Reference: 5ecce854-c033-4fc4-a755-1a9916d9a9bb +*.amplifyapp.com + +// AWS App Runner +// Submitted by AWS Security +// Reference: 6828c008-ba5d-442f-ade5-48da4e7c2316 +*.awsapprunner.com + +// AWS Cloud9 +// Submitted by: AWS Security +// Reference: 30717f72-4007-4f0f-8ed4-864c6f2efec9 +webview-assets.aws-cloud9.af-south-1.amazonaws.com +vfs.cloud9.af-south-1.amazonaws.com +webview-assets.cloud9.af-south-1.amazonaws.com +webview-assets.aws-cloud9.ap-east-1.amazonaws.com +vfs.cloud9.ap-east-1.amazonaws.com +webview-assets.cloud9.ap-east-1.amazonaws.com +webview-assets.aws-cloud9.ap-northeast-1.amazonaws.com +vfs.cloud9.ap-northeast-1.amazonaws.com +webview-assets.cloud9.ap-northeast-1.amazonaws.com +webview-assets.aws-cloud9.ap-northeast-2.amazonaws.com +vfs.cloud9.ap-northeast-2.amazonaws.com +webview-assets.cloud9.ap-northeast-2.amazonaws.com +webview-assets.aws-cloud9.ap-northeast-3.amazonaws.com +vfs.cloud9.ap-northeast-3.amazonaws.com +webview-assets.cloud9.ap-northeast-3.amazonaws.com +webview-assets.aws-cloud9.ap-south-1.amazonaws.com +vfs.cloud9.ap-south-1.amazonaws.com +webview-assets.cloud9.ap-south-1.amazonaws.com +webview-assets.aws-cloud9.ap-southeast-1.amazonaws.com +vfs.cloud9.ap-southeast-1.amazonaws.com +webview-assets.cloud9.ap-southeast-1.amazonaws.com +webview-assets.aws-cloud9.ap-southeast-2.amazonaws.com +vfs.cloud9.ap-southeast-2.amazonaws.com +webview-assets.cloud9.ap-southeast-2.amazonaws.com +webview-assets.aws-cloud9.ca-central-1.amazonaws.com +vfs.cloud9.ca-central-1.amazonaws.com +webview-assets.cloud9.ca-central-1.amazonaws.com +webview-assets.aws-cloud9.eu-central-1.amazonaws.com +vfs.cloud9.eu-central-1.amazonaws.com +webview-assets.cloud9.eu-central-1.amazonaws.com +webview-assets.aws-cloud9.eu-north-1.amazonaws.com +vfs.cloud9.eu-north-1.amazonaws.com +webview-assets.cloud9.eu-north-1.amazonaws.com +webview-assets.aws-cloud9.eu-south-1.amazonaws.com +vfs.cloud9.eu-south-1.amazonaws.com +webview-assets.cloud9.eu-south-1.amazonaws.com +webview-assets.aws-cloud9.eu-west-1.amazonaws.com +vfs.cloud9.eu-west-1.amazonaws.com +webview-assets.cloud9.eu-west-1.amazonaws.com +webview-assets.aws-cloud9.eu-west-2.amazonaws.com +vfs.cloud9.eu-west-2.amazonaws.com +webview-assets.cloud9.eu-west-2.amazonaws.com +webview-assets.aws-cloud9.eu-west-3.amazonaws.com +vfs.cloud9.eu-west-3.amazonaws.com +webview-assets.cloud9.eu-west-3.amazonaws.com +webview-assets.aws-cloud9.il-central-1.amazonaws.com +vfs.cloud9.il-central-1.amazonaws.com +webview-assets.aws-cloud9.me-south-1.amazonaws.com +vfs.cloud9.me-south-1.amazonaws.com +webview-assets.cloud9.me-south-1.amazonaws.com +webview-assets.aws-cloud9.sa-east-1.amazonaws.com +vfs.cloud9.sa-east-1.amazonaws.com +webview-assets.cloud9.sa-east-1.amazonaws.com +webview-assets.aws-cloud9.us-east-1.amazonaws.com +vfs.cloud9.us-east-1.amazonaws.com +webview-assets.cloud9.us-east-1.amazonaws.com +webview-assets.aws-cloud9.us-east-2.amazonaws.com +vfs.cloud9.us-east-2.amazonaws.com +webview-assets.cloud9.us-east-2.amazonaws.com +webview-assets.aws-cloud9.us-west-1.amazonaws.com +vfs.cloud9.us-west-1.amazonaws.com +webview-assets.cloud9.us-west-1.amazonaws.com +webview-assets.aws-cloud9.us-west-2.amazonaws.com +vfs.cloud9.us-west-2.amazonaws.com +webview-assets.cloud9.us-west-2.amazonaws.com + +// AWS Directory Service +// Submitted by AWS Security +// Reference: a13203e8-42dc-4045-a0d2-2ee67bed1068 +awsapps.com + +// AWS Elastic Beanstalk +// Submitted by AWS Security +// Reference: bb5a965c-dec3-4967-aa22-e306ad064797 cn-north-1.eb.amazonaws.com.cn cn-northwest-1.eb.amazonaws.com.cn elasticbeanstalk.com +af-south-1.elasticbeanstalk.com +ap-east-1.elasticbeanstalk.com ap-northeast-1.elasticbeanstalk.com ap-northeast-2.elasticbeanstalk.com ap-northeast-3.elasticbeanstalk.com ap-south-1.elasticbeanstalk.com ap-southeast-1.elasticbeanstalk.com ap-southeast-2.elasticbeanstalk.com +ap-southeast-3.elasticbeanstalk.com ca-central-1.elasticbeanstalk.com eu-central-1.elasticbeanstalk.com +eu-north-1.elasticbeanstalk.com +eu-south-1.elasticbeanstalk.com eu-west-1.elasticbeanstalk.com eu-west-2.elasticbeanstalk.com eu-west-3.elasticbeanstalk.com +il-central-1.elasticbeanstalk.com +me-south-1.elasticbeanstalk.com sa-east-1.elasticbeanstalk.com us-east-1.elasticbeanstalk.com us-east-2.elasticbeanstalk.com +us-gov-east-1.elasticbeanstalk.com us-gov-west-1.elasticbeanstalk.com us-west-1.elasticbeanstalk.com us-west-2.elasticbeanstalk.com -// Amazon Elastic Load Balancing : https://aws.amazon.com/elasticloadbalancing/ +// (AWS) Elastic Load Balancing // Submitted by Luke Wells -*.elb.amazonaws.com +// Reference: 12a3d528-1bac-4433-a359-a395867ffed2 *.elb.amazonaws.com.cn +*.elb.amazonaws.com -// Amazon Global Accelerator : https://aws.amazon.com/global-accelerator/ +// AWS Global Accelerator // Submitted by Daniel Massaguer +// Reference: d916759d-a08b-4241-b536-4db887383a6a awsglobalaccelerator.com -// Amazon S3 : https://aws.amazon.com/s3/ -// Submitted by Luke Wells -s3.amazonaws.com -s3-ap-northeast-1.amazonaws.com -s3-ap-northeast-2.amazonaws.com -s3-ap-south-1.amazonaws.com -s3-ap-southeast-1.amazonaws.com -s3-ap-southeast-2.amazonaws.com -s3-ca-central-1.amazonaws.com -s3-eu-central-1.amazonaws.com -s3-eu-west-1.amazonaws.com -s3-eu-west-2.amazonaws.com -s3-eu-west-3.amazonaws.com -s3-external-1.amazonaws.com -s3-fips-us-gov-west-1.amazonaws.com -s3-sa-east-1.amazonaws.com -s3-us-gov-west-1.amazonaws.com -s3-us-east-2.amazonaws.com -s3-us-west-1.amazonaws.com -s3-us-west-2.amazonaws.com -s3.ap-northeast-2.amazonaws.com -s3.ap-south-1.amazonaws.com -s3.cn-north-1.amazonaws.com.cn -s3.ca-central-1.amazonaws.com -s3.eu-central-1.amazonaws.com -s3.eu-west-2.amazonaws.com -s3.eu-west-3.amazonaws.com -s3.us-east-2.amazonaws.com -s3.dualstack.ap-northeast-1.amazonaws.com -s3.dualstack.ap-northeast-2.amazonaws.com -s3.dualstack.ap-south-1.amazonaws.com -s3.dualstack.ap-southeast-1.amazonaws.com -s3.dualstack.ap-southeast-2.amazonaws.com -s3.dualstack.ca-central-1.amazonaws.com -s3.dualstack.eu-central-1.amazonaws.com -s3.dualstack.eu-west-1.amazonaws.com -s3.dualstack.eu-west-2.amazonaws.com -s3.dualstack.eu-west-3.amazonaws.com -s3.dualstack.sa-east-1.amazonaws.com -s3.dualstack.us-east-1.amazonaws.com -s3.dualstack.us-east-2.amazonaws.com -s3-website-us-east-1.amazonaws.com -s3-website-us-west-1.amazonaws.com -s3-website-us-west-2.amazonaws.com -s3-website-ap-northeast-1.amazonaws.com -s3-website-ap-southeast-1.amazonaws.com -s3-website-ap-southeast-2.amazonaws.com -s3-website-eu-west-1.amazonaws.com -s3-website-sa-east-1.amazonaws.com -s3-website.ap-northeast-2.amazonaws.com -s3-website.ap-south-1.amazonaws.com -s3-website.ca-central-1.amazonaws.com -s3-website.eu-central-1.amazonaws.com -s3-website.eu-west-2.amazonaws.com -s3-website.eu-west-3.amazonaws.com -s3-website.us-east-2.amazonaws.com +// AWS re:Post Private +// Submitted by AWS Security +// Reference: 83385945-225f-416e-9aa0-ad0632bfdcee +*.private.repost.aws + +// eero +// Submitted by Yue Kang +// Reference: 264afe70-f62c-4c02-8ab9-b5281ed24461 +eero.online +eero-stage.online + +// concludes Amazon // Amune : https://amune.org/ // Submitted by Team Amune @@ -10772,6 +12065,10 @@ tele.amune.org // Submitted by Apigee Security Team apigee.io +// Apis Networks: https://apisnetworks.com +// Submitted by Matt Saladna +panel.dev + // Apphud : https://apphud.com // Submitted by Alexander Selivanov siiites.com @@ -10789,6 +12086,10 @@ appudo.net // Submitted by Thomas Orozco on-aptible.com +// Aquapal : https://aquapal.net/ +// Submitted by Aki Ueno +f5.si + // ASEINet : https://www.aseinet.com/ // Submitted by Asei SEKIGUCHI user.aseinet.ne.jp @@ -10818,8 +12119,13 @@ cdn.prod.atlassian-dev.net // Submitted by Lukas Reschke translated.page +// Autocode : https://autocode.com +// Submitted by Jacob Lee +autocode.dev + // AVM : https://avm.de // Submitted by Andreas Weise +myfritz.link myfritz.net // AVStack Pte. Ltd. : https://avstack.io @@ -10871,14 +12177,26 @@ theshop.jp shopselect.net base.shop +// BeagleBoard.org Foundation : https://beagleboard.org +// Submitted by Jason Kridner +beagleboard.io + // Beget Ltd // Submitted by Lev Nekrasov *.beget.app +// Besties : https://besties.house +// Submitted by Hazel Cora +pages.gay + // BetaInABox // Submitted by Adrian betainabox.com +// University of Bielsko-Biala regional domain: http://dns.bielsko.pl/ +// Submitted by Marcin +bielsko.pl + // BinaryLane : http://www.binarylane.com // Submitted by Nathan O'Sullivan bnr.la @@ -10920,8 +12238,13 @@ square7.de bplaced.net square7.net +// Brave : https://brave.com +// Submitted by Andrea Brancaleoni +*.s.brave.io + // Brendly : https://brendly.rs -// Submitted by Dusan Radovanovic +// Submitted by Dusan Radovanovic +shop.brendly.hr shop.brendly.rs // BrowserSafetyMark @@ -10942,6 +12265,13 @@ cafjs.com // Submitted by Marcus Popp mycd.eu +// Canva Pty Ltd : https://canva.com/ +// Submitted by Joel Aquilina +canva-apps.cn +*.my.canvasite.cn +canva-apps.com +*.my.canva.site + // Carrd : https://carrd.co // Submitted by AJ drr.ac @@ -10952,26 +12282,26 @@ ju.mp // CentralNic : http://www.centralnic.com/names/domains // Submitted by registry -ae.org +za.bz br.com cn.com -com.de -com.se de.com eu.com -gb.net -hu.net -jp.net jpn.com mex.com ru.com sa.com -se.net uk.com -uk.net us.com -za.bz za.com +com.de +gb.net +hu.net +jp.net +se.net +uk.net +ae.org +com.se // No longer operated by CentralNic, these entries should be adopted and/or removed by current operators // Submitted by Gavin Brown @@ -10992,8 +12322,8 @@ gr.com // Radix FZC : http://domains.in.net // Submitted by Gavin Brown -in.net web.in +in.net // US REGISTRY LLC : http://us.org // Submitted by Gavin Brown @@ -11031,7 +12361,10 @@ discourse.team // Clever Cloud : https://www.clever-cloud.com/ // Submitted by Quentin Adam +cleverapps.cc +*.services.clever-cloud.com cleverapps.io +cleverapps.tech // Clerk : https://www.clerk.dev // Submitted by Colin Sidoti @@ -11062,8 +12395,8 @@ cloudaccess.net // cloudControl : https://www.cloudcontrol.com/ // Submitted by Tobias Wilken -cloudcontrolled.com cloudcontrolapp.com +cloudcontrolled.com // Cloudera, Inc. : https://www.cloudera.com/ // Submitted by Kedarnath Waikar @@ -11071,9 +12404,23 @@ cloudcontrolapp.com // Cloudflare, Inc. : https://www.cloudflare.com/ // Submitted by Cloudflare Team -pages.dev +cf-ipfs.com +cloudflare-ipfs.com trycloudflare.com +pages.dev +r2.dev workers.dev +cdn.cloudflareanycast.net +cdn.cloudflarecn.net +cdn.cloudflareglobal.net +cloudflare.net +cdn.cloudflare.net + +// cloudscale.ch AG : https://www.cloudscale.ch/ +// Submitted by Gaudenz Steinlin +cust.cloudscale.ch +objects.lpg.cloudscale.ch +objects.rma.cloudscale.ch // Clovyr : https://clovyr.io // Submitted by Patrick Nielsen @@ -11092,22 +12439,33 @@ co.cz // CDN77.com : http://www.cdn77.com // Submitted by Jan Krpes -c.cdn77.org -cdn77-ssl.net +cdn77-storage.com +rsc.contentproxy9.cz r.cdn77.net +cdn77-ssl.net +c.cdn77.org rsc.cdn77.org ssl.origin.cdn77-secure.org // Cloud DNS Ltd : http://www.cloudns.net -// Submitted by Aleksander Hristov +// Submitted by Aleksander Hristov & Boyan Peychev cloudns.asia +cloudns.be cloudns.biz -cloudns.club cloudns.cc +cloudns.ch +cloudns.cl +cloudns.club +dnsabr.com +cloudns.cx cloudns.eu cloudns.in cloudns.info +dns-cloud.net +dns-dynamic.net +cloudns.nz cloudns.org +cloudns.ph cloudns.pro cloudns.pw cloudns.us @@ -11120,6 +12478,11 @@ cnpy.gdn // Submitted by Moritz Marquardt codeberg.page +// CodeSandbox B.V. : https://codesandbox.io +// Submitted by Ives van Hoorne +csb.app +preview.csb.app + // CoDNS B.V. co.nl co.no @@ -11129,6 +12492,10 @@ co.no webhosting.be hosting-cluster.nl +// Convex : https://convex.dev/ +// Submitted by James Cowling +convex.site + // Coordination Center for TLD RU and XN--P1AI : https://cctld.ru/en/domains/domens_ru/reserved/ // Submitted by George Georgievsky ac.ru @@ -11141,8 +12508,8 @@ test.ru // COSIMO GmbH : http://www.cosimo.de // Submitted by Rene Marticke dyn.cosidns.de -dynamisches-dns.de dnsupdater.de +dynamisches-dns.de internet-dns.de l-o-g-i-n.de dynamic-dns.info @@ -11154,6 +12521,10 @@ static-access.net // Submitted by Ales Krajnik realm.cz +// Crisp IM SAS : https://crisp.chat/ +// Submitted by Baptiste Jamin +on.crisp.email + // Cryptonomic : https://cryptonomic.net/ // Submitted by Andrew Cady *.cryptonomic.net @@ -11174,6 +12545,13 @@ curv.dev *.ocp.customer-oci.com *.ocs.customer-oci.com +// Cyclic Software : https://www.cyclic.sh +// Submitted by Kam Lasater +cyclic.app +cyclic.cloud +cyclic-app.com +cyclic.co.in + // cyon GmbH : https://www.cyon.ch/ // Submitted by Dominic Luechinger cyon.link @@ -11181,9 +12559,9 @@ cyon.site // Danger Science Group: https://dangerscience.com/ // Submitted by Skylar MacDonald +platform0.app fnwk.site folionetwork.site -platform0.app // Daplie, Inc : https://daplie.com // Submitted by AJ ONeal @@ -11219,6 +12597,7 @@ dyndns.dappnode.io // Dark, Inc. : https://darklang.com // Submitted by Paul Biggar builtwithdark.com +darklang.io // DataDetect, LLC. : https://datadetect.com // Submitted by Andrew Banchich @@ -11286,6 +12665,10 @@ shoparena.pl // Submitted by Andrew Farmer dreamhosters.com +// Dreamyoungs, Inc. : https://durumis.com +// Submitted by Infra Team +durumis.com + // Drobo : http://www.drobo.com/ // Submitted by Ricardo Padilha mydrobo.com @@ -11312,6 +12695,26 @@ dy.fi tunk.org // DynDNS.com : http://www.dyndns.com/services/dns/dyndns/ +dyndns.biz +for-better.biz +for-more.biz +for-some.biz +for-the.biz +selfip.biz +webhop.biz +ftpaccess.cc +game-server.cc +myphotos.cc +scrapping.cc +blogdns.com +cechire.com +dnsalias.com +dnsdojo.com +doesntexist.com +dontexist.com +doomdns.com +dyn-o-saur.com +dynalias.com dyndns-at-home.com dyndns-at-work.com dyndns-blog.com @@ -11326,64 +12729,14 @@ dyndns-server.com dyndns-web.com dyndns-wiki.com dyndns-work.com -dyndns.biz -dyndns.info -dyndns.org -dyndns.tv -at-band-camp.net -ath.cx -barrel-of-knowledge.info -barrell-of-knowledge.info -better-than.tv -blogdns.com -blogdns.net -blogdns.org -blogsite.org -boldlygoingnowhere.org -broke-it.net -buyshouses.net -cechire.com -dnsalias.com -dnsalias.net -dnsalias.org -dnsdojo.com -dnsdojo.net -dnsdojo.org -does-it.net -doesntexist.com -doesntexist.org -dontexist.com -dontexist.net -dontexist.org -doomdns.com -doomdns.org -dvrdns.org -dyn-o-saur.com -dynalias.com -dynalias.net -dynalias.org -dynathome.net -dyndns.ws -endofinternet.net -endofinternet.org -endoftheinternet.org est-a-la-maison.com est-a-la-masion.com est-le-patron.com est-mon-blogueur.com -for-better.biz -for-more.biz -for-our.info -for-some.biz -for-the.biz -forgot.her.name -forgot.his.name from-ak.com from-al.com from-ar.com -from-az.net from-ca.com -from-co.net from-ct.com from-dc.com from-de.com @@ -11396,10 +12749,8 @@ from-il.com from-in.com from-ks.com from-ky.com -from-la.net from-ma.com from-md.com -from-me.org from-mi.com from-mn.com from-mo.com @@ -11412,7 +12763,6 @@ from-nh.com from-nj.com from-nm.com from-nv.com -from-ny.net from-oh.com from-ok.com from-or.com @@ -11430,45 +12780,18 @@ from-wa.com from-wi.com from-wv.com from-wy.com -ftpaccess.cc -fuettertdasnetz.de -game-host.org -game-server.cc getmyip.com -gets-it.net -go.dyndns.org gotdns.com -gotdns.org -groks-the.info -groks-this.info -ham-radio-op.net -here-for-more.info hobby-site.com -hobby-site.org -home.dyndns.org -homedns.org -homeftp.net -homeftp.org -homeip.net homelinux.com -homelinux.net -homelinux.org homeunix.com -homeunix.net -homeunix.org iamallama.com -in-the-band.net is-a-anarchist.com is-a-blogger.com is-a-bookkeeper.com -is-a-bruinsfan.org is-a-bulls-fan.com -is-a-candidate.org is-a-caterer.com -is-a-celticsfan.org is-a-chef.com -is-a-chef.net -is-a-chef.org is-a-conservative.com is-a-cpa.com is-a-cubicle-slave.com @@ -11477,31 +12800,25 @@ is-a-designer.com is-a-doctor.com is-a-financialadvisor.com is-a-geek.com -is-a-geek.net -is-a-geek.org is-a-green.com is-a-guru.com is-a-hard-worker.com is-a-hunter.com -is-a-knight.org is-a-landscaper.com is-a-lawyer.com is-a-liberal.com is-a-libertarian.com -is-a-linux-user.org is-a-llama.com is-a-musician.com is-a-nascarfan.com is-a-nurse.com is-a-painter.com -is-a-patsfan.org is-a-personaltrainer.com is-a-photographer.com is-a-player.com is-a-republican.com is-a-rockstar.com is-a-socialist.com -is-a-soxfan.org is-a-student.com is-a-teacher.com is-a-techie.com @@ -11513,92 +12830,158 @@ is-an-anarchist.com is-an-artist.com is-an-engineer.com is-an-entertainer.com -is-by.us is-certified.com -is-found.org is-gone.com is-into-anime.com is-into-cars.com is-into-cartoons.com is-into-games.com is-leet.com -is-lost.org is-not-certified.com -is-saved.org is-slick.com is-uberleet.com -is-very-bad.org -is-very-evil.org -is-very-good.org -is-very-nice.org -is-very-sweet.org is-with-theband.com isa-geek.com -isa-geek.net -isa-geek.org isa-hockeynut.com issmarterthanyou.com +likes-pie.com +likescandy.com +neat-url.com +saves-the-whales.com +selfip.com +sells-for-less.com +sells-for-u.com +servebbs.com +simple-url.com +space-to-rent.com +teaches-yoga.com +writesthisblog.com +ath.cx +fuettertdasnetz.de isteingeek.de istmein.de -kicks-ass.net -kicks-ass.org -knowsitall.info -land-4-sale.us lebtimnetz.de leitungsen.de -likes-pie.com -likescandy.com +traeumtgerade.de +barrel-of-knowledge.info +barrell-of-knowledge.info +dyndns.info +for-our.info +groks-the.info +groks-this.info +here-for-more.info +knowsitall.info +selfip.info +webhop.info +forgot.her.name +forgot.his.name +at-band-camp.net +blogdns.net +broke-it.net +buyshouses.net +dnsalias.net +dnsdojo.net +does-it.net +dontexist.net +dynalias.net +dynathome.net +endofinternet.net +from-az.net +from-co.net +from-la.net +from-ny.net +gets-it.net +ham-radio-op.net +homeftp.net +homeip.net +homelinux.net +homeunix.net +in-the-band.net +is-a-chef.net +is-a-geek.net +isa-geek.net +kicks-ass.net +office-on-the.net +podzone.net +scrapper-site.net +selfip.net +sells-it.net +servebbs.net +serveftp.net +thruhere.net +webhop.net merseine.nu mine.nu +shacknet.nu +blogdns.org +blogsite.org +boldlygoingnowhere.org +dnsalias.org +dnsdojo.org +doesntexist.org +dontexist.org +doomdns.org +dvrdns.org +dynalias.org +dyndns.org +go.dyndns.org +home.dyndns.org +endofinternet.org +endoftheinternet.org +from-me.org +game-host.org +gotdns.org +hobby-site.org +homedns.org +homeftp.org +homelinux.org +homeunix.org +is-a-bruinsfan.org +is-a-candidate.org +is-a-celticsfan.org +is-a-chef.org +is-a-geek.org +is-a-knight.org +is-a-linux-user.org +is-a-patsfan.org +is-a-soxfan.org +is-found.org +is-lost.org +is-saved.org +is-very-bad.org +is-very-evil.org +is-very-good.org +is-very-nice.org +is-very-sweet.org +isa-geek.org +kicks-ass.org misconfused.org -mypets.ws -myphotos.cc -neat-url.com -office-on-the.net -on-the-web.tv -podzone.net podzone.org readmyblog.org -saves-the-whales.com -scrapper-site.net -scrapping.cc -selfip.biz -selfip.com -selfip.info -selfip.net selfip.org -sells-for-less.com -sells-for-u.com -sells-it.net sellsyourhome.org -servebbs.com -servebbs.net servebbs.org -serveftp.net serveftp.org servegame.org -shacknet.nu -simple-url.com -space-to-rent.com stuff-4-sale.org -stuff-4-sale.us -teaches-yoga.com -thruhere.net -traeumtgerade.de -webhop.biz -webhop.info -webhop.net webhop.org +better-than.tv +dyndns.tv +on-the-web.tv worse-than.tv -writesthisblog.com +is-by.us +land-4-sale.us +stuff-4-sale.us +dyndns.ws +mypets.ws // ddnss.de : https://www.ddnss.de/ // Submitted by Robert Niedziela ddnss.de dyn.ddnss.de dyndns.ddnss.de -dyndns1.de dyn-ip24.de +dyndns1.de home-webserver.de dyn.home-webserver.de myhome-server.de @@ -11606,8 +12989,8 @@ ddnss.org // Definima : http://www.definima.com/ // Submitted by Maxence Bitterli -definima.net definima.io +definima.net // DigitalOcean App Platform : https://www.digitalocean.com/products/app-platform/ // Submitted by Braxton Huggins @@ -11617,6 +13000,10 @@ ondigitalocean.app // Submitted by Robin H. Johnson *.digitaloceanspaces.com +// DigitalPlat : https://www.digitalplat.org/ +// Submitted by Edward Hsing +us.kg + // dnstrace.pro : https://dnstrace.pro/ // Submitted by Chris Partridge bci.dnstrace.pro @@ -11649,10 +13036,30 @@ dynv6.net // Submitted by Vladimir Dudr e4.cz -// eero : https://eero.com/ -// Submitted by Yue Kang -eero.online -eero-stage.online +// Easypanel : https://easypanel.io +// Submitted by Andrei Canta +easypanel.app +easypanel.host + +// EasyWP : https://www.easywp.com +// Submitted by +*.ewp.live + +// eDirect Corp. : https://hosting.url.com.tw/ +// Submitted by C.S. chang +twmail.cc +twmail.net +twmail.org +mymailer.com.tw +url.tw + +// Electromagnetic Field : https://www.emfcamp.org +// Submitted by +at.emf.camp + +// Elefunc, Inc. : https://elefunc.com +// Submitted by Cetin Sert +rt.ht // Elementor : Elementor Ltd. // Submitted by Anton Barkan @@ -11664,7 +13071,7 @@ elementor.cool en-root.fr // Enalean SAS: https://www.enalean.com -// Submitted by Thomas Cottier +// Submitted by Enalean Security Team mytuleap.com tuleap-partners.com @@ -11756,22 +13163,20 @@ us-2.evennode.com us-3.evennode.com us-4.evennode.com -// eDirect Corp. : https://hosting.url.com.tw/ -// Submitted by C.S. chang -twmail.cc -twmail.net -twmail.org -mymailer.com.tw -url.tw +// Evervault : https://evervault.com +// Submitted by Hannah Neary +relay.evervault.app +relay.evervault.dev + +// Expo : https://expo.dev/ +// Submitted by James Ide +expo.app +staging.expo.app // Fabrica Technologies, Inc. : https://www.fabrica.dev/ // Submitted by Eric Jiang onfabrica.com -// Facebook, Inc. -// Submitted by Peter Ruibal -apps.fbsbx.com - // FAITID : https://faitid.org/ // Submitted by Maxim Alzoba // https://www.flexireg.net/stat_info @@ -11856,9 +13261,8 @@ u.channelsdvr.net // Fastly Inc. : http://www.fastly.com/ // Submitted by Fastly Security edgecompute.app +fastly-edge.com fastly-terrarium.com -fastlylb.net -map.fastlylb.net freetls.fastly.net map.fastly.net a.prod.fastly.net @@ -11866,6 +13270,12 @@ global.prod.fastly.net a.ssl.fastly.net b.ssl.fastly.net global.ssl.fastly.net +fastlylb.net +map.fastlylb.net + +// Fastmail : https://www.fastmail.com/ +// Submitted by Marc Bradshaw +*.user.fm // FASTVPS EESTI OU : https://fastvps.ru/ // Submitted by Likhachev Vasiliy @@ -11924,25 +13334,34 @@ flap.id onflashdrive.app fldrv.com +// FlutterFlow : https://flutterflow.io +// Submitted by Anton Emelyanov +flutterflow.app + // fly.io: https://fly.io // Submitted by Kurt Mackey fly.dev -edgeapp.net shw.io +edgeapp.net // Flynn : https://flynn.io // Submitted by Jonathan Rudenberg flynnhosting.net -// Forgerock : https://www.forgerock.com +// Forgerock : https://www.forgerock.com // Submitted by Roderick Parr forgeblocks.com id.forgerock.io // Framer : https://www.framer.com -// Submitted by Koen Rouwhorst +// Submitted by Koen Rouwhorst +framer.ai framer.app framercanvas.com +framer.media +framer.photos +framer.website +framer.wiki // Frusky MEDIA&PR : https://www.frusky.de // Submitted by Victor Pupynin @@ -11977,7 +13396,25 @@ freemyip.com // Submitted by Daniel A. Maierhofer wien.funkfeuer.at -// Futureweb OG : http://www.futureweb.at +// Future Versatile Group. : https://www.fvg-on.net/ +// T.Kabu +daemon.asia +dix.asia +mydns.bz +0am.jp +0g0.jp +0j0.jp +0t0.jp +mydns.jp +pgw.jp +wjg.jp +keyword-on.net +live-on.net +server-on.net +mydns.tw +mydns.vc + +// Futureweb GmbH : https://www.futureweb.at // Submitted by Andreas Schnederle-Wagner *.futurecms.at *.ex.futurecms.at @@ -11988,8 +13425,14 @@ futuremailing.at *.kunden.ortsinfo.at *.statics.cloud +// GCom Internet : https://www.gcom.net.au +// Submitted by Leo Julius +aliases121.com + // GDS : https://www.gov.uk/service-manual/technology/managing-domain-names // Submitted by Stephen Ford +campaign.gov.uk +service.gov.uk independent-commission.uk independent-inquest.uk independent-inquiry.uk @@ -11997,8 +13440,6 @@ independent-panel.uk independent-review.uk public-inquiry.uk royal-commission.uk -campaign.gov.uk -service.gov.uk // CDDO : https://www.gov.uk/guidance/get-an-api-domain-on-govuk // Submitted by Jamie Tanna @@ -12016,9 +13457,11 @@ gentlentapis.com lab.ms cdn-edges.net -// Ghost Foundation : https://ghost.org -// Submitted by Matt Hanley -ghost.io +// Getlocalcert: https://www.getlocalcert.net +// Submitted by Robert Alexander +localcert.net +localhostcert.net +corpnet.work // GignoSystemJapan: http://gsj.bz // Submitted by GignoSystemJapan @@ -12111,6 +13554,7 @@ kill.jp kilo.jp kuron.jp littlestar.jp +lolipopmc.jp lolitapunk.jp lomo.jp lovepop.jp @@ -12161,6 +13605,10 @@ whitesnow.jp zombie.jp heteml.net +// GoDaddy Registry : https://registry.godaddy +// Submitted by Rohan Durrant +graphic.design + // GOV.UK Platform as a Service : https://www.cloud.service.gov.uk/ // Submitted by Tom Whitwell cloudapps.digital @@ -12170,85 +13618,69 @@ london.cloudapps.digital // Submitted by Richard Baker pymnt.uk -// UKHomeOffice : https://www.gov.uk/government/organisations/home-office -// Submitted by Jon Shanks -homeoffice.gov.uk - -// GlobeHosting, Inc. -// Submitted by Zoltan Egresi -ro.im - // GoIP DNS Services : http://www.goip.de // Submitted by Christian Poulter goip.de // Google, Inc. -// Submitted by Eduardo Vela -run.app -a.run.app -web.app -*.0emm.com -appspot.com -*.r.appspot.com -codespot.com -googleapis.com -googlecode.com -pagespeedmobilizer.com -publishproxy.com -withgoogle.com -withyoutube.com -*.gateway.dev -cloud.goog -translate.goog -*.usercontent.goog -cloudfunctions.net +// Submitted by Shannon McCabe blogspot.ae blogspot.al blogspot.am +*.hosted.app +*.run.app +web.app +blogspot.com.ar +blogspot.co.at +blogspot.com.au blogspot.ba blogspot.be blogspot.bg blogspot.bj +blogspot.com.br +blogspot.com.by blogspot.ca blogspot.cf blogspot.ch blogspot.cl -blogspot.co.at -blogspot.co.id -blogspot.co.il -blogspot.co.ke -blogspot.co.nz -blogspot.co.uk -blogspot.co.za -blogspot.com -blogspot.com.ar -blogspot.com.au -blogspot.com.br -blogspot.com.by blogspot.com.co -blogspot.com.cy -blogspot.com.ee -blogspot.com.eg -blogspot.com.es -blogspot.com.mt -blogspot.com.ng -blogspot.com.tr -blogspot.com.uy +*.0emm.com +appspot.com +*.r.appspot.com +blogspot.com +codespot.com +googleapis.com +googlecode.com +pagespeedmobilizer.com +publishproxy.com +withgoogle.com +withyoutube.com blogspot.cv +blogspot.com.cy blogspot.cz blogspot.de +*.gateway.dev blogspot.dk +blogspot.com.ee +blogspot.com.eg +blogspot.com.es blogspot.fi blogspot.fr +cloud.goog +translate.goog +*.usercontent.goog blogspot.gr blogspot.hk blogspot.hr blogspot.hu +blogspot.co.id blogspot.ie +blogspot.co.il blogspot.in blogspot.is blogspot.it blogspot.jp +blogspot.co.ke blogspot.kr blogspot.li blogspot.lt @@ -12256,10 +13688,14 @@ blogspot.lu blogspot.md blogspot.mk blogspot.mr +blogspot.com.mt blogspot.mx blogspot.my +cloudfunctions.net +blogspot.com.ng blogspot.nl blogspot.no +blogspot.co.nz blogspot.pe blogspot.pt blogspot.qa @@ -12273,14 +13709,26 @@ blogspot.si blogspot.sk blogspot.sn blogspot.td +blogspot.com.tr blogspot.tw blogspot.ug +blogspot.co.uk +blogspot.com.uy blogspot.vn +blogspot.co.za // Goupile : https://goupile.fr // Submitted by Niels Martignene goupile.fr +// Government of the Netherlands: https://www.government.nl +// Submitted by +gov.nl + +// GrayJay Web Solutions Inc. : https://grayjaysports.ca +// Submitted by Matt Yamkowy +grayjayleagues.com + // Group 53, LLC : https://www.group53.com // Submitted by Tyler Todd awsmppl.com @@ -12300,8 +13748,8 @@ conf.se // Handshake : https://handshake.org // Submitted by Mike Damm -hs.zone hs.run +hs.zone // Hashbang : https://hashbang.sh hashbang.sh @@ -12315,6 +13763,15 @@ hasura-app.io // Submitted by Richard Zowalla pages.it.hs-heilbronn.de +// Helio Networks : https://heliohost.org +// Submitted by Ben Frede +helioho.st +heliohost.us + +// HeiyuSpace: https://lazycat.cloud +// Submitted by Xia Bin +heiyu.space + // Hepforge : https://www.hepforge.org // Submitted by David Grellscheid hepforge.org @@ -12327,9 +13784,7 @@ herokussl.com // Hibernating Rhinos // Submitted by Oren Eini ravendb.cloud -myravendb.com ravendb.community -ravendb.me development.run ravendb.run @@ -12337,6 +13792,12 @@ ravendb.run // Submitted by Krzysztof Wolski homesklep.pl +// Homebase : https://homebase.id/ +// Submitted by Jason Babo +*.kin.one +*.id.pub +*.kin.pub + // Hong Kong Productivity Council: https://www.hkpc.org/ // Submitted by SECaaS Team secaas.hk @@ -12357,11 +13818,18 @@ ltd.ng ngo.ng edu.scot sch.so -org.yt -// HostyHosting (hostyhosting.com) +// HostFly : https://www.ie.ua +// Submitted by Bohdan Dub +ie.ua + +// HostyHosting (https://hostyhosting.com) hostyhosting.io +// Hypernode B.V. : https://www.hypernode.com/ +// Submitted by Cipriano Groenendal +hypernode.io + // Häkkinen.fi // Submitted by Eero Häkkinen häkkinen.fi @@ -12375,10 +13843,15 @@ moonscale.net // Submitted by Hannu Aronsson iki.fi +// iliad italia: https://www.iliad.it +// Submitted by Marios Makassikis +ibxos.it +iliadboxos.it + // Impertrix Solutions : // Submitted by Zhixiang Zhao -impertrixcdn.com impertrix.com +impertrixcdn.com // Incsub, LLC: https://incsub.com/ // Submitted by Aaron Edwards @@ -12395,10 +13868,10 @@ in-berlin.de in-brb.de in-butter.de in-dsl.de -in-dsl.net -in-dsl.org in-vpn.de +in-dsl.net in-vpn.net +in-dsl.org in-vpn.org // info.at : http://www.info.at/ @@ -12406,7 +13879,7 @@ biz.at info.at // info.cx : http://info.cx -// Submitted by Jacob Slater +// Submitted by June Slater info.cx // Interlegis : http://www.interlegis.leg.br @@ -12455,9 +13928,19 @@ iopsys.se // Submitted by Matthew Hardeman ipifony.net -// IServ GmbH : https://iserv.eu -// Submitted by Kim-Alexander Brodowski +// is-a.dev : https://www.is-a.dev +// Submitted by William Harrison +is-a.dev + +// ir.md : https://nic.ir.md +// Submitted by Ali Soizi +ir.md + +// IServ GmbH : https://iserv.de +// Submitted by Mario Hoberg +iservschule.de mein-iserv.de +schulplattform.de schulserver.de test-iserv.de iserv.dev @@ -12470,7 +13953,6 @@ iobb.net // Submitted by Ihor Kolodyuk mel.cloudlets.com.au cloud.interhostsolutions.be -users.scale.virtualcloud.com.br mycloud.by alp1.ae.flow.ch appengine.flow.ch @@ -12494,9 +13976,7 @@ ch.trendhosting.cloud de.trendhosting.cloud jele.club amscompute.com -clicketcloud.com dopaas.com -hidora.com paas.hosted-by-previder.com rag-cloud.hosteur.com rag-cloud-ch.hosteur.com @@ -12564,10 +14044,15 @@ myjino.ru // Submitted by Daniel Fariña jotelulu.cloud +// JouwWeb B.V. : https://www.jouwweb.nl +// Submitted by Camilo Sperberg +webadorsite.com +jouwweb.site + // Joyent : https://www.joyent.com/ // Submitted by Brian Bennett -*.triton.zone *.cns.joyent.com +*.triton.zone // JS.ORG : http://dns.js.org // Submitted by Stefan Keim @@ -12609,8 +14094,8 @@ oya.to // Katholieke Universiteit Leuven: https://www.kuleuven.be // Submitted by Abuse KU Leuven -kuleuven.cloud ezproxy.kuleuven.be +kuleuven.cloud // .KRD : http://nic.krd/data/krd/Registration%20Policy.pdf co.krd @@ -12618,8 +14103,8 @@ edu.krd // Krellian Ltd. : https://krellian.com // Submitted by Ben Francis -krellian.net webthings.io +krellian.net // LCube - Professional hosting e.K. : https://www.lcube-webhosting.de // Submitted by Lars Laehn @@ -12637,6 +14122,10 @@ lpusercontent.com // Submitted by Lelux Admin lelux.site +// Libre IT Ltd : https://libre.nz +// Submitted by Tomas Maggio +runcontainers.dev + // Lifetime Hosting : https://Lifetime.Hosting/ // Submitted by Mike Fillator co.business @@ -12647,14 +14136,10 @@ co.network co.place co.technology -// Lightmaker Property Manager, Inc. : https://app.lmpm.com/ -// Submitted by Greg Holland -app.lmpm.com - // linkyard ldt: https://www.linkyard.ch/ // Submitted by Mario Siegenthaler -linkyard.cloud linkyard-cloud.ch +linkyard.cloud // Linode : https://linode.com // Submitted by @@ -12709,18 +14194,19 @@ lugs.org.uk // Lukanet Ltd : https://lukanet.com // Submitted by Anton Avramov barsy.bg -barsy.co.uk -barsyonline.co.uk +barsy.club barsycenter.com barsyonline.com -barsy.club barsy.de +barsy.dev barsy.eu +barsy.gr barsy.in barsy.info barsy.io barsy.me barsy.menu +barsyonline.menu barsy.mobi barsy.net barsy.online @@ -12728,10 +14214,15 @@ barsy.org barsy.pro barsy.pub barsy.ro +barsy.rs barsy.shop +barsyonline.shop barsy.site +barsy.store barsy.support barsy.uk +barsy.co.uk +barsyonline.co.uk // Magento Commerce // Submitted by Damien Tournoud @@ -12746,10 +14237,6 @@ mayfirst.org // Submitted by Ilya Zaretskiy hb.cldmail.ru -// Mail Transfer Platform : https://www.neupeer.com -// Submitted by Li Hui -cn.vu - // Maze Play: https://www.mazeplay.com // Submitted by Adam Humpherys mazeplay.com @@ -12762,8 +14249,8 @@ mcpe.me // Submitted by Evgeniy Subbotin mcdir.me mcdir.ru -mcpre.ru vps.mcdir.ru +mcpre.ru // Mediatech : https://mediatech.by // Submitted by Evgeniy Kozhuhovskiy @@ -12779,6 +14266,15 @@ hra.health miniserver.com memset.net +// Messerli Informatik AG : https://www.messerli.ch/ +// Submitted by Ruben Schmidmeister +messerli.app + +// Meta Platforms, Inc. : https://meta.com/ +// Submitted by Jacob Cordero +atmeta.com +apps.fbsbx.com + // MetaCentrum, CESNET z.s.p.o. : https://www.metacentrum.cz/en/ // Submitted by Zdeněk Šustr *.cloud.metacentrum.cz @@ -12798,17 +14294,32 @@ eu.meteorapp.com co.pl // Microsoft Corporation : http://microsoft.com -// Submitted by Mitch Webster +// Submitted by Public Suffix List Admin +// Managed by Corporate Domains +// Microsoft Azure : https://home.azure *.azurecontainer.io -azurewebsites.net +azure-api.net azure-mobile.net -cloudapp.net +azureedge.net +azurefd.net azurestaticapps.net +1.azurestaticapps.net +2.azurestaticapps.net +3.azurestaticapps.net +4.azurestaticapps.net +5.azurestaticapps.net +6.azurestaticapps.net +7.azurestaticapps.net centralus.azurestaticapps.net eastasia.azurestaticapps.net eastus2.azurestaticapps.net westeurope.azurestaticapps.net westus2.azurestaticapps.net +azurewebsites.net +cloudapp.net +trafficmanager.net +blob.core.windows.net +servicebus.windows.net // minion.systems : http://minion.systems // Submitted by Robert Böttinger @@ -12822,6 +14333,10 @@ mintere.site // Submitted by Grayson Martin forte.id +// MODX Systems LLC : https://modx.com +// Submitted by Elizabeth Southwell +modx.dev + // Mozilla Corporation : https://mozilla.com // Submitted by Ben Francis mozilla-iot.org @@ -12839,8 +14354,8 @@ pp.ru // Mythic Beasts : https://www.mythic-beasts.com // Submitted by Paul Cammish hostedpi.com -customer.mythic-beasts.com caracal.mythic-beasts.com +customer.mythic-beasts.com fentiger.mythic-beasts.com lynx.mythic-beasts.com ocelot.mythic-beasts.com @@ -12856,29 +14371,14 @@ cust.retrosnub.co.uk // Submitted by Paulus Schoutsen ui.nabu.casa -// Names.of.London : https://names.of.london/ -// Submitted by James Stevens or -pony.club -of.fashion -in.london -of.london -from.marketing -with.marketing -for.men -repair.men -and.mom -for.mom -for.one -under.one -for.sale -that.win -from.work -to.work - // Net at Work Gmbh : https://www.netatwork.de // Submitted by Jan Jaeschke cloud.nospamproxy.com +// Netfy Domains : https://netfy.domains +// Submitted by Suranga Ranasinghe +netfy.app + // Netlify : https://www.netlify.com // Submitted by Jessica Parsons netlify.app @@ -12887,18 +14387,43 @@ netlify.app // Submitted by Trung Tran 4u.com +// NGO.US Registry : https://nic.ngo.us +// Submitted by Alstra Solutions Ltd. Networking Team +ngo.us + // ngrok : https://ngrok.com/ // Submitted by Alan Shreve +ngrok.app +ngrok-free.app +ngrok.dev +ngrok-free.dev ngrok.io +ap.ngrok.io +au.ngrok.io +eu.ngrok.io +in.ngrok.io +jp.ngrok.io +sa.ngrok.io +us.ngrok.io +ngrok.pizza +ngrok.pro + +// Nicolaus Copernicus University in Torun - MSK TORMAN (https://www.man.torun.pl) +torun.pl // Nimbus Hosting Ltd. : https://www.nimbushosting.co.uk/ -// Submitted by Nicholas Ford +// Submitted by Nicholas Ford nh-serv.co.uk +nimsite.uk // NFSN, Inc. : https://www.NearlyFreeSpeech.NET/ // Submitted by Jeff Wheelhouse nfshost.com +// NFT.Storage : https://nft.storage/ +// Submitted by Vasco Santos or +ipfs.nftstorage.link + // Noop : https://noop.app // Submitted by Nathaniel Schweinberg *.developer.app @@ -12916,6 +14441,10 @@ noop.app // Submitted by Laurent Pellegrino noticeable.news +// Notion Labs, Inc : https://www.notion.so/ +// Submitted by Jess Yao +notion.site + // Now-DNS : https://now-dns.com // Submitted by Steve Russell dnsking.ch @@ -12951,91 +14480,91 @@ nerdpol.ovh // No-IP.com : https://noip.com/ // Submitted by Deven Reza +mmafan.biz +myftp.biz +no-ip.biz +no-ip.ca +fantasyleague.cc +gotdns.ch +3utilities.com blogsyte.com -brasilia.me -cable-modem.org ciscofreak.com -collegefan.org -couchpotatofries.org damnserver.com -ddns.me +ddnsking.com ditchyourip.com -dnsfor.me dnsiskinky.com -dvrcam.info dynns.com -eating-organic.net -fantasyleague.cc geekgalaxy.com -golffan.us health-carereform.com homesecuritymac.com homesecuritypc.com -hopto.me -ilovecollege.info -loginto.me -mlbfan.org -mmafan.biz myactivedirectory.com -mydissent.net -myeffect.net -mymediapc.net -mypsx.net mysecuritycamera.com -mysecuritycamera.net -mysecuritycamera.org +myvnc.com net-freaks.com -nflfan.org -nhlfan.net -no-ip.ca -no-ip.co.uk -no-ip.net -noip.us onthewifi.com -pgafan.net point2this.com -pointto.us -privatizehealthinsurance.net quicksytes.com -read-books.org securitytactics.com +servebeer.com +servecounterstrike.com serveexchange.com +serveftp.com +servegame.com +servehalflife.com +servehttp.com servehumour.com +serveirc.com +servemp3.com servep2p.com +servepics.com +servequake.com servesarcasm.com stufftoread.com -ufcfan.org unusualperson.com workisboring.com -3utilities.com -bounceme.net -ddns.net -ddnsking.com -gotdns.ch -hopto.org -myftp.biz -myftp.org -myvnc.com -no-ip.biz +dvrcam.info +ilovecollege.info no-ip.info -no-ip.org +brasilia.me +ddns.me +dnsfor.me +hopto.me +loginto.me noip.me +webhop.me +bounceme.net +ddns.net +eating-organic.net +mydissent.net +myeffect.net +mymediapc.net +mypsx.net +mysecuritycamera.net +nhlfan.net +no-ip.net +pgafan.net +privatizehealthinsurance.net redirectme.net -servebeer.com serveblog.net -servecounterstrike.com -serveftp.com -servegame.com -servehalflife.com -servehttp.com -serveirc.com serveminecraft.net -servemp3.com -servepics.com -servequake.com sytes.net -webhop.me +cable-modem.org +collegefan.org +couchpotatofries.org +hopto.org +mlbfan.org +myftp.org +mysecuritycamera.org +nflfan.org +no-ip.org +read-books.org +ufcfan.org zapto.org +no-ip.co.uk +golffan.us +noip.us +pointto.us // NodeArt : https://nodeart.io // Submitted by Konstantin Nosov @@ -13049,8 +14578,17 @@ pcloud.host // Submitted by Matthew Brown nyc.mn +// O3O.Foundation : https://o3o.foundation/ +// Submitted by the prvcy.page Registry Team +prvcy.page + +// Obl.ong : +// Submitted by Reese Armstrong +obl.ong + // Observable, Inc. : https://observablehq.com // Submitted by Mike Bostock +observablehq.cloud static.observableusercontent.com // Octopodal Solutions, LLC. : https://ulterius.io/ @@ -13071,12 +14609,37 @@ omniwe.site // One.com: https://www.one.com/ // Submitted by Jacob Bunk Nielsen +123webseite.at +123website.be +simplesite.com.br +123website.ch +simplesite.com +123webseite.de +123hjemmeside.dk +123miweb.es +123kotisivu.fi +123siteweb.fr +simplesite.gr +123homepage.it +123website.lu +123website.nl +123hjemmeside.no service.one +simplesite.pl +123paginaweb.pt +123minsida.se // One Fold Media : http://www.onefoldmedia.com/ // Submitted by Eddie Jones nid.io +// Open Domains : https://open-domains.net +// Submitted by William Harrison +is-cool.dev +is-not-a.dev +localplayer.dev +is-local.org + // Open Social : https://www.getopensocial.com/ // Submitted by Alexander Varwijk opensocial.site @@ -13097,6 +14660,11 @@ operaunite.com // Submitted by Alexandre Linte tech.orange +// OsSav Technology Ltd. : https://ossav.com/ +// TLD Nic: http://nic.can.re - TLD Whois Server: whois.can.re +// Submitted by OsSav Technology Ltd. +can.re + // Oursky Limited : https://authgear.com/, https://skygear.io/ // Submitted by Authgear Team , Skygear Developer authgear-staging.com @@ -13109,8 +14677,8 @@ outsystemscloud.com // OVHcloud: https://ovhcloud.com // Submitted by Vincent Cassé -*.webpaas.ovh.net *.hosting.ovh.net +*.webpaas.ovh.net // OwnProvider GmbH: http://www.ownprovider.com // Submitted by Jan Moennich @@ -13147,10 +14715,12 @@ pagexl.com // pcarrier.ca Software Inc: https://pcarrier.ca/ // Submitted by Pierre Carrier -bar0.net -bar1.net -bar2.net -rdv.to +*.xmit.co +xmit.dev +madethis.site +srv.us +gh.srv.us +gl.srv.us // .pl domains (grandfathered) art.pl @@ -13162,8 +14732,8 @@ zakopane.pl // Pantheon Systems, Inc. : https://pantheon.io/ // Submitted by Gary Dylina -pantheonsite.io gotpantheon.com +pantheonsite.io // Peplink | Pepwave : http://peplink.com/ // Submitted by Steve Leung @@ -13183,7 +14753,8 @@ on-web.fr // Platform.sh : https://platform.sh // Submitted by Nikola Kotur -bc.platform.sh +*.upsun.app +upsunapp.com ent.platform.sh eu.platform.sh us.platform.sh @@ -13196,11 +14767,9 @@ platter-app.com platter-app.dev platterp.us -// Plesk : https://www.plesk.com/ -// Submitted by Anton Akhtyamov -pdns.page -plesk.page -pleskns.com +// Pley AB : https://www.pley.com/ +// Submitted by Henning Pohl +pley.games // Port53 : https://port53.io/ // Submitted by Maximilian Schieder @@ -13221,8 +14790,8 @@ pstmn.io mock.pstmn.io httpbin.org -//prequalifyme.today : https://prequalifyme.today -//Submitted by DeepakTiwari deepak@ivylead.io +// prequalifyme.today : https://prequalifyme.today +// Submitted by DeepakTiwari deepak@ivylead.io prequalifyme.today // prgmr.com : https://prgmr.com/ @@ -13233,10 +14802,6 @@ xen.prgmr.com // Submitted by registry priv.at -// privacytools.io : https://www.privacytools.io/ -// Submitted by Jonah Aragon -prvcy.page - // Protocol Labs : https://protocol.ai/ // Submitted by Michael Burns *.dweb.link @@ -13267,6 +14832,10 @@ qoto.io // Submitted by Xavier De Cock qualifioapp.com +// Quality Unit: https://qualityunit.com +// Submitted by Vasyl Tsalko +ladesk.com + // QuickBackend: https://www.quickbackend.com // Submitted by Dani Biro qbuser.com @@ -13274,15 +14843,18 @@ qbuser.com // Rad Web Hosting: https://radwebhosting.com // Submitted by Scott Claeys cloudsite.builders +myradweb.net +servername.us + +// Raidboxes GmbH : https://raidboxes.de +// Submitted by Auke Tembrink +myrdbx.io +site.rb-hosting.io // Redgate Software: https://red-gate.com // Submitted by Andrew Farries instances.spawn.cc -// Redstar Consultants : https://www.redstarconsultants.com/ -// Submitted by Jons Slemmer -instantcloud.cn - // Russian Academy of Sciences // Submitted by Tech Support ras.ru @@ -13297,9 +14869,12 @@ qcx.io *.sys.qcx.io // QNAP System Inc : https://www.qnap.com -// Submitted by Nick Chang -dev-myqnapcloud.com +// Submitted by Nick Chang +myqnapcloud.cn alpha-myqnapcloud.com +dev-myqnapcloud.com +mycloudnas.com +mynascloud.com myqnapcloud.com // Quip : https://quip.com @@ -13322,8 +14897,8 @@ g.vbrplsbx.io // Rancher Labs, Inc : https://rancher.com // Submitted by Vincent Fiduccia -*.on-k3s.io *.on-rancher.cloud +*.on-k3s.io *.on-rio.io // Read The Docs, Inc : https://www.readthedocs.org @@ -13336,13 +14911,44 @@ rhcloud.com // Render : https://render.com // Submitted by Anurag Goel -app.render.com onrender.com +app.render.com // Repl.it : https://repl.it -// Submitted by Mason Clayton +// Submitted by Lincoln Bergeson +replit.app +id.replit.app +firewalledreplit.co +id.firewalledreplit.co repl.co id.repl.co +replit.dev +archer.replit.dev +bones.replit.dev +canary.replit.dev +global.replit.dev +hacker.replit.dev +id.replit.dev +janeway.replit.dev +kim.replit.dev +kira.replit.dev +kirk.replit.dev +odo.replit.dev +paris.replit.dev +picard.replit.dev +pike.replit.dev +prerelease.replit.dev +reed.replit.dev +riker.replit.dev +sisko.replit.dev +spock.replit.dev +staging.replit.dev +sulu.replit.dev +tarpit.replit.dev +teams.replit.dev +tucker.replit.dev +wesley.replit.dev +worf.replit.dev repl.run // Resin.io : https://resin.io @@ -13388,20 +14994,86 @@ rocky.page спб.рус я.рус +// SAKURA Internet Inc. : https://www.sakura.ad.jp/ +// Submitted by Internet Service Department +180r.com +dojin.com +sakuratan.com +sakuraweb.com +x0.com +2-d.jp +bona.jp +crap.jp +daynight.jp +eek.jp +flop.jp +halfmoon.jp +jeez.jp +matrix.jp +mimoza.jp +ivory.ne.jp +mail-box.ne.jp +mints.ne.jp +mokuren.ne.jp +opal.ne.jp +sakura.ne.jp +sumomo.ne.jp +topaz.ne.jp +netgamers.jp +nyanta.jp +o0o0.jp +rdy.jp +rgr.jp +rulez.jp +s3.isk01.sakurastorage.jp +s3.isk02.sakurastorage.jp +saloon.jp +sblo.jp +skr.jp +tank.jp +uh-oh.jp +undo.jp +rs.webaccel.jp +user.webaccel.jp +websozai.jp +xii.jp +squares.net +jpn.org +kirara.st +x0.to +from.tv +sakura.tv + +// Salesforce.com, Inc. https://salesforce.com/ +// Submitted by Salesforce Public Suffix List Team +*.builder.code.com +*.dev-builder.code.com +*.stg-builder.code.com +*.001.test.code-builder-stg.platform.salesforce.com +*.d.crm.dev +*.w.crm.dev +*.wa.crm.dev +*.wb.crm.dev +*.wc.crm.dev +*.wd.crm.dev +*.we.crm.dev +*.wf.crm.dev + // Sandstorm Development Group, Inc. : https://sandcats.io/ // Submitted by Asheesh Laroia sandcats.io // SBE network solutions GmbH : https://www.sbe.de/ // Submitted by Norman Meilick -logoip.de logoip.com +logoip.de // Scaleway : https://www.scaleway.com/ // Submitted by Rémy Léone fr-par-1.baremetal.scw.cloud fr-par-2.baremetal.scw.cloud nl-ams-1.baremetal.scw.cloud +cockpit.fr-par.scw.cloud fnc.fr-par.scw.cloud functions.fnc.fr-par.scw.cloud k8s.fr-par.scw.cloud @@ -13412,11 +15084,13 @@ whm.fr-par.scw.cloud priv.instances.scw.cloud pub.instances.scw.cloud k8s.scw.cloud +cockpit.nl-ams.scw.cloud k8s.nl-ams.scw.cloud nodes.k8s.nl-ams.scw.cloud s3.nl-ams.scw.cloud s3-website.nl-ams.scw.cloud whm.nl-ams.scw.cloud +cockpit.pl-waw.scw.cloud k8s.pl-waw.scw.cloud nodes.k8s.pl-waw.scw.cloud s3.pl-waw.scw.cloud @@ -13438,6 +15112,10 @@ service.gov.scot // Submitted by Shante Adam scrysec.com +// Scrypted : https://scrypted.app +// Submitted by Koushik Dutta +client.scrypted.io + // Securepoint GmbH : https://www.securepoint.de // Submitted by Erik Anders firewall-gateway.com @@ -13477,6 +15155,14 @@ biz.ua co.ua pp.ua +// Shanghai Accounting Society : https://www.sasf.org.cn +// Submitted by Information Administration +as.sh.cn + +// Sheezy.Art : https://sheezy.art +// Submitted by Nyoom +sheezy.games + // Shift Crypto AG : https://shiftcrypto.ch // Submitted by alex shiftcrypto.dev @@ -13524,6 +15210,20 @@ bounty-full.com alpha.bounty-full.com beta.bounty-full.com +// Smallregistry by Promopixel SARL: https://www.smallregistry.net +// Former AFNIC's SLDs +// Submitted by Jérôme Lipowicz +aeroport.fr +avocat.fr +chambagri.fr +chirurgiens-dentistes.fr +experts-comptables.fr +medecin.fr +notaires.fr +pharmacien.fr +port.fr +veterinaire.fr + // Small Technology Foundation : https://small-tech.org // Submitted by Aral Balkan small-web.org @@ -13532,6 +15232,13 @@ small-web.org // Submitted by Dan Kozak vp4.me +// Snowflake Inc : https://www.snowflake.com/ +// Submitted by Sam Haar +*.snowflake.app +*.privatelink.snowflake.app +streamlit.app +streamlitapp.com + // Snowplow Analytics : https://snowplowanalytics.com/ // Submitted by Ian Streeter try-snowplow.com @@ -13540,14 +15247,32 @@ try-snowplow.com // Submitted by Drew DeVault srht.site +// SparrowHost : https://sparrowhost.in/ +// Submitted by Anant Pandey +ind.mom + +// StackBlitz : https://stackblitz.com +// Submitted by Dominic Elm +w-corp-staticblitz.com +w-credentialless-staticblitz.com +w-staticblitz.com + // Stackhero : https://www.stackhero.io // Submitted by Adrien Gillon stackhero-network.com +// STACKIT : https://www.stackit.de/en/ +// Submitted by STACKIT-DNS Team (Simon Stier) +runs.onstackit.cloud +stackit.gg +stackit.rocks +stackit.run +stackit.zone + // Staclar : https://staclar.com // Submitted by Q Misell -musician.io // Submitted by Matthias Merkel +musician.io novecore.site // staticland : https://static.land @@ -13560,6 +15285,11 @@ sites.static.land // Submitted by Tony Schirmer storebase.store +// Strapi : https://strapi.io/ +// Submitted by Florent Baldino +strapiapp.com +media.strapiapp.com + // Strategic System Consulting (eApps Hosting): https://www.eapps.com/ // Submitted by Alex Oancea vps-host.net @@ -13610,10 +15340,33 @@ myspreadshop.co.uk // Submitted by Jacob Lee api.stdlib.com +// stereosense GmbH : https://www.involve.me +// Submitted by Florian Burmann +feedback.ac +forms.ac +assessments.cx +calculators.cx +funnels.cx +paynow.cx +quizzes.cx +researched.cx +tests.cx +surveys.so + +// Storipress : https://storipress.com +// Submitted by Benno Liu +storipress.app + // Storj Labs Inc. : https://storj.io/ // Submitted by Philip Hutchins storj.farm +// Streak : https://streak.com +// Submitted by Blake Kadatz +streak-link.com +streaklinks.com +streakusercontent.com + // Studenten Net Twente : http://www.snt.utwente.nl/ // Submitted by Silke Hofstra utwente.io @@ -13636,8 +15389,8 @@ su.paba.se // Symfony, SAS : https://symfony.com/ // Submitted by Fabien Potencier -*.s5y.io *.sensiosite.cloud +*.s5y.io // Syncloud : https://syncloud.org // Submitted by Boris Rybalkin @@ -13659,11 +15412,13 @@ dsmynas.net familyds.net dsmynas.org familyds.org -vpnplus.to direct.quickconnect.to +vpnplus.to // Tabit Technologies Ltd. : https://tabit.cloud/ // Submitted by Oren Agiv +mytabit.com +mytabit.co.il tabitorder.co.il // TAIFUN Software AG : http://taifun-software.de @@ -13674,8 +15429,9 @@ taifun-dns.de // Submitted by David Anderson beta.tailscale.net ts.net +*.c.ts.net -// TASK geographical domains (www.task.gda.pl/uslugi/dns) +// TASK geographical domains (https://www.task.gda.pl/uslugi/dns) gda.pl gdansk.pl gdynia.pl @@ -13697,10 +15453,6 @@ telebit.app telebit.io *.telebit.xyz -// The Gwiddle Foundation : https://gwiddlefoundation.org.uk -// Submitted by Joshua Bayfield -gwiddle.co.uk - // Thingdust AG : https://thingdust.com/ // Submitted by Adrian Imboden *.firenet.ch @@ -13708,11 +15460,11 @@ gwiddle.co.uk reservd.com thingdustdata.com cust.dev.thingdust.io +reservd.dev.thingdust.io cust.disrec.thingdust.io +reservd.disrec.thingdust.io cust.prod.thingdust.io cust.testing.thingdust.io -reservd.dev.thingdust.io -reservd.disrec.thingdust.io reservd.testing.thingdust.io // ticket i/O GmbH : https://ticket.io @@ -13726,7 +15478,7 @@ azimuth.network tlon.network // Tor Project, Inc. : https://torproject.org -// Submitted by Antoine Beaupré torproject.net pages.torproject.net @@ -13735,10 +15487,6 @@ pages.torproject.net bloxcms.com townnews-staging.com -// TradableBits: https://tradablebits.com -// Submitted by Dmitry Khrisanov dmitry@tradablebits.com -tbits.me - // TrafficPlex GmbH : https://www.trafficplex.de/ // Submitted by Phillipp Röll 12hp.at @@ -13778,8 +15526,6 @@ tuxfamily.org // TwoDNS : https://www.twodns.de/ // Submitted by TwoDNS-Support dd-dns.de -diskstation.eu -diskstation.org dray-dns.de draydns.de dyn-vpn.de @@ -13790,6 +15536,8 @@ my-wan.de syno-ds.de synology-diskstation.de synology-ds.de +diskstation.eu +diskstation.org // Typedream : https://typedream.com // Submitted by Putri Karunia @@ -13801,20 +15549,37 @@ pro.typeform.com // Uberspace : https://uberspace.de // Submitted by Moritz Werner -uber.space *.uberspace.de +uber.space // UDR Limited : http://www.udr.hk.com // Submitted by registry hk.com -hk.org -ltd.hk inc.hk +ltd.hk +hk.org + +// UK Intis Telecom LTD : https://it.com +// Submitted by ITComdomains +it.com + +// Unison Computing, PBC : https://unison.cloud +// Submitted by Simon Højberg +unison-services.cloud + +// UNIVERSAL DOMAIN REGISTRY : https://www.udr.org.yt/ +// see also: whois -h whois.udr.org.yt help +// Submitted by Atanunu Igbunuroghene +name.pm +sch.tf +biz.wf +sch.wf +org.yt // United Gameserver GmbH : https://united-gameserver.de // Submitted by Stefan Schwarz -virtualuser.de virtual-user.de +virtualuser.de // Upli : https://upli.io // Submitted by Lenny Bakkalian @@ -13829,6 +15594,11 @@ dnsupdate.info // Submitted by Ed Moore lib.de.us +// Val Town, Inc : https://val.town/ +// Submitted by Tom MacWright +express.val.run +web.val.run + // VeryPositive SIA : http://very.lv // Submitted by Danko Aleksejevs 2038.io @@ -13851,48 +15621,6 @@ v-info.info // Submitted by Nathan van Bakel voorloper.cloud -// Voxel.sh DNS : https://voxel.sh/dns/ -// Submitted by Mia Rehlinger -neko.am -nyaa.am -be.ax -cat.ax -es.ax -eu.ax -gg.ax -mc.ax -us.ax -xy.ax -nl.ci -xx.gl -app.gp -blog.gt -de.gt -to.gt -be.gy -cc.hn -blog.kg -io.kg -jp.kg -tv.kg -uk.kg -us.kg -de.ls -at.md -de.md -jp.md -to.md -indie.porn -vxl.sh -ch.tc -me.tc -we.tc -nyan.to -at.vg -blog.vu -dev.vu -me.vu - // V.UA Domain Administrator : https://domain.v.ua/ // Submitted by Serhii Rostilo v.ua @@ -13905,16 +15633,34 @@ v.ua // Submitted by Masayuki Note wafflecell.com +// Webflow, Inc. : https://www.webflow.com +// Submitted by Webflow Security Team +webflow.io +webflowtest.io + // WebHare bv: https://www.webhare.com/ // Submitted by Arnold Hendriks *.webhare.dev // WebHotelier Technologies Ltd: https://www.webhotelier.net/ // Submitted by Apostolos Tsakpinis -reserve-online.net -reserve-online.com bookonline.app hotelwithflight.com +reserve-online.com +reserve-online.net + +// WebPros International, LLC : https://webpros.com/ +// Submitted by Nicolas Rochelemagne +cprapid.com +pleskns.com +wp2.host +pdns.page +plesk.page +wpsquared.site + +// WebWaddle Ltd: https://webwaddle.com/ +// Submitted by Merlin Glander +*.wadl.top // WeDeploy by Liferay, Inc. : https://www.wedeploy.com // Submitted by Henrique Vicente @@ -13926,21 +15672,33 @@ wedeploy.sh // Submitted by Jung Jin remotewd.com +// Whatbox Inc. : https://whatbox.ca/ +// Submitted by Anthony Ryan +box.ca + // WIARD Enterprises : https://wiardweb.com // Submitted by Kidd Hustle pages.wiardweb.com // Wikimedia Labs : https://wikitech.wikimedia.org // Submitted by Arturo Borrero Gonzalez -wmflabs.org toolforge.org wmcloud.org +wmflabs.org // WISP : https://wisp.gg // Submitted by Stepan Fedotov panel.gg daemon.panel.gg +// Wix.com, Inc. : https://www.wix.com +// Submitted by Shahar Talmi / Alon Kochba +wixsite.com +wixstudio.com +editorx.io +wixstudio.io +wix.run + // Wizard Zines : https://wizardzines.com // Submitted by Julia Evans messwithdns.com @@ -13966,11 +15724,6 @@ weeklylottery.org.uk wpenginepowered.com js.wpenginepowered.com -// Wix.com, Inc. : https://www.wix.com -// Submitted by Shahar Talmi -wixsite.com -editorx.io - // XenonCloud GbR: https://xenoncloud.net // Submitted by Julian Uphoff half.host @@ -14022,6 +15775,14 @@ noho.st za.net za.org +// ZAP-Hosting GmbH & Co. KG : https://zap-hosting.com +// Submitted by Julian Alker +zap.cloud + +// Zeabur : https://zeabur.com/ +// Submitted by Zeabur Team +zeabur.app + // Zine EOOD : https://zine.bg/ // Submitted by Martin Angelov bss.design From 08763e7da6d7646e8b9ef954a1b3eb3902360863 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 10:23:12 -0400 Subject: [PATCH 15/31] Untrusted files inclusion --- archive/test-regDomain.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archive/test-regDomain.php b/archive/test-regDomain.php index 92e0a36..dd3a70b 100755 --- a/archive/test-regDomain.php +++ b/archive/test-regDomain.php @@ -33,8 +33,8 @@ exit; } -require 'effectiveTLDs.inc.php'; -$tldTree = require 'regDomain.inc.php'; +require __DIR__ . '/effectiveTLDs.inc.php'; +$tldTree = require __DIR__ . '/regDomain.inc.php'; // strip subdomains from every signing domain // char dom[] = "sub2.sub.registered.nom.ad"; From 23b115f14a9de7379c3f7a7c8dfbb1746d3b2e9f Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 10:29:26 -0400 Subject: [PATCH 16/31] Unnecessary double quotes --- archive/generateEffectiveTLDs.php | 40 +++++++++++++++---------------- archive/regDomain.inc.php | 2 +- src/PublicSuffixList.php | 6 ++--- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/archive/generateEffectiveTLDs.php b/archive/generateEffectiveTLDs.php index 0860345..a96ba8f 100755 --- a/archive/generateEffectiveTLDs.php +++ b/archive/generateEffectiveTLDs.php @@ -12,7 +12,7 @@ // DEFINE('URL', 'https://publicsuffix.org/list/public_suffix_list.dat'); define('URL', 'data/public_suffix_list.dat'); -if (PHP_SAPI != "cli") { +if (PHP_SAPI != 'cli') { exit; } @@ -49,14 +49,14 @@ function buildSubdomain(&$node, $tldParts) $dom = trim(array_pop($tldParts)); $isNotDomain = false; - if (startsWith($dom, "!")) { + if (startsWith($dom, '!')) { $dom = substr($dom, 1); $isNotDomain = true; } if (!array_key_exists($dom, $node)) { if ($isNotDomain) { - $node[$dom] = ["!" => ""]; + $node[$dom] = ['!' => '']; } else { $node[$dom] = []; } @@ -72,21 +72,21 @@ function printNode($key, $valueTree, $isAssignment = false, $depth = 0) global $format; if ($isAssignment) { - if ($format == "perl") { + if ($format == 'perl') { echo "$key = {"; } else { echo "$key = array("; } } else { - if (strcmp($key, "!")==0) { - if ($format == "perl") { + if (strcmp($key, '!')==0) { + if ($format == 'perl') { echo "'!' => {}"; } else { echo "'!' => ''"; } return; } else { - if ($format == "perl") { + if ($format == 'perl') { echo "'$key' => {"; } else { echo str_repeat(' ', $depth)."'$key' => array("; @@ -102,13 +102,13 @@ function printNode($key, $valueTree, $isAssignment = false, $depth = 0) printNode($key, $valueTree[$key], false, $depth + 1); if ($i+1 != count($valueTree)) { - echo ","; + echo ','; } else { - echo ""; + echo ''; } } - if ($format == "perl") { + if ($format == 'perl') { echo '}'; } else { echo ')'; @@ -124,10 +124,10 @@ function printNode_C($key, $valueTree) $keys = array_keys($valueTree); if (count($keys)>0) { - if (strcmp($keys['!'], "!")==0) { - echo "!"; + if (strcmp($keys['!'], '!')==0) { + echo '!'; } else { - echo "(".count($keys).":"; + echo '(' .count($keys). ':'; for ($i=0; $istartsWith($line, "//") || $line == '') { + if ($this->startsWith($line, '//') || $line == '') { continue; } @@ -133,14 +133,14 @@ protected function buildSubDomain(&$node, $tldParts) $dom = trim(array_pop($tldParts)); $isNotDomain = false; - if ($this->startsWith($dom, "!")) { + if ($this->startsWith($dom, '!')) { $dom = substr($dom, 1); $isNotDomain = true; } if (!array_key_exists($dom, $node)) { if ($isNotDomain) { - $node[$dom] = ["!" => ""]; + $node[$dom] = ['!' => '']; } else { $node[$dom] = []; } From 1f573c2c78edbaedc659a6ea98164fce8ee7f400 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 10:32:21 -0400 Subject: [PATCH 17/31] Yoda --- archive/generateEffectiveTLDs.php | 22 +++++++++++----------- archive/regDomain.inc.php | 4 ++-- src/PublicSuffixList.php | 6 +++--- src/RegisteredDomain.php | 16 ++++++++-------- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/archive/generateEffectiveTLDs.php b/archive/generateEffectiveTLDs.php index a96ba8f..ad906e1 100755 --- a/archive/generateEffectiveTLDs.php +++ b/archive/generateEffectiveTLDs.php @@ -18,11 +18,11 @@ $format = 'json'; if ($argc > 1) { - if ($argv[1] == 'perl') { + if ('perl' == $argv[1]) { $format = 'perl'; - } elseif ($argv[1] == 'c') { + } elseif ('c' == $argv[1]) { $format = 'c'; - } elseif ($argv[1] == 'php') { + } elseif ('php' == $argv[1]) { $format = 'php'; } } @@ -72,21 +72,21 @@ function printNode($key, $valueTree, $isAssignment = false, $depth = 0) global $format; if ($isAssignment) { - if ($format == 'perl') { + if ('perl' == $format) { echo "$key = {"; } else { echo "$key = array("; } } else { - if (strcmp($key, '!')==0) { - if ($format == 'perl') { + if (0 == strcmp($key, '!')) { + if ('perl' == $format) { echo "'!' => {}"; } else { echo "'!' => ''"; } return; } else { - if ($format == 'perl') { + if ('perl' == $format) { echo "'$key' => {"; } else { echo str_repeat(' ', $depth)."'$key' => array("; @@ -108,7 +108,7 @@ function printNode($key, $valueTree, $isAssignment = false, $depth = 0) } } - if ($format == 'perl') { + if ('perl' == $format) { echo '}'; } else { echo ')'; @@ -124,7 +124,7 @@ function printNode_C($key, $valueTree) $keys = array_keys($valueTree); if (count($keys)>0) { - if (strcmp($keys['!'], '!')==0) { + if (0 == strcmp($keys['!'], '!')) { echo '!'; } else { echo '(' .count($keys). ':'; @@ -159,7 +159,7 @@ function printNode_C($key, $valueTree) foreach ($lines as $line) { if ($licence && startsWith($line, '//')) { - if ($format == 'perl') { + if ('perl' == $format) { $commentsection .= '# ' .substr($line, 2)."\n"; } else { $commentsection .= $line."\n"; @@ -172,7 +172,7 @@ function printNode_C($key, $valueTree) continue; } - if (startsWith($line, '//') || $line == '') { + if (startsWith($line, '//') || '' == $line) { continue; } diff --git a/archive/regDomain.inc.php b/archive/regDomain.inc.php index 8be8e6e..0254034 100644 --- a/archive/regDomain.inc.php +++ b/archive/regDomain.inc.php @@ -48,7 +48,7 @@ function getRegisteredDomain($signingDomain) // assure there is at least 1 TLD in the stripped signing domain if (!strpos($result, '.')) { $cnt = count($signingDomainParts); - if ($cnt==1 || $signingDomainParts[$cnt-2]== '') { + if (1 == $cnt || '' == $signingDomainParts[$cnt-2]) { return null; } return $signingDomainParts[$cnt-2].'.'.$signingDomainParts[$cnt-1]; @@ -73,7 +73,7 @@ function findRegisteredDomain($remainingSigningDomainParts, &$treeNode) } // this is a hack 'cause PHP interpretes '' as NULL - if ($result == '#') { + if ('#' == $result) { return $sub; } elseif (strlen($result)>0) { return $result.'.'.$sub; diff --git a/src/PublicSuffixList.php b/src/PublicSuffixList.php index 9a00a59..e2fa1a9 100644 --- a/src/PublicSuffixList.php +++ b/src/PublicSuffixList.php @@ -96,7 +96,7 @@ protected function parsePSL($fileData) $lines = explode("\n", $fileData); foreach ($lines as $line) { - if ($this->startsWith($line, '//') || $line == '') { + if ($this->startsWith($line, '//') || '' == $line) { continue; } @@ -287,8 +287,8 @@ public function clearDataDirectory($cacheOnly = false) $dir = __DIR__ . $this->dataDir; if (is_dir($dir)) { if ($dirHandle = opendir($dir)) { - while (($file = readdir($dirHandle)) !== false) { - if (filetype($dir . $file) === 'file' + while (false !== ($file = readdir($dirHandle))) { + if ('file' === filetype($dir . $file) && (false === $cacheOnly || $this->startsWith($file, $this->cachedPrefix))) { unlink($dir . $file); } diff --git a/src/RegisteredDomain.php b/src/RegisteredDomain.php index a7da586..60a692c 100644 --- a/src/RegisteredDomain.php +++ b/src/RegisteredDomain.php @@ -40,16 +40,16 @@ public function __construct(PublicSuffixList $psl = null) */ protected function normalizeHost($url) { - if ($url === null) { + if (null === $url) { return ''; } $host = (false !== strpos($url, '/')) ? parse_url($url, PHP_URL_HOST) : $url; - $parts = $host !== null ? explode('.', $host) : []; + $parts = null !== $host ? explode('.', $host) : []; $utf8Host = ''; foreach ($parts as $part) { - $utf8Host = $utf8Host . (($utf8Host === '') ? '' : '.') . $this->convertPunycode($part); + $utf8Host = $utf8Host . (('' === $utf8Host) ? '' : '.') . $this->convertPunycode($part); } return mb_strtolower($utf8Host); @@ -64,7 +64,7 @@ protected function normalizeHost($url) */ protected function convertPunycode($part) { - if (strpos($part, 'xn--')===0) { + if (0 === strpos($part, 'xn--')) { if (function_exists('idn_to_utf8')) { if (defined('INTL_IDNA_VARIANT_UTS46')) { // PHP 7.2 return idn_to_utf8($part, 0, INTL_IDNA_VARIANT_UTS46); @@ -94,7 +94,7 @@ protected function decodePunycode($encoded) $skew = 38; $damp = 700; - if ($encoded === null || strpos($encoded, $prefix) !== 0 || strlen(trim(str_replace($prefix, '', $encoded))) == 0) { + if (null === $encoded || 0 !== strpos($encoded, $prefix) || 0 == strlen(trim(str_replace($prefix, '', $encoded)))) { return $encoded; } @@ -191,7 +191,7 @@ public function getRegisteredDomain($host) // assure there is at least 1 TLD in the stripped signing domain if (!strpos($result, '.')) { $cnt = count($signingDomainParts); - if ($cnt == 1 || $signingDomainParts[$cnt-2] == '') { + if (1 == $cnt || '' == $signingDomainParts[$cnt-2]) { return null; } return $signingDomainParts[$cnt-2] . '.' . $signingDomainParts[$cnt-1]; @@ -222,9 +222,9 @@ protected function findRegisteredDomain($remainingSigningDomainParts, &$treeNode return $sub; } - if ($result === '') { + if ('' === $result) { return $sub; - } elseif ($result !== null && strlen($result) > 0) { + } elseif (null !== $result && strlen($result) > 0) { return $result . '.' . $sub; } return null; From 74484146199ca5b720e456593ec237f7e9549f51 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 10:35:22 -0400 Subject: [PATCH 18/31] PHPUnit: better assertion --- tests/unit/PublicSuffixListTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/unit/PublicSuffixListTest.php b/tests/unit/PublicSuffixListTest.php index bde93aa..37eec15 100644 --- a/tests/unit/PublicSuffixListTest.php +++ b/tests/unit/PublicSuffixListTest.php @@ -35,7 +35,7 @@ public function testContracts() public function testGetSet() { $tree = $this->object->getTree(); - $this->assertTrue(is_array($tree)); + $this->assertIsArray($tree); $this->assertArrayHasKey('com', $tree); } @@ -43,7 +43,7 @@ public function testClearDataDirectory() { $this->object->clearDataDirectory(); $tree = $this->object->getTree(); - $this->assertTrue(is_array($tree)); + $this->assertIsArray($tree); $this->assertArrayHasKey('com', $tree); } @@ -51,7 +51,7 @@ public function testClearDataDirectoryCacheOnly() { $this->object->clearDataDirectory(true); $tree = $this->object->getTree(); - $this->assertTrue(is_array($tree)); + $this->assertIsArray($tree); $this->assertArrayHasKey('com', $tree); } } From d9604f6990b9d4c65545a64d9e6be208d6314770 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 10:40:52 -0400 Subject: [PATCH 19/31] data update --- data/public_suffix_list.dat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/public_suffix_list.dat b/data/public_suffix_list.dat index ef56847..07a9e20 100644 --- a/data/public_suffix_list.dat +++ b/data/public_suffix_list.dat @@ -6708,7 +6708,7 @@ org.zw // newGTLDs -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-06-29T15:13:33Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-06-13T15:15:16Z // This list is auto-generated, don't edit it manually. // aaa : American Automobile Association, Inc. // https://www.iana.org/domains/root/db/aaa.html @@ -10494,7 +10494,7 @@ ups // https://www.iana.org/domains/root/db/vacations.html vacations -// vana : D3 Registry LLC +// vana : Internet Naming Company LLC // https://www.iana.org/domains/root/db/vana.html vana From 86cf6bea0ddb5b9053753080d2b4d1e3a04aeffd Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 10:57:46 -0400 Subject: [PATCH 20/31] code improvement --- src/RegisteredDomain.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/RegisteredDomain.php b/src/RegisteredDomain.php index 60a692c..ab6dd2e 100644 --- a/src/RegisteredDomain.php +++ b/src/RegisteredDomain.php @@ -40,16 +40,19 @@ public function __construct(PublicSuffixList $psl = null) */ protected function normalizeHost($url) { - if (null === $url) { + if (empty($url)) { return ''; } $host = (false !== strpos($url, '/')) ? parse_url($url, PHP_URL_HOST) : $url; + $host = $host ?: ''; // Ensure $host is a string, even if parse_url returns false - $parts = null !== $host ? explode('.', $host) : []; + $parts = explode('.', $host); $utf8Host = ''; + $separator = ''; foreach ($parts as $part) { - $utf8Host = $utf8Host . (('' === $utf8Host) ? '' : '.') . $this->convertPunycode($part); + $utf8Host .= $separator . $this->convertPunycode($part); + $separator = '.'; } return mb_strtolower($utf8Host); From 7b3b24305bee6f7a3e304b0ecb95c6735208da1b Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 21:42:48 -0400 Subject: [PATCH 21/31] Delete /archive --- archive/effectiveTLDs.inc.php | 6656 ----------------------------- archive/generateEffectiveTLDs.php | 221 - archive/regDomain.inc.php | 82 - archive/test-regDomain.php | 51 - archive/test-regDomain.sh | 4 - archive/test_psl.txt | 98 - 6 files changed, 7112 deletions(-) delete mode 100644 archive/effectiveTLDs.inc.php delete mode 100755 archive/generateEffectiveTLDs.php delete mode 100644 archive/regDomain.inc.php delete mode 100755 archive/test-regDomain.php delete mode 100755 archive/test-regDomain.sh delete mode 100644 archive/test_psl.txt diff --git a/archive/effectiveTLDs.inc.php b/archive/effectiveTLDs.inc.php deleted file mode 100644 index 90e9b05..0000000 --- a/archive/effectiveTLDs.inc.php +++ /dev/null @@ -1,6656 +0,0 @@ - 2008-06-18 -// as : http://en.wikipedia.org/wiki/.as -// asia : http://en.wikipedia.org/wiki/.asia -// at : http://en.wikipedia.org/wiki/.at -// Confirmed by registry 2008-06-17 -// au : http://en.wikipedia.org/wiki/.au -// http://www.auda.org.au/ -// 2LDs -// Historic 2LDs (closed to new registration, but sites still exist) -// CGDNs - http://www.cgdn.org.au/ -// 3LDs -// Removed at request of Shae.Donelan@services.nsw.gov.au, 2010-03-04 -// nsw.gov.au -// aw : http://en.wikipedia.org/wiki/.aw -// ax : http://en.wikipedia.org/wiki/.ax -// az : http://en.wikipedia.org/wiki/.az -// ba : http://en.wikipedia.org/wiki/.ba -// bb : http://en.wikipedia.org/wiki/.bb -// bd : http://en.wikipedia.org/wiki/.bd -// be : http://en.wikipedia.org/wiki/.be -// Confirmed by registry 2008-06-08 -// bf : http://en.wikipedia.org/wiki/.bf -// bg : http://en.wikipedia.org/wiki/.bg -// https://www.register.bg/user/static/rules/en/index.html -// bh : http://en.wikipedia.org/wiki/.bh -// bi : http://en.wikipedia.org/wiki/.bi -// http://whois.nic.bi/ -// biz : http://en.wikipedia.org/wiki/.biz -// bj : http://en.wikipedia.org/wiki/.bj -// bm : http://www.bermudanic.bm/dnr-text.txt -// bn : http://en.wikipedia.org/wiki/.bn -// bo : http://www.nic.bo/ -// br : http://registro.br/dominio/dpn.html -// Updated by registry 2011-03-01 -// bs : http://www.nic.bs/rules.html -// bt : http://en.wikipedia.org/wiki/.bt -// bv : No registrations at this time. -// Submitted by registry 2006-06-16 -// bw : http://en.wikipedia.org/wiki/.bw -// http://www.gobin.info/domainname/bw.doc -// list of other 2nd level tlds ? -// by : http://en.wikipedia.org/wiki/.by -// http://tld.by/rules_2006_en.html -// list of other 2nd level tlds ? -// Official information does not indicate that com.by is a reserved -// second-level domain, but it's being used as one (see www.google.com.by and -// www.yahoo.com.by, for example), so we list it here for safety's sake. -// http://hoster.by/ -// bz : http://en.wikipedia.org/wiki/.bz -// http://www.belizenic.bz/ -// ca : http://en.wikipedia.org/wiki/.ca -// ca geographical names -// gc.ca: http://en.wikipedia.org/wiki/.gc.ca -// see also: http://registry.gc.ca/en/SubdomainFAQ -// cat : http://en.wikipedia.org/wiki/.cat -// cc : http://en.wikipedia.org/wiki/.cc -// cd : http://en.wikipedia.org/wiki/.cd -// see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1 -// cf : http://en.wikipedia.org/wiki/.cf -// cg : http://en.wikipedia.org/wiki/.cg -// ch : http://en.wikipedia.org/wiki/.ch -// ci : http://en.wikipedia.org/wiki/.ci -// http://www.nic.ci/index.php?page=charte -// ck : http://en.wikipedia.org/wiki/.ck -// cl : http://en.wikipedia.org/wiki/.cl -// cm : http://en.wikipedia.org/wiki/.cm -// cn : http://en.wikipedia.org/wiki/.cn -// Submitted by registry 2008-06-11 -// cn geographic names -// co : http://en.wikipedia.org/wiki/.co -// Submitted by registry 2008-06-11 -// com : http://en.wikipedia.org/wiki/.com -// coop : http://en.wikipedia.org/wiki/.coop -// cr : http://www.nic.cr/niccr_publico/showRegistroDominiosScreen.do -// cu : http://en.wikipedia.org/wiki/.cu -// cv : http://en.wikipedia.org/wiki/.cv -// cx : http://en.wikipedia.org/wiki/.cx -// list of other 2nd level tlds ? -// cy : http://en.wikipedia.org/wiki/.cy -// cz : http://en.wikipedia.org/wiki/.cz -// de : http://en.wikipedia.org/wiki/.de -// Confirmed by registry (with technical -// reservations) 2008-07-01 -// dj : http://en.wikipedia.org/wiki/.dj -// dk : http://en.wikipedia.org/wiki/.dk -// Confirmed by registry 2008-06-17 -// dm : http://en.wikipedia.org/wiki/.dm -// do : http://en.wikipedia.org/wiki/.do -// dz : http://en.wikipedia.org/wiki/.dz -// ec : http://www.nic.ec/reg/paso1.asp -// Submitted by registry 2008-07-04 -// edu : http://en.wikipedia.org/wiki/.edu -// ee : http://www.eenet.ee/EENet/dom_reeglid.html#lisa_B -// eg : http://en.wikipedia.org/wiki/.eg -// er : http://en.wikipedia.org/wiki/.er -// es : https://www.nic.es/site_ingles/ingles/dominios/index.html -// et : http://en.wikipedia.org/wiki/.et -// eu : http://en.wikipedia.org/wiki/.eu -// fi : http://en.wikipedia.org/wiki/.fi -// aland.fi : http://en.wikipedia.org/wiki/.ax -// This domain is being phased out in favor of .ax. As there are still many -// domains under aland.fi, we still keep it on the list until aland.fi is -// completely removed. -// TODO: Check for updates (expected to be phased out around Q1/2009) -// fj : http://en.wikipedia.org/wiki/.fj -// fk : http://en.wikipedia.org/wiki/.fk -// fm : http://en.wikipedia.org/wiki/.fm -// fo : http://en.wikipedia.org/wiki/.fo -// fr : http://www.afnic.fr/ -// domaines descriptifs : http://www.afnic.fr/obtenir/chartes/nommage-fr/annexe-descriptifs -// domaines sectoriels : http://www.afnic.fr/obtenir/chartes/nommage-fr/annexe-sectoriels -// ga : http://en.wikipedia.org/wiki/.ga -// gb : This registry is effectively dormant -// Submitted by registry 2008-06-12 -// gd : http://en.wikipedia.org/wiki/.gd -// ge : http://www.nic.net.ge/policy_en.pdf -// gf : http://en.wikipedia.org/wiki/.gf -// gg : http://www.channelisles.net/applic/avextn.shtml -// gh : http://en.wikipedia.org/wiki/.gh -// see also: http://www.nic.gh/reg_now.php -// Although domains directly at second level are not possible at the moment, -// they have been possible for some time and may come back. -// gi : http://www.nic.gi/rules.html -// gl : http://en.wikipedia.org/wiki/.gl -// http://nic.gl -// gm : http://www.nic.gm/htmlpages%5Cgm-policy.htm -// gn : http://psg.com/dns/gn/gn.txt -// Submitted by registry 2008-06-17 -// gov : http://en.wikipedia.org/wiki/.gov -// gp : http://www.nic.gp/index.php?lang=en -// gq : http://en.wikipedia.org/wiki/.gq -// gr : https://grweb.ics.forth.gr/english/1617-B-2005.html -// Submitted by registry 2008-06-09 -// gs : http://en.wikipedia.org/wiki/.gs -// gt : http://www.gt/politicas.html -// gu : http://gadao.gov.gu/registration.txt -// gw : http://en.wikipedia.org/wiki/.gw -// gy : http://en.wikipedia.org/wiki/.gy -// http://registry.gy/ -// hk : https://www.hkdnr.hk -// Submitted by registry 2008-06-11 -// hm : http://en.wikipedia.org/wiki/.hm -// hn : http://www.nic.hn/politicas/ps02,,05.html -// hr : http://www.dns.hr/documents/pdf/HRTLD-regulations.pdf -// ht : http://www.nic.ht/info/charte.cfm -// hu : http://www.domain.hu/domain/English/sld.html -// Confirmed by registry 2008-06-12 -// id : http://en.wikipedia.org/wiki/.id -// see also: https://register.pandi.or.id/ -// ie : http://en.wikipedia.org/wiki/.ie -// il : http://en.wikipedia.org/wiki/.il -// im : https://www.nic.im/pdfs/imfaqs.pdf -// in : http://en.wikipedia.org/wiki/.in -// see also: http://www.inregistry.in/policies/ -// Please note, that nic.in is not an offical eTLD, but used by most -// government institutions. -// info : http://en.wikipedia.org/wiki/.info -// int : http://en.wikipedia.org/wiki/.int -// Confirmed by registry 2008-06-18 -// io : http://www.nic.io/rules.html -// list of other 2nd level tlds ? -// iq : http://www.cmc.iq/english/iq/iqregister1.htm -// ir : http://www.nic.ir/Terms_and_Conditions_ir,_Appendix_1_Domain_Rules -// Also see http://www.nic.ir/Internationalized_Domain_Names -// Two .ir entries added at request of , 2010-04-16 -// xn--mgba3a4f16a.ir (.ir, Persian YEH) -// xn--mgba3a4fra.ir (.ir, Arabic YEH) -// is : http://www.isnic.is/domain/rules.php -// Confirmed by registry 2008-12-06 -// it : http://en.wikipedia.org/wiki/.it -// list of reserved geo-names : -// http://www.nic.it/documenti/regolamenti-e-linee-guida/regolamento-assegnazione-versione-6.0.pdf -// (There is also a list of reserved geo-names corresponding to Italian -// municipalities : http://www.nic.it/documenti/appendice-c.pdf , but it is -// not included here.) -// je : http://www.channelisles.net/applic/avextn.shtml -// jm : http://www.com.jm/register.html -// jo : http://www.dns.jo/Registration_policy.aspx -// jobs : http://en.wikipedia.org/wiki/.jobs -// jp : http://en.wikipedia.org/wiki/.jp -// http://jprs.co.jp/en/jpdomain.html -// Updated by registry 2012-05-28 -// jp organizational type names -// jp preficture type names -// jp geographic type names -// http://jprs.jp/doc/rule/saisoku-1.html -// 4th level registration -// ke : http://www.kenic.or.ke/index.php?option=com_content&task=view&id=117&Itemid=145 -// kg : http://www.domain.kg/dmn_n.html -// kh : http://www.mptc.gov.kh/dns_registration.htm -// ki : http://www.ki/dns/index.html -// km : http://en.wikipedia.org/wiki/.km -// http://www.domaine.km/documents/charte.doc -// These are only mentioned as proposed suggestions at domaine.km, but -// http://en.wikipedia.org/wiki/.km says they're available for registration: -// kn : http://en.wikipedia.org/wiki/.kn -// http://www.dot.kn/domainRules.html -// kp : http://www.kcce.kp/en_index.php -// kr : http://en.wikipedia.org/wiki/.kr -// see also: http://domain.nida.or.kr/eng/registration.jsp -// kr geographical names -// kw : http://en.wikipedia.org/wiki/.kw -// ky : http://www.icta.ky/da_ky_reg_dom.php -// Confirmed by registry 2008-06-17 -// kz : http://en.wikipedia.org/wiki/.kz -// see also: http://www.nic.kz/rules/index.jsp -// la : http://en.wikipedia.org/wiki/.la -// Submitted by registry 2008-06-10 -// lb : http://en.wikipedia.org/wiki/.lb -// Submitted by registry 2008-06-17 -// lc : http://en.wikipedia.org/wiki/.lc -// see also: http://www.nic.lc/rules.htm -// li : http://en.wikipedia.org/wiki/.li -// lk : http://www.nic.lk/seclevpr.html -// lr : http://psg.com/dns/lr/lr.txt -// Submitted by registry 2008-06-17 -// ls : http://en.wikipedia.org/wiki/.ls -// lt : http://en.wikipedia.org/wiki/.lt -// gov.lt : http://www.gov.lt/index_en.php -// lu : http://www.dns.lu/en/ -// lv : http://www.nic.lv/DNS/En/generic.php -// ly : http://www.nic.ly/regulations.php -// ma : http://en.wikipedia.org/wiki/.ma -// http://www.anrt.ma/fr/admin/download/upload/file_fr782.pdf -// mc : http://www.nic.mc/ -// md : http://en.wikipedia.org/wiki/.md -// me : http://en.wikipedia.org/wiki/.me -// mg : http://www.nic.mg/tarif.htm -// mh : http://en.wikipedia.org/wiki/.mh -// mil : http://en.wikipedia.org/wiki/.mil -// mk : http://en.wikipedia.org/wiki/.mk -// see also: http://dns.marnet.net.mk/postapka.php -// ml : http://www.gobin.info/domainname/ml-template.doc -// see also: http://en.wikipedia.org/wiki/.ml -// mm : http://en.wikipedia.org/wiki/.mm -// mn : http://en.wikipedia.org/wiki/.mn -// mo : http://www.monic.net.mo/ -// mobi : http://en.wikipedia.org/wiki/.mobi -// mp : http://www.dot.mp/ -// Confirmed by registry 2008-06-17 -// mq : http://en.wikipedia.org/wiki/.mq -// mr : http://en.wikipedia.org/wiki/.mr -// ms : http://en.wikipedia.org/wiki/.ms -// mt : https://www.nic.org.mt/dotmt/ -// mu : http://en.wikipedia.org/wiki/.mu -// museum : http://about.museum/naming/ -// http://index.museum/ -// mv : http://en.wikipedia.org/wiki/.mv -// "mv" included because, contra Wikipedia, google.mv exists. -// mw : http://www.registrar.mw/ -// mx : http://www.nic.mx/ -// Submitted by registry 2008-06-19 -// my : http://www.mynic.net.my/ -// mz : http://www.gobin.info/domainname/mz-template.doc -// na : http://www.na-nic.com.na/ -// http://www.info.na/domain/ -// name : has 2nd-level tlds, but there's no list of them -// nc : http://www.cctld.nc/ -// ne : http://en.wikipedia.org/wiki/.ne -// net : http://en.wikipedia.org/wiki/.net -// nf : http://en.wikipedia.org/wiki/.nf -// ng : http://psg.com/dns/ng/ -// Submitted by registry 2008-06-17 -// ni : http://www.nic.ni/dominios.htm -// nl : http://www.domain-registry.nl/ace.php/c,728,122,,,,Home.html -// Confirmed by registry (with technical -// reservations) 2008-06-08 -// BV.nl will be a registry for dutch BV's (besloten vennootschap) -// no : http://www.norid.no/regelverk/index.en.html -// The Norwegian registry has declined to notify us of updates. The web pages -// referenced below are the official source of the data. There is also an -// announce mailing list: -// https://postlister.uninett.no/sympa/info/norid-diskusjon -// Norid generic domains : http://www.norid.no/regelverk/vedlegg-c.en.html -// Non-Norid generic domains : http://www.norid.no/regelverk/vedlegg-d.en.html -// no geographical names : http://www.norid.no/regelverk/vedlegg-b.en.html -// counties -// primary and lower secondary schools per county -// cities -// communities -// np : http://www.mos.com.np/register.html -// nr : http://cenpac.net.nr/dns/index.html -// Confirmed by registry 2008-06-17 -// nu : http://en.wikipedia.org/wiki/.nu -// nz : http://en.wikipedia.org/wiki/.nz -// om : http://en.wikipedia.org/wiki/.om -// org : http://en.wikipedia.org/wiki/.org -// pa : http://www.nic.pa/ -// Some additional second level "domains" resolve directly as hostnames, such as -// pannet.pa, so we add a rule for "pa". -// pe : https://www.nic.pe/InformeFinalComision.pdf -// pf : http://www.gobin.info/domainname/formulaire-pf.pdf -// pg : http://en.wikipedia.org/wiki/.pg -// ph : http://www.domains.ph/FAQ2.asp -// Submitted by registry 2008-06-13 -// pk : http://pk5.pknic.net.pk/pk5/msgNamepk.PK -// pl : http://www.dns.pl/english/ -// NASK functional domains (nask.pl / dns.pl) : http://www.dns.pl/english/dns-funk.html -// ICM functional domains (icm.edu.pl) -// Government domains (administred by ippt.gov.pl) -// other functional domains -// NASK geographical domains : http://www.dns.pl/english/dns-regiony.html -// TASK geographical domains (www.task.gda.pl/uslugi/dns) -// other geographical domains -// pm : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf -// pn : http://www.government.pn/PnRegistry/policies.htm -// pr : http://www.nic.pr/index.asp?f=1 -// these aren't mentioned on nic.pr, but on http://en.wikipedia.org/wiki/.pr -// pro : http://www.nic.pro/support_faq.htm -// ps : http://en.wikipedia.org/wiki/.ps -// http://www.nic.ps/registration/policy.html#reg -// pt : http://online.dns.pt/dns/start_dns -// pw : http://en.wikipedia.org/wiki/.pw -// py : http://www.nic.py/faq_a.html#faq_b -// qa : http://domains.qa/en/ -// re : http://www.afnic.re/obtenir/chartes/nommage-re/annexe-descriptifs -// ro : http://www.rotld.ro/ -// rs : http://en.wikipedia.org/wiki/.rs -// ru : http://www.cctld.ru/ru/docs/aktiv_8.php -// Industry domains -// Geographical domains -// More geographical domains -// State domains -// Technical domains -// rw : http://www.nic.rw/cgi-bin/policy.pl -// sa : http://www.nic.net.sa/ -// sb : http://www.sbnic.net.sb/ -// Submitted by registry 2008-06-08 -// sc : http://www.nic.sc/ -// sd : http://www.isoc.sd/sudanic.isoc.sd/billing_pricing.htm -// Submitted by registry 2008-06-17 -// se : http://en.wikipedia.org/wiki/.se -// Submitted by registry 2008-06-24 -// sg : http://www.nic.net.sg/page/registration-policies-procedures-and-guidelines -// sh : http://www.nic.sh/registrar.html -// si : http://en.wikipedia.org/wiki/.si -// sj : No registrations at this time. -// Submitted by registry 2008-06-16 -// sk : http://en.wikipedia.org/wiki/.sk -// list of 2nd level domains ? -// sl : http://www.nic.sl -// Submitted by registry 2008-06-12 -// sm : http://en.wikipedia.org/wiki/.sm -// sn : http://en.wikipedia.org/wiki/.sn -// so : http://www.soregistry.com/ -// sr : http://en.wikipedia.org/wiki/.sr -// st : http://www.nic.st/html/policyrules/ -// su : http://en.wikipedia.org/wiki/.su -// sv : http://www.svnet.org.sv/svpolicy.html -// sx : http://en.wikipedia.org/wiki/.sx -// Confirmed by registry 2012-05-31 -// sy : http://en.wikipedia.org/wiki/.sy -// see also: http://www.gobin.info/domainname/sy.doc -// sz : http://en.wikipedia.org/wiki/.sz -// http://www.sispa.org.sz/ -// tc : http://en.wikipedia.org/wiki/.tc -// td : http://en.wikipedia.org/wiki/.td -// tel: http://en.wikipedia.org/wiki/.tel -// http://www.telnic.org/ -// tf : http://en.wikipedia.org/wiki/.tf -// tg : http://en.wikipedia.org/wiki/.tg -// http://www.nic.tg/ -// th : http://en.wikipedia.org/wiki/.th -// Submitted by registry 2008-06-17 -// tj : http://www.nic.tj/policy.html -// tk : http://en.wikipedia.org/wiki/.tk -// tl : http://en.wikipedia.org/wiki/.tl -// tm : http://www.nic.tm/local.html -// tn : http://en.wikipedia.org/wiki/.tn -// http://whois.ati.tn/ -// to : http://en.wikipedia.org/wiki/.to -// Submitted by registry 2008-06-17 -// tr : http://en.wikipedia.org/wiki/.tr -// Used by government in the TRNC -// http://en.wikipedia.org/wiki/.nc.tr -// travel : http://en.wikipedia.org/wiki/.travel -// tt : http://www.nic.tt/ -// tv : http://en.wikipedia.org/wiki/.tv -// Not listing any 2LDs as reserved since none seem to exist in practice, -// Wikipedia notwithstanding. -// tw : http://en.wikipedia.org/wiki/.tw -// tz : http://en.wikipedia.org/wiki/.tz -// Submitted by registry 2008-06-17 -// Updated from http://www.tznic.or.tz/index.php/domains.html 2010-10-25 -// ua : https://hostmaster.ua/policy/?ua -// Submitted by registry 2012-04-27 -// ua 2LD -// ua geographic names -// https://hostmaster.ua/2ld/ -// Private registries in .ua -// ug : https://www.registry.co.ug/ -// uk : http://en.wikipedia.org/wiki/.uk -// Submitted by registry 2012-10-02 -// us : http://en.wikipedia.org/wiki/.us -// us geographic names -// The registrar notes several more specific domains available in each state, -// such as state.*.us, dst.*.us, etc., but resolution of these is somewhat -// haphazard; in some states these domains resolve as addresses, while in others -// only subdomains are available, or even nothing at all. We include the -// most common ones where it's clear that different sites are different -// entities. -// k12.hi.us Hawaii has a state-wide DOE login: bug 614565 -// k12.ma.us contains school districts in Massachusetts. The 4LDs are -// managed indepedently except for private (PVT), charter (CHTR) and -// parochial (PAROCH) schools. Those are delegated dorectly to the -// 5LD operators. -// uy : http://www.nic.org.uy/ -// uz : http://www.reg.uz/ -// va : http://en.wikipedia.org/wiki/.va -// vc : http://en.wikipedia.org/wiki/.vc -// Submitted by registry 2008-06-13 -// ve : https://registro.nic.ve/ -// Confirmed by registry 2012-10-04 -// vg : http://en.wikipedia.org/wiki/.vg -// vi : http://www.nic.vi/newdomainform.htm -// http://www.nic.vi/Domain_Rules/body_domain_rules.html indicates some other -// TLDs are "reserved", such as edu.vi and gov.vi, but doesn't actually say they -// are available for registration (which they do not seem to be). -// vn : https://www.dot.vn/vnnic/vnnic/domainregistration.jsp -// vu : http://en.wikipedia.org/wiki/.vu -// list of 2nd level tlds ? -// wf : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf -// ws : http://en.wikipedia.org/wiki/.ws -// http://samoanic.ws/index.dhtml -// yt : http://www.afnic.fr/medias/documents/AFNIC-naming-policy2012.pdf -// IDN ccTLDs -// Please sort by ISO 3166 ccTLD, then punicode string -// when submitting patches and follow this format: -// ("" ) : -// [optional sponsoring org] -// -// xn--mgbaam7a8h ("Emerat" Arabic) : AE -// http://nic.ae/english/arabicdomain/rules.jsp -// xn--54b7fta0cc ("Bangla" Bangla) : BD -// xn--fiqs8s ("China" Chinese-Han-Simplified <.Zhonggou>) : CN -// CNNIC -// http://cnnic.cn/html/Dir/2005/10/11/3218.htm -// xn--fiqz9s ("China" Chinese-Han-Traditional <.Zhonggou>) : CN -// CNNIC -// http://cnnic.cn/html/Dir/2005/10/11/3218.htm -// xn--lgbbat1ad8j ("Algeria / Al Jazair" Arabic) : DZ -// xn--wgbh1c ("Egypt" Arabic .masr) : EG -// http://www.dotmasr.eg/ -// xn--node ("ge" Georgian (Mkhedruli)) : GE -// xn--j6w193g ("Hong Kong" Chinese-Han) : HK -// https://www2.hkirc.hk/register/rules.jsp -// xn--h2brj9c ("Bharat" Devanagari) : IN -// India -// xn--mgbbh1a71e ("Bharat" Arabic) : IN -// India -// xn--fpcrj9c3d ("Bharat" Telugu) : IN -// India -// xn--gecrj9c ("Bharat" Gujarati) : IN -// India -// xn--s9brj9c ("Bharat" Gurmukhi) : IN -// India -// xn--45brj9c ("Bharat" Bengali) : IN -// India -// xn--xkc2dl3a5ee0h ("India" Tamil) : IN -// India -// xn--mgba3a4f16a ("Iran" Persian) : IR -// xn--mgba3a4fra ("Iran" Arabic) : IR -// xn--mgbayh7gpa ("al-Ordon" Arabic) : JO -// National Information Technology Center (NITC) -// Royal Scientific Society, Al-Jubeiha -// xn--3e0b707e ("Republic of Korea" Hangul) : KR -// xn--fzc2c9e2c ("Lanka" Sinhalese-Sinhala) : LK -// http://nic.lk -// xn--xkc2al3hye2a ("Ilangai" Tamil) : LK -// http://nic.lk -// xn--mgbc0a9azcg ("Morocco / al-Maghrib" Arabic) : MA -// xn--mgb9awbf ("Oman" Arabic) : OM -// xn--ygbi2ammx ("Falasteen" Arabic) : PS -// The Palestinian National Internet Naming Authority (PNINA) -// http://www.pnina.ps -// xn--90a3ac ("srb" Cyrillic) : RS -// xn--p1ai ("rf" Russian-Cyrillic) : RU -// http://www.cctld.ru/en/docs/rulesrf.php -// xn--wgbl6a ("Qatar" Arabic) : QA -// http://www.ict.gov.qa/ -// xn--mgberp4a5d4ar ("AlSaudiah" Arabic) : SA -// http://www.nic.net.sa/ -// xn--mgberp4a5d4a87g ("AlSaudiah" Arabic) variant : SA -// xn--mgbqly7c0a67fbc ("AlSaudiah" Arabic) variant : SA -// xn--mgbqly7cvafr ("AlSaudiah" Arabic) variant : SA -// xn--ogbpf8fl ("Syria" Arabic) : SY -// xn--mgbtf8fl ("Syria" Arabic) variant : SY -// xn--yfro4i67o Singapore ("Singapore" Chinese-Han) : SG -// xn--clchc0ea0b2g2a9gcd ("Singapore" Tamil) : SG -// xn--o3cw4h ("Thai" Thai) : TH -// http://www.thnic.co.th -// xn--pgbs0dh ("Tunis") : TN -// http://nic.tn -// xn--kpry57d ("Taiwan" Chinese-Han-Traditional) : TW -// http://www.twnic.net/english/dn/dn_07a.htm -// xn--kprw13d ("Taiwan" Chinese-Han-Simplified) : TW -// http://www.twnic.net/english/dn/dn_07a.htm -// xn--nnx388a ("Taiwan") variant : TW -// xn--j1amh ("ukr" Cyrillic) : UA -// xn--mgb2ddes ("AlYemen" Arabic) : YE -// xxx : http://icmregistry.com -// ye : http://www.y.net.ye/services/domain_name.htm -// za : http://www.zadna.org.za/slds.html -// zm : http://en.wikipedia.org/wiki/.zm -// zw : http://en.wikipedia.org/wiki/.zw -// ===END ICANN DOMAINS=== -// ===BEGIN PRIVATE DOMAINS=== -// info.at : http://www.info.at/ -// priv.at : http://www.nic.priv.at/ -// Submitted by registry 2008-06-09 -// co.ca : http://registry.co.ca -// CentralNic : http://www.centralnic.com/names/domains -// Confirmed by registry 2012-09-27 -// Opera Software, A.S.A. -// Requested by Yngve Pettersen 2009-11-26 -// Google, Inc. -// Requested by Eduardo Vela 2010-09-06 -// DreamHost : http://www.dreamhost.com/ -// Requested by Andrew Farmer 2012-10-02 -// iki.fi : Submitted by Hannu Aronsson 2009-11-05 -// c.la : http://www.c.la/ -// ZaNiC : http://www.za.net/ -// Confirmed by registry 2009-10-03 -// CoDNS B.V. -// Added 2010-05-23. -// Mainseek Sp. z o.o. : http://www.co.pl/ -// DynDNS.com : http://www.dyndns.com/services/dns/dyndns/ -// ===END PRIVATE DOMAINS=== - -$tldTree = ['ac' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'net' => [], - 'mil' => [], - 'org' => [], -], - 'ad' => ['nom' => [], - ], - 'ae' => ['co' => [], - 'net' => [], - 'org' => [], - 'sch' => [], - 'ac' => [], - 'gov' => [], - 'mil' => [], - ], - 'aero' => ['accident-investigation' => [], - 'accident-prevention' => [], - 'aerobatic' => [], - 'aeroclub' => [], - 'aerodrome' => [], - 'agents' => [], - 'aircraft' => [], - 'airline' => [], - 'airport' => [], - 'air-surveillance' => [], - 'airtraffic' => [], - 'air-traffic-control' => [], - 'ambulance' => [], - 'amusement' => [], - 'association' => [], - 'author' => [], - 'ballooning' => [], - 'broker' => [], - 'caa' => [], - 'cargo' => [], - 'catering' => [], - 'certification' => [], - 'championship' => [], - 'charter' => [], - 'civilaviation' => [], - 'club' => [], - 'conference' => [], - 'consultant' => [], - 'consulting' => [], - 'control' => [], - 'council' => [], - 'crew' => [], - 'design' => [], - 'dgca' => [], - 'educator' => [], - 'emergency' => [], - 'engine' => [], - 'engineer' => [], - 'entertainment' => [], - 'equipment' => [], - 'exchange' => [], - 'express' => [], - 'federation' => [], - 'flight' => [], - 'freight' => [], - 'fuel' => [], - 'gliding' => [], - 'government' => [], - 'groundhandling' => [], - 'group' => [], - 'hanggliding' => [], - 'homebuilt' => [], - 'insurance' => [], - 'journal' => [], - 'journalist' => [], - 'leasing' => [], - 'logistics' => [], - 'magazine' => [], - 'maintenance' => [], - 'marketplace' => [], - 'media' => [], - 'microlight' => [], - 'modelling' => [], - 'navigation' => [], - 'parachuting' => [], - 'paragliding' => [], - 'passenger-association' => [], - 'pilot' => [], - 'press' => [], - 'production' => [], - 'recreation' => [], - 'repbody' => [], - 'res' => [], - 'research' => [], - 'rotorcraft' => [], - 'safety' => [], - 'scientist' => [], - 'services' => [], - 'show' => [], - 'skydiving' => [], - 'software' => [], - 'student' => [], - 'taxi' => [], - 'trader' => [], - 'trading' => [], - 'trainer' => [], - 'union' => [], - 'workinggroup' => [], - 'works' => [], - ], - 'af' => ['gov' => [], - 'com' => [], - 'org' => [], - 'net' => [], - 'edu' => [], - ], - 'ag' => ['com' => [], - 'org' => [], - 'net' => [], - 'co' => [], - 'nom' => [], - ], - 'ai' => ['off' => [], - 'com' => [], - 'net' => [], - 'org' => [], - ], - 'al' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'mil' => [], - 'net' => [], - 'org' => [], - ], - 'am' => [], - 'an' => ['com' => [], - 'net' => [], - 'org' => [], - 'edu' => [], - ], - 'ao' => ['ed' => [], - 'gv' => [], - 'og' => [], - 'co' => [], - 'pb' => [], - 'it' => [], - ], - 'aq' => [], - 'ar' => ['*' => [], - 'congresodelalengua3' => ['!' => '' - ], - 'educ' => ['!' => '' - ], - 'gobiernoelectronico' => ['!' => '' - ], - 'mecon' => ['!' => '' - ], - 'nacion' => ['!' => '' - ], - 'nic' => ['!' => '' - ], - 'promocion' => ['!' => '' - ], - 'retina' => ['!' => '' - ], - 'uba' => ['!' => '' - ], - ], - 'arpa' => ['e164' => [], - 'in-addr' => [], - 'ip6' => [], - 'iris' => [], - 'uri' => [], - 'urn' => [], - ], - 'as' => ['gov' => [], - ], - 'asia' => [], - 'at' => ['ac' => [], - 'co' => [], - 'gv' => [], - 'or' => [], - 'biz' => [], - 'info' => [], - 'priv' => [], - ], - 'au' => ['com' => [], - 'net' => [], - 'org' => [], - 'edu' => ['act' => [], - 'nsw' => [], - 'nt' => [], - 'qld' => [], - 'sa' => [], - 'tas' => [], - 'vic' => [], - 'wa' => [], - ], - 'gov' => ['act' => [], - 'nt' => [], - 'qld' => [], - 'sa' => [], - 'tas' => [], - 'vic' => [], - 'wa' => [], - ], - 'csiro' => [], - 'asn' => [], - 'id' => [], - 'info' => [], - 'conf' => [], - 'oz' => [], - 'act' => [], - 'nsw' => [], - 'nt' => [], - 'qld' => [], - 'sa' => [], - 'tas' => [], - 'vic' => [], - 'wa' => [], - ], - 'aw' => ['com' => [], - ], - 'ax' => [], - 'az' => ['com' => [], - 'net' => [], - 'int' => [], - 'gov' => [], - 'org' => [], - 'edu' => [], - 'info' => [], - 'pp' => [], - 'mil' => [], - 'name' => [], - 'pro' => [], - 'biz' => [], - ], - 'ba' => ['org' => [], - 'net' => [], - 'edu' => [], - 'gov' => [], - 'mil' => [], - 'unsa' => [], - 'unbi' => [], - 'co' => [], - 'com' => [], - 'rs' => [], - ], - 'bb' => ['biz' => [], - 'com' => [], - 'edu' => [], - 'gov' => [], - 'info' => [], - 'net' => [], - 'org' => [], - 'store' => [], - ], - 'bd' => ['*' => [], - ], - 'be' => ['ac' => [], - ], - 'bf' => ['gov' => [], - ], - 'bg' => ['a' => [], - 'b' => [], - 'c' => [], - 'd' => [], - 'e' => [], - 'f' => [], - 'g' => [], - 'h' => [], - 'i' => [], - 'j' => [], - 'k' => [], - 'l' => [], - 'm' => [], - 'n' => [], - 'o' => [], - 'p' => [], - 'q' => [], - 'r' => [], - 's' => [], - 't' => [], - 'u' => [], - 'v' => [], - 'w' => [], - 'x' => [], - 'y' => [], - 'z' => [], - '0' => [], - '1' => [], - '2' => [], - '3' => [], - '4' => [], - '5' => [], - '6' => [], - '7' => [], - '8' => [], - '9' => [], - ], - 'bh' => ['com' => [], - 'edu' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - ], - 'bi' => ['co' => [], - 'com' => [], - 'edu' => [], - 'or' => [], - 'org' => [], - ], - 'biz' => ['dyndns' => [], - 'for-better' => [], - 'for-more' => [], - 'for-some' => [], - 'for-the' => [], - 'selfip' => [], - 'webhop' => [], - ], - 'bj' => ['asso' => [], - 'barreau' => [], - 'gouv' => [], - ], - 'bm' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'net' => [], - 'org' => [], - ], - 'bn' => ['*' => [], - ], - 'bo' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'gob' => [], - 'int' => [], - 'org' => [], - 'net' => [], - 'mil' => [], - 'tv' => [], - ], - 'br' => ['adm' => [], - 'adv' => [], - 'agr' => [], - 'am' => [], - 'arq' => [], - 'art' => [], - 'ato' => [], - 'b' => [], - 'bio' => [], - 'blog' => [], - 'bmd' => [], - 'cim' => [], - 'cng' => [], - 'cnt' => [], - 'com' => [], - 'coop' => [], - 'ecn' => [], - 'eco' => [], - 'edu' => [], - 'emp' => [], - 'eng' => [], - 'esp' => [], - 'etc' => [], - 'eti' => [], - 'far' => [], - 'flog' => [], - 'fm' => [], - 'fnd' => [], - 'fot' => [], - 'fst' => [], - 'g12' => [], - 'ggf' => [], - 'gov' => [], - 'imb' => [], - 'ind' => [], - 'inf' => [], - 'jor' => [], - 'jus' => [], - 'leg' => [], - 'lel' => [], - 'mat' => [], - 'med' => [], - 'mil' => [], - 'mus' => [], - 'net' => [], - 'nom' => [], - 'not' => [], - 'ntr' => [], - 'odo' => [], - 'org' => [], - 'ppg' => [], - 'pro' => [], - 'psc' => [], - 'psi' => [], - 'qsl' => [], - 'radio' => [], - 'rec' => [], - 'slg' => [], - 'srv' => [], - 'taxi' => [], - 'teo' => [], - 'tmp' => [], - 'trd' => [], - 'tur' => [], - 'tv' => [], - 'vet' => [], - 'vlog' => [], - 'wiki' => [], - 'zlg' => [], - ], - 'bs' => ['com' => [], - 'net' => [], - 'org' => [], - 'edu' => [], - 'gov' => [], - ], - 'bt' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'net' => [], - 'org' => [], - ], - 'bw' => ['co' => [], - 'org' => [], - ], - 'by' => ['gov' => [], - 'mil' => [], - 'com' => [], - 'of' => [], - ], - 'bz' => ['com' => [], - 'net' => [], - 'org' => [], - 'edu' => [], - 'gov' => [], - ], - 'ca' => ['ab' => [], - 'bc' => [], - 'mb' => [], - 'nb' => [], - 'nf' => [], - 'nl' => [], - 'ns' => [], - 'nt' => [], - 'nu' => [], - 'on' => [], - 'pe' => [], - 'qc' => [], - 'sk' => [], - 'yk' => [], - 'gc' => [], - 'co' => [], - ], - 'cat' => [], - 'cc' => ['ftpaccess' => [], - 'game-server' => [], - 'myphotos' => [], - 'scrapping' => [], - ], - 'cd' => ['gov' => [], - ], - 'cf' => [], - 'cg' => [], - 'ch' => [], - 'ci' => ['org' => [], - 'or' => [], - 'com' => [], - 'co' => [], - 'edu' => [], - 'ed' => [], - 'ac' => [], - 'net' => [], - 'go' => [], - 'asso' => [], - 'aéroport' => [], - 'int' => [], - 'presse' => [], - 'md' => [], - 'gouv' => [], - ], - 'ck' => ['*' => [], - 'www' => ['!' => '' - ], - ], - 'cl' => ['gov' => [], - 'gob' => [], - 'co' => [], - 'mil' => [], - ], - 'cm' => ['gov' => [], - ], - 'cn' => ['ac' => [], - 'com' => [], - 'edu' => [], - 'gov' => [], - 'net' => [], - 'org' => [], - 'mil' => [], - '公司' => [], - '网络' => [], - '網絡' => [], - 'ah' => [], - 'bj' => [], - 'cq' => [], - 'fj' => [], - 'gd' => [], - 'gs' => [], - 'gz' => [], - 'gx' => [], - 'ha' => [], - 'hb' => [], - 'he' => [], - 'hi' => [], - 'hl' => [], - 'hn' => [], - 'jl' => [], - 'js' => [], - 'jx' => [], - 'ln' => [], - 'nm' => [], - 'nx' => [], - 'qh' => [], - 'sc' => [], - 'sd' => [], - 'sh' => [], - 'sn' => [], - 'sx' => [], - 'tj' => [], - 'xj' => [], - 'xz' => [], - 'yn' => [], - 'zj' => [], - 'hk' => [], - 'mo' => [], - 'tw' => [], - ], - 'co' => ['arts' => [], - 'com' => [], - 'edu' => [], - 'firm' => [], - 'gov' => [], - 'info' => [], - 'int' => [], - 'mil' => [], - 'net' => [], - 'nom' => [], - 'org' => [], - 'rec' => [], - 'web' => [], - ], - 'com' => ['ar' => [], - 'br' => [], - 'cn' => [], - 'de' => [], - 'eu' => [], - 'gb' => [], - 'gr' => [], - 'hu' => [], - 'jpn' => [], - 'kr' => [], - 'no' => [], - 'qc' => [], - 'ru' => [], - 'sa' => [], - 'se' => [], - 'uk' => [], - 'us' => [], - 'uy' => [], - 'za' => [], - 'operaunite' => [], - 'appspot' => [], - 'dreamhosters' => [], - 'dyndns-at-home' => [], - 'dyndns-at-work' => [], - 'dyndns-blog' => [], - 'dyndns-free' => [], - 'dyndns-home' => [], - 'dyndns-ip' => [], - 'dyndns-mail' => [], - 'dyndns-office' => [], - 'dyndns-pics' => [], - 'dyndns-remote' => [], - 'dyndns-server' => [], - 'dyndns-web' => [], - 'dyndns-wiki' => [], - 'dyndns-work' => [], - 'blogdns' => [], - 'cechire' => [], - 'dnsalias' => [], - 'dnsdojo' => [], - 'doesntexist' => [], - 'dontexist' => [], - 'doomdns' => [], - 'dyn-o-saur' => [], - 'dynalias' => [], - 'est-a-la-maison' => [], - 'est-a-la-masion' => [], - 'est-le-patron' => [], - 'est-mon-blogueur' => [], - 'from-ak' => [], - 'from-al' => [], - 'from-ar' => [], - 'from-ca' => [], - 'from-ct' => [], - 'from-dc' => [], - 'from-de' => [], - 'from-fl' => [], - 'from-ga' => [], - 'from-hi' => [], - 'from-ia' => [], - 'from-id' => [], - 'from-il' => [], - 'from-in' => [], - 'from-ks' => [], - 'from-ky' => [], - 'from-ma' => [], - 'from-md' => [], - 'from-mi' => [], - 'from-mn' => [], - 'from-mo' => [], - 'from-ms' => [], - 'from-mt' => [], - 'from-nc' => [], - 'from-nd' => [], - 'from-ne' => [], - 'from-nh' => [], - 'from-nj' => [], - 'from-nm' => [], - 'from-nv' => [], - 'from-oh' => [], - 'from-ok' => [], - 'from-or' => [], - 'from-pa' => [], - 'from-pr' => [], - 'from-ri' => [], - 'from-sc' => [], - 'from-sd' => [], - 'from-tn' => [], - 'from-tx' => [], - 'from-ut' => [], - 'from-va' => [], - 'from-vt' => [], - 'from-wa' => [], - 'from-wi' => [], - 'from-wv' => [], - 'from-wy' => [], - 'getmyip' => [], - 'gotdns' => [], - 'hobby-site' => [], - 'homelinux' => [], - 'homeunix' => [], - 'iamallama' => [], - 'is-a-anarchist' => [], - 'is-a-blogger' => [], - 'is-a-bookkeeper' => [], - 'is-a-bulls-fan' => [], - 'is-a-caterer' => [], - 'is-a-chef' => [], - 'is-a-conservative' => [], - 'is-a-cpa' => [], - 'is-a-cubicle-slave' => [], - 'is-a-democrat' => [], - 'is-a-designer' => [], - 'is-a-doctor' => [], - 'is-a-financialadvisor' => [], - 'is-a-geek' => [], - 'is-a-green' => [], - 'is-a-guru' => [], - 'is-a-hard-worker' => [], - 'is-a-hunter' => [], - 'is-a-landscaper' => [], - 'is-a-lawyer' => [], - 'is-a-liberal' => [], - 'is-a-libertarian' => [], - 'is-a-llama' => [], - 'is-a-musician' => [], - 'is-a-nascarfan' => [], - 'is-a-nurse' => [], - 'is-a-painter' => [], - 'is-a-personaltrainer' => [], - 'is-a-photographer' => [], - 'is-a-player' => [], - 'is-a-republican' => [], - 'is-a-rockstar' => [], - 'is-a-socialist' => [], - 'is-a-student' => [], - 'is-a-teacher' => [], - 'is-a-techie' => [], - 'is-a-therapist' => [], - 'is-an-accountant' => [], - 'is-an-actor' => [], - 'is-an-actress' => [], - 'is-an-anarchist' => [], - 'is-an-artist' => [], - 'is-an-engineer' => [], - 'is-an-entertainer' => [], - 'is-certified' => [], - 'is-gone' => [], - 'is-into-anime' => [], - 'is-into-cars' => [], - 'is-into-cartoons' => [], - 'is-into-games' => [], - 'is-leet' => [], - 'is-not-certified' => [], - 'is-slick' => [], - 'is-uberleet' => [], - 'is-with-theband' => [], - 'isa-geek' => [], - 'isa-hockeynut' => [], - 'issmarterthanyou' => [], - 'likes-pie' => [], - 'likescandy' => [], - 'neat-url' => [], - 'saves-the-whales' => [], - 'selfip' => [], - 'sells-for-less' => [], - 'sells-for-u' => [], - 'servebbs' => [], - 'simple-url' => [], - 'space-to-rent' => [], - 'teaches-yoga' => [], - 'writesthisblog' => [], - ], - 'coop' => [], - 'cr' => ['ac' => [], - 'co' => [], - 'ed' => [], - 'fi' => [], - 'go' => [], - 'or' => [], - 'sa' => [], - ], - 'cu' => ['com' => [], - 'edu' => [], - 'org' => [], - 'net' => [], - 'gov' => [], - 'inf' => [], - ], - 'cv' => [], - 'cx' => ['gov' => [], - 'ath' => [], - ], - 'cy' => ['*' => [], - ], - 'cz' => [], - 'de' => ['com' => [], - 'fuettertdasnetz' => [], - 'isteingeek' => [], - 'istmein' => [], - 'lebtimnetz' => [], - 'leitungsen' => [], - 'traeumtgerade' => [], - ], - 'dj' => [], - 'dk' => [], - 'dm' => ['com' => [], - 'net' => [], - 'org' => [], - 'edu' => [], - 'gov' => [], - ], - 'do' => ['art' => [], - 'com' => [], - 'edu' => [], - 'gob' => [], - 'gov' => [], - 'mil' => [], - 'net' => [], - 'org' => [], - 'sld' => [], - 'web' => [], - ], - 'dz' => ['com' => [], - 'org' => [], - 'net' => [], - 'gov' => [], - 'edu' => [], - 'asso' => [], - 'pol' => [], - 'art' => [], - ], - 'ec' => ['com' => [], - 'info' => [], - 'net' => [], - 'fin' => [], - 'k12' => [], - 'med' => [], - 'pro' => [], - 'org' => [], - 'edu' => [], - 'gov' => [], - 'gob' => [], - 'mil' => [], - ], - 'edu' => [], - 'ee' => ['edu' => [], - 'gov' => [], - 'riik' => [], - 'lib' => [], - 'med' => [], - 'com' => [], - 'pri' => [], - 'aip' => [], - 'org' => [], - 'fie' => [], - ], - 'eg' => ['com' => [], - 'edu' => [], - 'eun' => [], - 'gov' => [], - 'mil' => [], - 'name' => [], - 'net' => [], - 'org' => [], - 'sci' => [], - ], - 'er' => ['*' => [], - ], - 'es' => ['com' => [], - 'nom' => [], - 'org' => [], - 'gob' => [], - 'edu' => [], - ], - 'et' => ['*' => [], - ], - 'eu' => [], - 'fi' => ['aland' => [], - 'iki' => [], - ], - 'fj' => ['*' => [], - ], - 'fk' => ['*' => [], - ], - 'fm' => [], - 'fo' => [], - 'fr' => ['com' => [], - 'asso' => [], - 'nom' => [], - 'prd' => [], - 'presse' => [], - 'tm' => [], - 'aeroport' => [], - 'assedic' => [], - 'avocat' => [], - 'avoues' => [], - 'cci' => [], - 'chambagri' => [], - 'chirurgiens-dentistes' => [], - 'experts-comptables' => [], - 'geometre-expert' => [], - 'gouv' => [], - 'greta' => [], - 'huissier-justice' => [], - 'medecin' => [], - 'notaires' => [], - 'pharmacien' => [], - 'port' => [], - 'veterinaire' => [], - ], - 'ga' => [], - 'gd' => [], - 'ge' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'org' => [], - 'mil' => [], - 'net' => [], - 'pvt' => [], - ], - 'gf' => [], - 'gg' => ['co' => [], - 'org' => [], - 'net' => [], - 'sch' => [], - 'gov' => [], - ], - 'gh' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'org' => [], - 'mil' => [], - ], - 'gi' => ['com' => [], - 'ltd' => [], - 'gov' => [], - 'mod' => [], - 'edu' => [], - 'org' => [], - ], - 'gl' => [], - 'gm' => [], - 'gn' => ['ac' => [], - 'com' => [], - 'edu' => [], - 'gov' => [], - 'org' => [], - 'net' => [], - ], - 'gov' => [], - 'gp' => ['com' => [], - 'net' => [], - 'mobi' => [], - 'edu' => [], - 'org' => [], - 'asso' => [], - ], - 'gq' => [], - 'gr' => ['com' => [], - 'edu' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - ], - 'gs' => [], - 'gt' => ['*' => [], - 'www' => ['!' => '' - ], - ], - 'gu' => ['*' => [], - ], - 'gw' => [], - 'gy' => ['co' => [], - 'com' => [], - 'net' => [], - ], - 'hk' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'idv' => [], - 'net' => [], - 'org' => [], - '公司' => [], - '教育' => [], - '敎育' => [], - '政府' => [], - '個人' => [], - '个人' => [], - '箇人' => [], - '網络' => [], - '网络' => [], - '组織' => [], - '網絡' => [], - '网絡' => [], - '组织' => [], - '組織' => [], - '組织' => [], - ], - 'hm' => [], - 'hn' => ['com' => [], - 'edu' => [], - 'org' => [], - 'net' => [], - 'mil' => [], - 'gob' => [], - ], - 'hr' => ['iz' => [], - 'from' => [], - 'name' => [], - 'com' => [], - ], - 'ht' => ['com' => [], - 'shop' => [], - 'firm' => [], - 'info' => [], - 'adult' => [], - 'net' => [], - 'pro' => [], - 'org' => [], - 'med' => [], - 'art' => [], - 'coop' => [], - 'pol' => [], - 'asso' => [], - 'edu' => [], - 'rel' => [], - 'gouv' => [], - 'perso' => [], - ], - 'hu' => ['co' => [], - 'info' => [], - 'org' => [], - 'priv' => [], - 'sport' => [], - 'tm' => [], - '2000' => [], - 'agrar' => [], - 'bolt' => [], - 'casino' => [], - 'city' => [], - 'erotica' => [], - 'erotika' => [], - 'film' => [], - 'forum' => [], - 'games' => [], - 'hotel' => [], - 'ingatlan' => [], - 'jogasz' => [], - 'konyvelo' => [], - 'lakas' => [], - 'media' => [], - 'news' => [], - 'reklam' => [], - 'sex' => [], - 'shop' => [], - 'suli' => [], - 'szex' => [], - 'tozsde' => [], - 'utazas' => [], - 'video' => [], - ], - 'id' => ['ac' => [], - 'co' => [], - 'go' => [], - 'mil' => [], - 'net' => [], - 'or' => [], - 'sch' => [], - 'web' => [], - ], - 'ie' => ['gov' => [], - ], - 'il' => ['*' => [], - ], - 'im' => ['co' => ['ltd' => [], - 'plc' => [], - ], - 'net' => [], - 'gov' => [], - 'org' => [], - 'nic' => [], - 'ac' => [], - ], - 'in' => ['co' => [], - 'firm' => [], - 'net' => [], - 'org' => [], - 'gen' => [], - 'ind' => [], - 'nic' => [], - 'ac' => [], - 'edu' => [], - 'res' => [], - 'gov' => [], - 'mil' => [], - ], - 'info' => ['dyndns' => [], - 'barrel-of-knowledge' => [], - 'barrell-of-knowledge' => [], - 'for-our' => [], - 'groks-the' => [], - 'groks-this' => [], - 'here-for-more' => [], - 'knowsitall' => [], - 'selfip' => [], - 'webhop' => [], - ], - 'int' => ['eu' => [], - ], - 'io' => ['com' => [], - ], - 'iq' => ['gov' => [], - 'edu' => [], - 'mil' => [], - 'com' => [], - 'org' => [], - 'net' => [], - ], - 'ir' => ['ac' => [], - 'co' => [], - 'gov' => [], - 'id' => [], - 'net' => [], - 'org' => [], - 'sch' => [], - 'ایران' => [], - 'ايران' => [], - ], - 'is' => ['net' => [], - 'com' => [], - 'edu' => [], - 'gov' => [], - 'org' => [], - 'int' => [], - ], - 'it' => ['gov' => [], - 'edu' => [], - 'agrigento' => [], - 'ag' => [], - 'alessandria' => [], - 'al' => [], - 'ancona' => [], - 'an' => [], - 'aosta' => [], - 'aoste' => [], - 'ao' => [], - 'arezzo' => [], - 'ar' => [], - 'ascoli-piceno' => [], - 'ascolipiceno' => [], - 'ap' => [], - 'asti' => [], - 'at' => [], - 'avellino' => [], - 'av' => [], - 'bari' => [], - 'ba' => [], - 'andria-barletta-trani' => [], - 'andriabarlettatrani' => [], - 'trani-barletta-andria' => [], - 'tranibarlettaandria' => [], - 'barletta-trani-andria' => [], - 'barlettatraniandria' => [], - 'andria-trani-barletta' => [], - 'andriatranibarletta' => [], - 'trani-andria-barletta' => [], - 'traniandriabarletta' => [], - 'bt' => [], - 'belluno' => [], - 'bl' => [], - 'benevento' => [], - 'bn' => [], - 'bergamo' => [], - 'bg' => [], - 'biella' => [], - 'bi' => [], - 'bologna' => [], - 'bo' => [], - 'bolzano' => [], - 'bozen' => [], - 'balsan' => [], - 'alto-adige' => [], - 'altoadige' => [], - 'suedtirol' => [], - 'bz' => [], - 'brescia' => [], - 'bs' => [], - 'brindisi' => [], - 'br' => [], - 'cagliari' => [], - 'ca' => [], - 'caltanissetta' => [], - 'cl' => [], - 'campobasso' => [], - 'cb' => [], - 'carboniaiglesias' => [], - 'carbonia-iglesias' => [], - 'iglesias-carbonia' => [], - 'iglesiascarbonia' => [], - 'ci' => [], - 'caserta' => [], - 'ce' => [], - 'catania' => [], - 'ct' => [], - 'catanzaro' => [], - 'cz' => [], - 'chieti' => [], - 'ch' => [], - 'como' => [], - 'co' => [], - 'cosenza' => [], - 'cs' => [], - 'cremona' => [], - 'cr' => [], - 'crotone' => [], - 'kr' => [], - 'cuneo' => [], - 'cn' => [], - 'dell-ogliastra' => [], - 'dellogliastra' => [], - 'ogliastra' => [], - 'og' => [], - 'enna' => [], - 'en' => [], - 'ferrara' => [], - 'fe' => [], - 'fermo' => [], - 'fm' => [], - 'firenze' => [], - 'florence' => [], - 'fi' => [], - 'foggia' => [], - 'fg' => [], - 'forli-cesena' => [], - 'forlicesena' => [], - 'cesena-forli' => [], - 'cesenaforli' => [], - 'fc' => [], - 'frosinone' => [], - 'fr' => [], - 'genova' => [], - 'genoa' => [], - 'ge' => [], - 'gorizia' => [], - 'go' => [], - 'grosseto' => [], - 'gr' => [], - 'imperia' => [], - 'im' => [], - 'isernia' => [], - 'is' => [], - 'laquila' => [], - 'aquila' => [], - 'aq' => [], - 'la-spezia' => [], - 'laspezia' => [], - 'sp' => [], - 'latina' => [], - 'lt' => [], - 'lecce' => [], - 'le' => [], - 'lecco' => [], - 'lc' => [], - 'livorno' => [], - 'li' => [], - 'lodi' => [], - 'lo' => [], - 'lucca' => [], - 'lu' => [], - 'macerata' => [], - 'mc' => [], - 'mantova' => [], - 'mn' => [], - 'massa-carrara' => [], - 'massacarrara' => [], - 'carrara-massa' => [], - 'carraramassa' => [], - 'ms' => [], - 'matera' => [], - 'mt' => [], - 'medio-campidano' => [], - 'mediocampidano' => [], - 'campidano-medio' => [], - 'campidanomedio' => [], - 'vs' => [], - 'messina' => [], - 'me' => [], - 'milano' => [], - 'milan' => [], - 'mi' => [], - 'modena' => [], - 'mo' => [], - 'monza' => [], - 'monza-brianza' => [], - 'monzabrianza' => [], - 'monzaebrianza' => [], - 'monzaedellabrianza' => [], - 'monza-e-della-brianza' => [], - 'mb' => [], - 'napoli' => [], - 'naples' => [], - 'na' => [], - 'novara' => [], - 'no' => [], - 'nuoro' => [], - 'nu' => [], - 'oristano' => [], - 'or' => [], - 'padova' => [], - 'padua' => [], - 'pd' => [], - 'palermo' => [], - 'pa' => [], - 'parma' => [], - 'pr' => [], - 'pavia' => [], - 'pv' => [], - 'perugia' => [], - 'pg' => [], - 'pescara' => [], - 'pe' => [], - 'pesaro-urbino' => [], - 'pesarourbino' => [], - 'urbino-pesaro' => [], - 'urbinopesaro' => [], - 'pu' => [], - 'piacenza' => [], - 'pc' => [], - 'pisa' => [], - 'pi' => [], - 'pistoia' => [], - 'pt' => [], - 'pordenone' => [], - 'pn' => [], - 'potenza' => [], - 'pz' => [], - 'prato' => [], - 'po' => [], - 'ragusa' => [], - 'rg' => [], - 'ravenna' => [], - 'ra' => [], - 'reggio-calabria' => [], - 'reggiocalabria' => [], - 'rc' => [], - 'reggio-emilia' => [], - 'reggioemilia' => [], - 're' => [], - 'rieti' => [], - 'ri' => [], - 'rimini' => [], - 'rn' => [], - 'roma' => [], - 'rome' => [], - 'rm' => [], - 'rovigo' => [], - 'ro' => [], - 'salerno' => [], - 'sa' => [], - 'sassari' => [], - 'ss' => [], - 'savona' => [], - 'sv' => [], - 'siena' => [], - 'si' => [], - 'siracusa' => [], - 'sr' => [], - 'sondrio' => [], - 'so' => [], - 'taranto' => [], - 'ta' => [], - 'tempio-olbia' => [], - 'tempioolbia' => [], - 'olbia-tempio' => [], - 'olbiatempio' => [], - 'ot' => [], - 'teramo' => [], - 'te' => [], - 'terni' => [], - 'tr' => [], - 'torino' => [], - 'turin' => [], - 'to' => [], - 'trapani' => [], - 'tp' => [], - 'trento' => [], - 'trentino' => [], - 'tn' => [], - 'treviso' => [], - 'tv' => [], - 'trieste' => [], - 'ts' => [], - 'udine' => [], - 'ud' => [], - 'varese' => [], - 'va' => [], - 'venezia' => [], - 'venice' => [], - 've' => [], - 'verbania' => [], - 'vb' => [], - 'vercelli' => [], - 'vc' => [], - 'verona' => [], - 'vr' => [], - 'vibo-valentia' => [], - 'vibovalentia' => [], - 'vv' => [], - 'vicenza' => [], - 'vi' => [], - 'viterbo' => [], - 'vt' => [], - ], - 'je' => ['co' => [], - 'org' => [], - 'net' => [], - 'sch' => [], - 'gov' => [], - ], - 'jm' => ['*' => [], - ], - 'jo' => ['com' => [], - 'org' => [], - 'net' => [], - 'edu' => [], - 'sch' => [], - 'gov' => [], - 'mil' => [], - 'name' => [], - ], - 'jobs' => [], - 'jp' => ['ac' => [], - 'ad' => [], - 'co' => [], - 'ed' => [], - 'go' => [], - 'gr' => [], - 'lg' => [], - 'ne' => [], - 'or' => [], - 'aichi' => ['aisai' => [], - 'ama' => [], - 'anjo' => [], - 'asuke' => [], - 'chiryu' => [], - 'chita' => [], - 'fuso' => [], - 'gamagori' => [], - 'handa' => [], - 'hazu' => [], - 'hekinan' => [], - 'higashiura' => [], - 'ichinomiya' => [], - 'inazawa' => [], - 'inuyama' => [], - 'isshiki' => [], - 'iwakura' => [], - 'kanie' => [], - 'kariya' => [], - 'kasugai' => [], - 'kira' => [], - 'kiyosu' => [], - 'komaki' => [], - 'konan' => [], - 'kota' => [], - 'mihama' => [], - 'miyoshi' => [], - 'nagakute' => [], - 'nishio' => [], - 'nisshin' => [], - 'obu' => [], - 'oguchi' => [], - 'oharu' => [], - 'okazaki' => [], - 'owariasahi' => [], - 'seto' => [], - 'shikatsu' => [], - 'shinshiro' => [], - 'shitara' => [], - 'tahara' => [], - 'takahama' => [], - 'tobishima' => [], - 'toei' => [], - 'togo' => [], - 'tokai' => [], - 'tokoname' => [], - 'toyoake' => [], - 'toyohashi' => [], - 'toyokawa' => [], - 'toyone' => [], - 'toyota' => [], - 'tsushima' => [], - 'yatomi' => [], - ], - 'akita' => ['akita' => [], - 'daisen' => [], - 'fujisato' => [], - 'gojome' => [], - 'hachirogata' => [], - 'happou' => [], - 'higashinaruse' => [], - 'honjo' => [], - 'honjyo' => [], - 'ikawa' => [], - 'kamikoani' => [], - 'kamioka' => [], - 'katagami' => [], - 'kazuno' => [], - 'kitaakita' => [], - 'kosaka' => [], - 'kyowa' => [], - 'misato' => [], - 'mitane' => [], - 'moriyoshi' => [], - 'nikaho' => [], - 'noshiro' => [], - 'odate' => [], - 'oga' => [], - 'ogata' => [], - 'semboku' => [], - 'yokote' => [], - 'yurihonjo' => [], - ], - 'aomori' => ['aomori' => [], - 'gonohe' => [], - 'hachinohe' => [], - 'hashikami' => [], - 'hiranai' => [], - 'hirosaki' => [], - 'itayanagi' => [], - 'kuroishi' => [], - 'misawa' => [], - 'mutsu' => [], - 'nakadomari' => [], - 'noheji' => [], - 'oirase' => [], - 'owani' => [], - 'rokunohe' => [], - 'sannohe' => [], - 'shichinohe' => [], - 'shingo' => [], - 'takko' => [], - 'towada' => [], - 'tsugaru' => [], - 'tsuruta' => [], - ], - 'chiba' => ['abiko' => [], - 'asahi' => [], - 'chonan' => [], - 'chosei' => [], - 'choshi' => [], - 'chuo' => [], - 'funabashi' => [], - 'futtsu' => [], - 'hanamigawa' => [], - 'ichihara' => [], - 'ichikawa' => [], - 'ichinomiya' => [], - 'inzai' => [], - 'isumi' => [], - 'kamagaya' => [], - 'kamogawa' => [], - 'kashiwa' => [], - 'katori' => [], - 'katsuura' => [], - 'kimitsu' => [], - 'kisarazu' => [], - 'kozaki' => [], - 'kujukuri' => [], - 'kyonan' => [], - 'matsudo' => [], - 'midori' => [], - 'mihama' => [], - 'minamiboso' => [], - 'mobara' => [], - 'mutsuzawa' => [], - 'nagara' => [], - 'nagareyama' => [], - 'narashino' => [], - 'narita' => [], - 'noda' => [], - 'oamishirasato' => [], - 'omigawa' => [], - 'onjuku' => [], - 'otaki' => [], - 'sakae' => [], - 'sakura' => [], - 'shimofusa' => [], - 'shirako' => [], - 'shiroi' => [], - 'shisui' => [], - 'sodegaura' => [], - 'sosa' => [], - 'tako' => [], - 'tateyama' => [], - 'togane' => [], - 'tohnosho' => [], - 'tomisato' => [], - 'urayasu' => [], - 'yachimata' => [], - 'yachiyo' => [], - 'yokaichiba' => [], - 'yokoshibahikari' => [], - 'yotsukaido' => [], - ], - 'ehime' => ['ainan' => [], - 'honai' => [], - 'ikata' => [], - 'imabari' => [], - 'iyo' => [], - 'kamijima' => [], - 'kihoku' => [], - 'kumakogen' => [], - 'masaki' => [], - 'matsuno' => [], - 'matsuyama' => [], - 'namikata' => [], - 'niihama' => [], - 'ozu' => [], - 'saijo' => [], - 'seiyo' => [], - 'shikokuchuo' => [], - 'tobe' => [], - 'toon' => [], - 'uchiko' => [], - 'uwajima' => [], - 'yawatahama' => [], - ], - 'fukui' => ['echizen' => [], - 'eiheiji' => [], - 'fukui' => [], - 'ikeda' => [], - 'katsuyama' => [], - 'mihama' => [], - 'minamiechizen' => [], - 'obama' => [], - 'ohi' => [], - 'ono' => [], - 'sabae' => [], - 'sakai' => [], - 'takahama' => [], - 'tsuruga' => [], - 'wakasa' => [], - ], - 'fukuoka' => ['ashiya' => [], - 'buzen' => [], - 'chikugo' => [], - 'chikuho' => [], - 'chikujo' => [], - 'chikushino' => [], - 'chikuzen' => [], - 'chuo' => [], - 'dazaifu' => [], - 'fukuchi' => [], - 'hakata' => [], - 'higashi' => [], - 'hirokawa' => [], - 'hisayama' => [], - 'iizuka' => [], - 'inatsuki' => [], - 'kaho' => [], - 'kasuga' => [], - 'kasuya' => [], - 'kawara' => [], - 'keisen' => [], - 'koga' => [], - 'kurate' => [], - 'kurogi' => [], - 'kurume' => [], - 'minami' => [], - 'miyako' => [], - 'miyama' => [], - 'miyawaka' => [], - 'mizumaki' => [], - 'munakata' => [], - 'nakagawa' => [], - 'nakama' => [], - 'nishi' => [], - 'nogata' => [], - 'ogori' => [], - 'okagaki' => [], - 'okawa' => [], - 'oki' => [], - 'omuta' => [], - 'onga' => [], - 'onojo' => [], - 'oto' => [], - 'saigawa' => [], - 'sasaguri' => [], - 'shingu' => [], - 'shinyoshitomi' => [], - 'shonai' => [], - 'soeda' => [], - 'sue' => [], - 'tachiarai' => [], - 'tagawa' => [], - 'takata' => [], - 'toho' => [], - 'toyotsu' => [], - 'tsuiki' => [], - 'ukiha' => [], - 'umi' => [], - 'usui' => [], - 'yamada' => [], - 'yame' => [], - 'yanagawa' => [], - 'yukuhashi' => [], - ], - 'fukushima' => ['aizubange' => [], - 'aizumisato' => [], - 'aizuwakamatsu' => [], - 'asakawa' => [], - 'bandai' => [], - 'date' => [], - 'fukushima' => [], - 'furudono' => [], - 'futaba' => [], - 'hanawa' => [], - 'higashi' => [], - 'hirata' => [], - 'hirono' => [], - 'iitate' => [], - 'inawashiro' => [], - 'ishikawa' => [], - 'iwaki' => [], - 'izumizaki' => [], - 'kagamiishi' => [], - 'kaneyama' => [], - 'kawamata' => [], - 'kitakata' => [], - 'kitashiobara' => [], - 'koori' => [], - 'koriyama' => [], - 'kunimi' => [], - 'miharu' => [], - 'mishima' => [], - 'namie' => [], - 'nango' => [], - 'nishiaizu' => [], - 'nishigo' => [], - 'okuma' => [], - 'omotego' => [], - 'ono' => [], - 'otama' => [], - 'samegawa' => [], - 'shimogo' => [], - 'shirakawa' => [], - 'showa' => [], - 'soma' => [], - 'sukagawa' => [], - 'taishin' => [], - 'tamakawa' => [], - 'tanagura' => [], - 'tenei' => [], - 'yabuki' => [], - 'yamato' => [], - 'yamatsuri' => [], - 'yanaizu' => [], - 'yugawa' => [], - ], - 'gifu' => ['anpachi' => [], - 'ena' => [], - 'gifu' => [], - 'ginan' => [], - 'godo' => [], - 'gujo' => [], - 'hashima' => [], - 'hichiso' => [], - 'hida' => [], - 'higashishirakawa' => [], - 'ibigawa' => [], - 'ikeda' => [], - 'kakamigahara' => [], - 'kani' => [], - 'kasahara' => [], - 'kasamatsu' => [], - 'kawaue' => [], - 'kitagata' => [], - 'mino' => [], - 'minokamo' => [], - 'mitake' => [], - 'mizunami' => [], - 'motosu' => [], - 'nakatsugawa' => [], - 'ogaki' => [], - 'sakahogi' => [], - 'seki' => [], - 'sekigahara' => [], - 'shirakawa' => [], - 'tajimi' => [], - 'takayama' => [], - 'tarui' => [], - 'toki' => [], - 'tomika' => [], - 'wanouchi' => [], - 'yamagata' => [], - 'yaotsu' => [], - 'yoro' => [], - ], - 'gunma' => ['annaka' => [], - 'chiyoda' => [], - 'fujioka' => [], - 'higashiagatsuma' => [], - 'isesaki' => [], - 'itakura' => [], - 'kanna' => [], - 'kanra' => [], - 'katashina' => [], - 'kawaba' => [], - 'kiryu' => [], - 'kusatsu' => [], - 'maebashi' => [], - 'meiwa' => [], - 'midori' => [], - 'minakami' => [], - 'naganohara' => [], - 'nakanojo' => [], - 'nanmoku' => [], - 'numata' => [], - 'oizumi' => [], - 'ora' => [], - 'ota' => [], - 'shibukawa' => [], - 'shimonita' => [], - 'shinto' => [], - 'showa' => [], - 'takasaki' => [], - 'takayama' => [], - 'tamamura' => [], - 'tatebayashi' => [], - 'tomioka' => [], - 'tsukiyono' => [], - 'tsumagoi' => [], - 'ueno' => [], - 'yoshioka' => [], - ], - 'hiroshima' => ['asaminami' => [], - 'daiwa' => [], - 'etajima' => [], - 'fuchu' => [], - 'fukuyama' => [], - 'hatsukaichi' => [], - 'higashihiroshima' => [], - 'hongo' => [], - 'jinsekikogen' => [], - 'kaita' => [], - 'kui' => [], - 'kumano' => [], - 'kure' => [], - 'mihara' => [], - 'miyoshi' => [], - 'naka' => [], - 'onomichi' => [], - 'osakikamijima' => [], - 'otake' => [], - 'saka' => [], - 'sera' => [], - 'seranishi' => [], - 'shinichi' => [], - 'shobara' => [], - 'takehara' => [], - ], - 'hokkaido' => ['abashiri' => [], - 'abira' => [], - 'aibetsu' => [], - 'akabira' => [], - 'akkeshi' => [], - 'asahikawa' => [], - 'ashibetsu' => [], - 'ashoro' => [], - 'assabu' => [], - 'atsuma' => [], - 'bibai' => [], - 'biei' => [], - 'bifuka' => [], - 'bihoro' => [], - 'biratori' => [], - 'chippubetsu' => [], - 'chitose' => [], - 'date' => [], - 'ebetsu' => [], - 'embetsu' => [], - 'eniwa' => [], - 'erimo' => [], - 'esan' => [], - 'esashi' => [], - 'fukagawa' => [], - 'fukushima' => [], - 'furano' => [], - 'furubira' => [], - 'haboro' => [], - 'hakodate' => [], - 'hamatonbetsu' => [], - 'hidaka' => [], - 'higashikagura' => [], - 'higashikawa' => [], - 'hiroo' => [], - 'hokuryu' => [], - 'hokuto' => [], - 'honbetsu' => [], - 'horokanai' => [], - 'horonobe' => [], - 'ikeda' => [], - 'imakane' => [], - 'ishikari' => [], - 'iwamizawa' => [], - 'iwanai' => [], - 'kamifurano' => [], - 'kamikawa' => [], - 'kamishihoro' => [], - 'kamisunagawa' => [], - 'kamoenai' => [], - 'kayabe' => [], - 'kembuchi' => [], - 'kikonai' => [], - 'kimobetsu' => [], - 'kitahiroshima' => [], - 'kitami' => [], - 'kiyosato' => [], - 'koshimizu' => [], - 'kunneppu' => [], - 'kuriyama' => [], - 'kuromatsunai' => [], - 'kushiro' => [], - 'kutchan' => [], - 'kyowa' => [], - 'mashike' => [], - 'matsumae' => [], - 'mikasa' => [], - 'minamifurano' => [], - 'mombetsu' => [], - 'moseushi' => [], - 'mukawa' => [], - 'muroran' => [], - 'naie' => [], - 'nakagawa' => [], - 'nakasatsunai' => [], - 'nakatombetsu' => [], - 'nanae' => [], - 'nanporo' => [], - 'nayoro' => [], - 'nemuro' => [], - 'niikappu' => [], - 'niki' => [], - 'nishiokoppe' => [], - 'noboribetsu' => [], - 'numata' => [], - 'obihiro' => [], - 'obira' => [], - 'oketo' => [], - 'okoppe' => [], - 'otaru' => [], - 'otobe' => [], - 'otofuke' => [], - 'otoineppu' => [], - 'oumu' => [], - 'ozora' => [], - 'pippu' => [], - 'rankoshi' => [], - 'rebun' => [], - 'rikubetsu' => [], - 'rishiri' => [], - 'rishirifuji' => [], - 'saroma' => [], - 'sarufutsu' => [], - 'shakotan' => [], - 'shari' => [], - 'shibecha' => [], - 'shibetsu' => [], - 'shikabe' => [], - 'shikaoi' => [], - 'shimamaki' => [], - 'shimizu' => [], - 'shimokawa' => [], - 'shinshinotsu' => [], - 'shintoku' => [], - 'shiranuka' => [], - 'shiraoi' => [], - 'shiriuchi' => [], - 'sobetsu' => [], - 'sunagawa' => [], - 'taiki' => [], - 'takasu' => [], - 'takikawa' => [], - 'takinoue' => [], - 'teshikaga' => [], - 'tobetsu' => [], - 'tohma' => [], - 'tomakomai' => [], - 'tomari' => [], - 'toya' => [], - 'toyako' => [], - 'toyotomi' => [], - 'toyoura' => [], - 'tsubetsu' => [], - 'tsukigata' => [], - 'urakawa' => [], - 'urausu' => [], - 'uryu' => [], - 'utashinai' => [], - 'wakkanai' => [], - 'wassamu' => [], - 'yakumo' => [], - 'yoichi' => [], - ], - 'hyogo' => ['aioi' => [], - 'akashi' => [], - 'ako' => [], - 'amagasaki' => [], - 'aogaki' => [], - 'asago' => [], - 'ashiya' => [], - 'awaji' => [], - 'fukusaki' => [], - 'goshiki' => [], - 'harima' => [], - 'himeji' => [], - 'ichikawa' => [], - 'inagawa' => [], - 'itami' => [], - 'kakogawa' => [], - 'kamigori' => [], - 'kamikawa' => [], - 'kasai' => [], - 'kasuga' => [], - 'kawanishi' => [], - 'miki' => [], - 'minamiawaji' => [], - 'nishinomiya' => [], - 'nishiwaki' => [], - 'ono' => [], - 'sanda' => [], - 'sannan' => [], - 'sasayama' => [], - 'sayo' => [], - 'shingu' => [], - 'shinonsen' => [], - 'shiso' => [], - 'sumoto' => [], - 'taishi' => [], - 'taka' => [], - 'takarazuka' => [], - 'takasago' => [], - 'takino' => [], - 'tamba' => [], - 'tatsuno' => [], - 'toyooka' => [], - 'yabu' => [], - 'yashiro' => [], - 'yoka' => [], - 'yokawa' => [], - ], - 'ibaraki' => ['ami' => [], - 'asahi' => [], - 'bando' => [], - 'chikusei' => [], - 'daigo' => [], - 'fujishiro' => [], - 'hitachi' => [], - 'hitachinaka' => [], - 'hitachiomiya' => [], - 'hitachiota' => [], - 'ibaraki' => [], - 'ina' => [], - 'inashiki' => [], - 'itako' => [], - 'iwama' => [], - 'joso' => [], - 'kamisu' => [], - 'kasama' => [], - 'kashima' => [], - 'kasumigaura' => [], - 'koga' => [], - 'miho' => [], - 'mito' => [], - 'moriya' => [], - 'naka' => [], - 'namegata' => [], - 'oarai' => [], - 'ogawa' => [], - 'omitama' => [], - 'ryugasaki' => [], - 'sakai' => [], - 'sakuragawa' => [], - 'shimodate' => [], - 'shimotsuma' => [], - 'shirosato' => [], - 'sowa' => [], - 'suifu' => [], - 'takahagi' => [], - 'tamatsukuri' => [], - 'tokai' => [], - 'tomobe' => [], - 'tone' => [], - 'toride' => [], - 'tsuchiura' => [], - 'tsukuba' => [], - 'uchihara' => [], - 'ushiku' => [], - 'yachiyo' => [], - 'yamagata' => [], - 'yawara' => [], - 'yuki' => [], - ], - 'ishikawa' => ['anamizu' => [], - 'hakui' => [], - 'hakusan' => [], - 'kaga' => [], - 'kahoku' => [], - 'kanazawa' => [], - 'kawakita' => [], - 'komatsu' => [], - 'nakanoto' => [], - 'nanao' => [], - 'nomi' => [], - 'nonoichi' => [], - 'noto' => [], - 'shika' => [], - 'suzu' => [], - 'tsubata' => [], - 'tsurugi' => [], - 'uchinada' => [], - 'wajima' => [], - ], - 'iwate' => ['fudai' => [], - 'fujisawa' => [], - 'hanamaki' => [], - 'hiraizumi' => [], - 'hirono' => [], - 'ichinohe' => [], - 'ichinoseki' => [], - 'iwaizumi' => [], - 'iwate' => [], - 'joboji' => [], - 'kamaishi' => [], - 'kanegasaki' => [], - 'karumai' => [], - 'kawai' => [], - 'kitakami' => [], - 'kuji' => [], - 'kunohe' => [], - 'kuzumaki' => [], - 'miyako' => [], - 'mizusawa' => [], - 'morioka' => [], - 'ninohe' => [], - 'noda' => [], - 'ofunato' => [], - 'oshu' => [], - 'otsuchi' => [], - 'rikuzentakata' => [], - 'shiwa' => [], - 'shizukuishi' => [], - 'sumita' => [], - 'takizawa' => [], - 'tanohata' => [], - 'tono' => [], - 'yahaba' => [], - 'yamada' => [], - ], - 'kagawa' => ['ayagawa' => [], - 'higashikagawa' => [], - 'kanonji' => [], - 'kotohira' => [], - 'manno' => [], - 'marugame' => [], - 'mitoyo' => [], - 'naoshima' => [], - 'sanuki' => [], - 'tadotsu' => [], - 'takamatsu' => [], - 'tonosho' => [], - 'uchinomi' => [], - 'utazu' => [], - 'zentsuji' => [], - ], - 'kagoshima' => ['akune' => [], - 'amami' => [], - 'hioki' => [], - 'isa' => [], - 'isen' => [], - 'izumi' => [], - 'kagoshima' => [], - 'kanoya' => [], - 'kawanabe' => [], - 'kinko' => [], - 'kouyama' => [], - 'makurazaki' => [], - 'matsumoto' => [], - 'minamitane' => [], - 'nakatane' => [], - 'nishinoomote' => [], - 'satsumasendai' => [], - 'soo' => [], - 'tarumizu' => [], - 'yusui' => [], - ], - 'kanagawa' => ['aikawa' => [], - 'atsugi' => [], - 'ayase' => [], - 'chigasaki' => [], - 'ebina' => [], - 'fujisawa' => [], - 'hadano' => [], - 'hakone' => [], - 'hiratsuka' => [], - 'isehara' => [], - 'kaisei' => [], - 'kamakura' => [], - 'kiyokawa' => [], - 'matsuda' => [], - 'minamiashigara' => [], - 'miura' => [], - 'nakai' => [], - 'ninomiya' => [], - 'odawara' => [], - 'oi' => [], - 'oiso' => [], - 'sagamihara' => [], - 'samukawa' => [], - 'tsukui' => [], - 'yamakita' => [], - 'yamato' => [], - 'yokosuka' => [], - 'yugawara' => [], - 'zama' => [], - 'zushi' => [], - ], - 'kochi' => ['aki' => [], - 'geisei' => [], - 'hidaka' => [], - 'higashitsuno' => [], - 'ino' => [], - 'kagami' => [], - 'kami' => [], - 'kitagawa' => [], - 'kochi' => [], - 'mihara' => [], - 'motoyama' => [], - 'muroto' => [], - 'nahari' => [], - 'nakamura' => [], - 'nankoku' => [], - 'nishitosa' => [], - 'niyodogawa' => [], - 'ochi' => [], - 'okawa' => [], - 'otoyo' => [], - 'otsuki' => [], - 'sakawa' => [], - 'sukumo' => [], - 'susaki' => [], - 'tosa' => [], - 'tosashimizu' => [], - 'toyo' => [], - 'tsuno' => [], - 'umaji' => [], - 'yasuda' => [], - 'yusuhara' => [], - ], - 'kumamoto' => ['amakusa' => [], - 'arao' => [], - 'aso' => [], - 'choyo' => [], - 'gyokuto' => [], - 'hitoyoshi' => [], - 'kamiamakusa' => [], - 'kashima' => [], - 'kikuchi' => [], - 'kosa' => [], - 'kumamoto' => [], - 'mashiki' => [], - 'mifune' => [], - 'minamata' => [], - 'minamioguni' => [], - 'nagasu' => [], - 'nishihara' => [], - 'oguni' => [], - 'ozu' => [], - 'sumoto' => [], - 'takamori' => [], - 'uki' => [], - 'uto' => [], - 'yamaga' => [], - 'yamato' => [], - 'yatsushiro' => [], - ], - 'kyoto' => ['ayabe' => [], - 'fukuchiyama' => [], - 'higashiyama' => [], - 'ide' => [], - 'ine' => [], - 'joyo' => [], - 'kameoka' => [], - 'kamo' => [], - 'kita' => [], - 'kizu' => [], - 'kumiyama' => [], - 'kyotamba' => [], - 'kyotanabe' => [], - 'kyotango' => [], - 'maizuru' => [], - 'minami' => [], - 'minamiyamashiro' => [], - 'miyazu' => [], - 'muko' => [], - 'nagaokakyo' => [], - 'nakagyo' => [], - 'nantan' => [], - 'oyamazaki' => [], - 'sakyo' => [], - 'seika' => [], - 'tanabe' => [], - 'uji' => [], - 'ujitawara' => [], - 'wazuka' => [], - 'yamashina' => [], - 'yawata' => [], - ], - 'mie' => ['asahi' => [], - 'inabe' => [], - 'ise' => [], - 'kameyama' => [], - 'kawagoe' => [], - 'kiho' => [], - 'kisosaki' => [], - 'kiwa' => [], - 'komono' => [], - 'kumano' => [], - 'kuwana' => [], - 'matsusaka' => [], - 'meiwa' => [], - 'mihama' => [], - 'minamiise' => [], - 'misugi' => [], - 'miyama' => [], - 'nabari' => [], - 'shima' => [], - 'suzuka' => [], - 'tado' => [], - 'taiki' => [], - 'taki' => [], - 'tamaki' => [], - 'toba' => [], - 'tsu' => [], - 'udono' => [], - 'ureshino' => [], - 'watarai' => [], - 'yokkaichi' => [], - ], - 'miyagi' => ['furukawa' => [], - 'higashimatsushima' => [], - 'ishinomaki' => [], - 'iwanuma' => [], - 'kakuda' => [], - 'kami' => [], - 'kawasaki' => [], - 'kesennuma' => [], - 'marumori' => [], - 'matsushima' => [], - 'minamisanriku' => [], - 'misato' => [], - 'murata' => [], - 'natori' => [], - 'ogawara' => [], - 'ohira' => [], - 'onagawa' => [], - 'osaki' => [], - 'rifu' => [], - 'semine' => [], - 'shibata' => [], - 'shichikashuku' => [], - 'shikama' => [], - 'shiogama' => [], - 'shiroishi' => [], - 'tagajo' => [], - 'taiwa' => [], - 'tome' => [], - 'tomiya' => [], - 'wakuya' => [], - 'watari' => [], - 'yamamoto' => [], - 'zao' => [], - ], - 'miyazaki' => ['aya' => [], - 'ebino' => [], - 'gokase' => [], - 'hyuga' => [], - 'kadogawa' => [], - 'kawaminami' => [], - 'kijo' => [], - 'kitagawa' => [], - 'kitakata' => [], - 'kitaura' => [], - 'kobayashi' => [], - 'kunitomi' => [], - 'kushima' => [], - 'mimata' => [], - 'miyakonojo' => [], - 'miyazaki' => [], - 'morotsuka' => [], - 'nichinan' => [], - 'nishimera' => [], - 'nobeoka' => [], - 'saito' => [], - 'shiiba' => [], - 'shintomi' => [], - 'takaharu' => [], - 'takanabe' => [], - 'takazaki' => [], - 'tsuno' => [], - ], - 'nagano' => ['achi' => [], - 'agematsu' => [], - 'anan' => [], - 'aoki' => [], - 'asahi' => [], - 'azumino' => [], - 'chikuhoku' => [], - 'chikuma' => [], - 'chino' => [], - 'fujimi' => [], - 'hakuba' => [], - 'hara' => [], - 'hiraya' => [], - 'iida' => [], - 'iijima' => [], - 'iiyama' => [], - 'iizuna' => [], - 'ikeda' => [], - 'ikusaka' => [], - 'ina' => [], - 'karuizawa' => [], - 'kawakami' => [], - 'kiso' => [], - 'kisofukushima' => [], - 'kitaaiki' => [], - 'komagane' => [], - 'komoro' => [], - 'matsukawa' => [], - 'matsumoto' => [], - 'miasa' => [], - 'minamiaiki' => [], - 'minamimaki' => [], - 'minamiminowa' => [], - 'minowa' => [], - 'miyada' => [], - 'miyota' => [], - 'mochizuki' => [], - 'nagano' => [], - 'nagawa' => [], - 'nagiso' => [], - 'nakagawa' => [], - 'nakano' => [], - 'nozawaonsen' => [], - 'obuse' => [], - 'ogawa' => [], - 'okaya' => [], - 'omachi' => [], - 'omi' => [], - 'ookuwa' => [], - 'ooshika' => [], - 'otaki' => [], - 'otari' => [], - 'sakae' => [], - 'sakaki' => [], - 'saku' => [], - 'sakuho' => [], - 'shimosuwa' => [], - 'shinanomachi' => [], - 'shiojiri' => [], - 'suwa' => [], - 'suzaka' => [], - 'takagi' => [], - 'takamori' => [], - 'takayama' => [], - 'tateshina' => [], - 'tatsuno' => [], - 'togakushi' => [], - 'togura' => [], - 'tomi' => [], - 'ueda' => [], - 'wada' => [], - 'yamagata' => [], - 'yamanouchi' => [], - 'yasaka' => [], - 'yasuoka' => [], - ], - 'nagasaki' => ['chijiwa' => [], - 'futsu' => [], - 'goto' => [], - 'hasami' => [], - 'hirado' => [], - 'iki' => [], - 'isahaya' => [], - 'kawatana' => [], - 'kuchinotsu' => [], - 'matsuura' => [], - 'nagasaki' => [], - 'obama' => [], - 'omura' => [], - 'oseto' => [], - 'saikai' => [], - 'sasebo' => [], - 'seihi' => [], - 'shimabara' => [], - 'shinkamigoto' => [], - 'togitsu' => [], - 'tsushima' => [], - 'unzen' => [], - ], - 'nara' => ['ando' => [], - 'gose' => [], - 'heguri' => [], - 'higashiyoshino' => [], - 'ikaruga' => [], - 'ikoma' => [], - 'kamikitayama' => [], - 'kanmaki' => [], - 'kashiba' => [], - 'kashihara' => [], - 'katsuragi' => [], - 'kawai' => [], - 'kawakami' => [], - 'kawanishi' => [], - 'koryo' => [], - 'kurotaki' => [], - 'mitsue' => [], - 'miyake' => [], - 'nara' => [], - 'nosegawa' => [], - 'oji' => [], - 'ouda' => [], - 'oyodo' => [], - 'sakurai' => [], - 'sango' => [], - 'shimoichi' => [], - 'shimokitayama' => [], - 'shinjo' => [], - 'soni' => [], - 'takatori' => [], - 'tawaramoto' => [], - 'tenkawa' => [], - 'tenri' => [], - 'uda' => [], - 'yamatokoriyama' => [], - 'yamatotakada' => [], - 'yamazoe' => [], - 'yoshino' => [], - ], - 'niigata' => ['aga' => [], - 'agano' => [], - 'gosen' => [], - 'itoigawa' => [], - 'izumozaki' => [], - 'joetsu' => [], - 'kamo' => [], - 'kariwa' => [], - 'kashiwazaki' => [], - 'minamiuonuma' => [], - 'mitsuke' => [], - 'muika' => [], - 'murakami' => [], - 'myoko' => [], - 'nagaoka' => [], - 'niigata' => [], - 'ojiya' => [], - 'omi' => [], - 'sado' => [], - 'sanjo' => [], - 'seiro' => [], - 'seirou' => [], - 'sekikawa' => [], - 'shibata' => [], - 'tagami' => [], - 'tainai' => [], - 'tochio' => [], - 'tokamachi' => [], - 'tsubame' => [], - 'tsunan' => [], - 'uonuma' => [], - 'yahiko' => [], - 'yoita' => [], - 'yuzawa' => [], - ], - 'oita' => ['beppu' => [], - 'bungoono' => [], - 'bungotakada' => [], - 'hasama' => [], - 'hiji' => [], - 'himeshima' => [], - 'hita' => [], - 'kamitsue' => [], - 'kokonoe' => [], - 'kuju' => [], - 'kunisaki' => [], - 'kusu' => [], - 'oita' => [], - 'saiki' => [], - 'taketa' => [], - 'tsukumi' => [], - 'usa' => [], - 'usuki' => [], - 'yufu' => [], - ], - 'okayama' => ['akaiwa' => [], - 'asakuchi' => [], - 'bizen' => [], - 'hayashima' => [], - 'ibara' => [], - 'kagamino' => [], - 'kasaoka' => [], - 'kibichuo' => [], - 'kumenan' => [], - 'kurashiki' => [], - 'maniwa' => [], - 'misaki' => [], - 'nagi' => [], - 'niimi' => [], - 'nishiawakura' => [], - 'okayama' => [], - 'satosho' => [], - 'setouchi' => [], - 'shinjo' => [], - 'shoo' => [], - 'soja' => [], - 'takahashi' => [], - 'tamano' => [], - 'tsuyama' => [], - 'wake' => [], - 'yakage' => [], - ], - 'okinawa' => ['aguni' => [], - 'ginowan' => [], - 'ginoza' => [], - 'gushikami' => [], - 'haebaru' => [], - 'higashi' => [], - 'hirara' => [], - 'iheya' => [], - 'ishigaki' => [], - 'ishikawa' => [], - 'itoman' => [], - 'izena' => [], - 'kadena' => [], - 'kin' => [], - 'kitadaito' => [], - 'kitanakagusuku' => [], - 'kumejima' => [], - 'kunigami' => [], - 'minamidaito' => [], - 'motobu' => [], - 'nago' => [], - 'naha' => [], - 'nakagusuku' => [], - 'nakijin' => [], - 'nanjo' => [], - 'nishihara' => [], - 'ogimi' => [], - 'okinawa' => [], - 'onna' => [], - 'shimoji' => [], - 'taketomi' => [], - 'tarama' => [], - 'tokashiki' => [], - 'tomigusuku' => [], - 'tonaki' => [], - 'urasoe' => [], - 'uruma' => [], - 'yaese' => [], - 'yomitan' => [], - 'yonabaru' => [], - 'yonaguni' => [], - 'zamami' => [], - ], - 'osaka' => ['abeno' => [], - 'chihayaakasaka' => [], - 'chuo' => [], - 'daito' => [], - 'fujiidera' => [], - 'habikino' => [], - 'hannan' => [], - 'higashiosaka' => [], - 'higashisumiyoshi' => [], - 'higashiyodogawa' => [], - 'hirakata' => [], - 'ibaraki' => [], - 'ikeda' => [], - 'izumi' => [], - 'izumiotsu' => [], - 'izumisano' => [], - 'kadoma' => [], - 'kaizuka' => [], - 'kanan' => [], - 'kashiwara' => [], - 'katano' => [], - 'kawachinagano' => [], - 'kishiwada' => [], - 'kita' => [], - 'kumatori' => [], - 'matsubara' => [], - 'minato' => [], - 'minoh' => [], - 'misaki' => [], - 'moriguchi' => [], - 'neyagawa' => [], - 'nishi' => [], - 'nose' => [], - 'osakasayama' => [], - 'sakai' => [], - 'sayama' => [], - 'sennan' => [], - 'settsu' => [], - 'shijonawate' => [], - 'shimamoto' => [], - 'suita' => [], - 'tadaoka' => [], - 'taishi' => [], - 'tajiri' => [], - 'takaishi' => [], - 'takatsuki' => [], - 'tondabayashi' => [], - 'toyonaka' => [], - 'toyono' => [], - 'yao' => [], - ], - 'saga' => ['ariake' => [], - 'arita' => [], - 'fukudomi' => [], - 'genkai' => [], - 'hamatama' => [], - 'hizen' => [], - 'imari' => [], - 'kamimine' => [], - 'kanzaki' => [], - 'karatsu' => [], - 'kashima' => [], - 'kitagata' => [], - 'kitahata' => [], - 'kiyama' => [], - 'kouhoku' => [], - 'kyuragi' => [], - 'nishiarita' => [], - 'ogi' => [], - 'omachi' => [], - 'ouchi' => [], - 'saga' => [], - 'shiroishi' => [], - 'taku' => [], - 'tara' => [], - 'tosu' => [], - 'yoshinogari' => [], - ], - 'saitama' => ['arakawa' => [], - 'asaka' => [], - 'chichibu' => [], - 'fujimi' => [], - 'fujimino' => [], - 'fukaya' => [], - 'hanno' => [], - 'hanyu' => [], - 'hasuda' => [], - 'hatogaya' => [], - 'hatoyama' => [], - 'hidaka' => [], - 'higashichichibu' => [], - 'higashimatsuyama' => [], - 'honjo' => [], - 'ina' => [], - 'iruma' => [], - 'iwatsuki' => [], - 'kamiizumi' => [], - 'kamikawa' => [], - 'kamisato' => [], - 'kasukabe' => [], - 'kawagoe' => [], - 'kawaguchi' => [], - 'kawajima' => [], - 'kazo' => [], - 'kitamoto' => [], - 'koshigaya' => [], - 'kounosu' => [], - 'kuki' => [], - 'kumagaya' => [], - 'matsubushi' => [], - 'minano' => [], - 'misato' => [], - 'miyashiro' => [], - 'miyoshi' => [], - 'moroyama' => [], - 'nagatoro' => [], - 'namegawa' => [], - 'niiza' => [], - 'ogano' => [], - 'ogawa' => [], - 'ogose' => [], - 'okegawa' => [], - 'omiya' => [], - 'otaki' => [], - 'ranzan' => [], - 'ryokami' => [], - 'saitama' => [], - 'sakado' => [], - 'satte' => [], - 'sayama' => [], - 'shiki' => [], - 'shiraoka' => [], - 'soka' => [], - 'sugito' => [], - 'toda' => [], - 'tokigawa' => [], - 'tokorozawa' => [], - 'tsurugashima' => [], - 'urawa' => [], - 'warabi' => [], - 'yashio' => [], - 'yokoze' => [], - 'yono' => [], - 'yorii' => [], - 'yoshida' => [], - 'yoshikawa' => [], - 'yoshimi' => [], - ], - 'shiga' => ['aisho' => [], - 'gamo' => [], - 'higashiomi' => [], - 'hikone' => [], - 'koka' => [], - 'konan' => [], - 'kosei' => [], - 'koto' => [], - 'kusatsu' => [], - 'maibara' => [], - 'moriyama' => [], - 'nagahama' => [], - 'nishiazai' => [], - 'notogawa' => [], - 'omihachiman' => [], - 'otsu' => [], - 'ritto' => [], - 'ryuoh' => [], - 'takashima' => [], - 'takatsuki' => [], - 'torahime' => [], - 'toyosato' => [], - 'yasu' => [], - ], - 'shimane' => ['akagi' => [], - 'ama' => [], - 'gotsu' => [], - 'hamada' => [], - 'higashiizumo' => [], - 'hikawa' => [], - 'hikimi' => [], - 'izumo' => [], - 'kakinoki' => [], - 'masuda' => [], - 'matsue' => [], - 'misato' => [], - 'nishinoshima' => [], - 'ohda' => [], - 'okinoshima' => [], - 'okuizumo' => [], - 'shimane' => [], - 'tamayu' => [], - 'tsuwano' => [], - 'unnan' => [], - 'yakumo' => [], - 'yasugi' => [], - 'yatsuka' => [], - ], - 'shizuoka' => ['arai' => [], - 'atami' => [], - 'fuji' => [], - 'fujieda' => [], - 'fujikawa' => [], - 'fujinomiya' => [], - 'fukuroi' => [], - 'gotemba' => [], - 'haibara' => [], - 'hamamatsu' => [], - 'higashiizu' => [], - 'ito' => [], - 'iwata' => [], - 'izu' => [], - 'izunokuni' => [], - 'kakegawa' => [], - 'kannami' => [], - 'kawanehon' => [], - 'kawazu' => [], - 'kikugawa' => [], - 'kosai' => [], - 'makinohara' => [], - 'matsuzaki' => [], - 'minamiizu' => [], - 'mishima' => [], - 'morimachi' => [], - 'nishiizu' => [], - 'numazu' => [], - 'omaezaki' => [], - 'shimada' => [], - 'shimizu' => [], - 'shimoda' => [], - 'shizuoka' => [], - 'susono' => [], - 'yaizu' => [], - 'yoshida' => [], - ], - 'tochigi' => ['ashikaga' => [], - 'bato' => [], - 'haga' => [], - 'ichikai' => [], - 'iwafune' => [], - 'kaminokawa' => [], - 'kanuma' => [], - 'karasuyama' => [], - 'kuroiso' => [], - 'mashiko' => [], - 'mibu' => [], - 'moka' => [], - 'motegi' => [], - 'nasu' => [], - 'nasushiobara' => [], - 'nikko' => [], - 'nishikata' => [], - 'nogi' => [], - 'ohira' => [], - 'ohtawara' => [], - 'oyama' => [], - 'sakura' => [], - 'sano' => [], - 'shimotsuke' => [], - 'shioya' => [], - 'takanezawa' => [], - 'tochigi' => [], - 'tsuga' => [], - 'ujiie' => [], - 'utsunomiya' => [], - 'yaita' => [], - ], - 'tokushima' => ['aizumi' => [], - 'anan' => [], - 'ichiba' => [], - 'itano' => [], - 'kainan' => [], - 'komatsushima' => [], - 'matsushige' => [], - 'mima' => [], - 'minami' => [], - 'miyoshi' => [], - 'mugi' => [], - 'nakagawa' => [], - 'naruto' => [], - 'sanagochi' => [], - 'shishikui' => [], - 'tokushima' => [], - 'wajiki' => [], - ], - 'tokyo' => ['adachi' => [], - 'akiruno' => [], - 'akishima' => [], - 'aogashima' => [], - 'arakawa' => [], - 'bunkyo' => [], - 'chiyoda' => [], - 'chofu' => [], - 'chuo' => [], - 'edogawa' => [], - 'fuchu' => [], - 'fussa' => [], - 'hachijo' => [], - 'hachioji' => [], - 'hamura' => [], - 'higashikurume' => [], - 'higashimurayama' => [], - 'higashiyamato' => [], - 'hino' => [], - 'hinode' => [], - 'hinohara' => [], - 'inagi' => [], - 'itabashi' => [], - 'katsushika' => [], - 'kita' => [], - 'kiyose' => [], - 'kodaira' => [], - 'koganei' => [], - 'kokubunji' => [], - 'komae' => [], - 'koto' => [], - 'kouzushima' => [], - 'kunitachi' => [], - 'machida' => [], - 'meguro' => [], - 'minato' => [], - 'mitaka' => [], - 'mizuho' => [], - 'musashimurayama' => [], - 'musashino' => [], - 'nakano' => [], - 'nerima' => [], - 'ogasawara' => [], - 'okutama' => [], - 'ome' => [], - 'oshima' => [], - 'ota' => [], - 'setagaya' => [], - 'shibuya' => [], - 'shinagawa' => [], - 'shinjuku' => [], - 'suginami' => [], - 'sumida' => [], - 'tachikawa' => [], - 'taito' => [], - 'tama' => [], - 'toshima' => [], - ], - 'tottori' => ['chizu' => [], - 'hino' => [], - 'kawahara' => [], - 'koge' => [], - 'kotoura' => [], - 'misasa' => [], - 'nanbu' => [], - 'nichinan' => [], - 'sakaiminato' => [], - 'tottori' => [], - 'wakasa' => [], - 'yazu' => [], - 'yonago' => [], - ], - 'toyama' => ['asahi' => [], - 'fuchu' => [], - 'fukumitsu' => [], - 'funahashi' => [], - 'himi' => [], - 'imizu' => [], - 'inami' => [], - 'johana' => [], - 'kamiichi' => [], - 'kurobe' => [], - 'nakaniikawa' => [], - 'namerikawa' => [], - 'nanto' => [], - 'nyuzen' => [], - 'oyabe' => [], - 'taira' => [], - 'takaoka' => [], - 'tateyama' => [], - 'toga' => [], - 'tonami' => [], - 'toyama' => [], - 'unazuki' => [], - 'uozu' => [], - 'yamada' => [], - ], - 'wakayama' => ['arida' => [], - 'aridagawa' => [], - 'gobo' => [], - 'hashimoto' => [], - 'hidaka' => [], - 'hirogawa' => [], - 'inami' => [], - 'iwade' => [], - 'kainan' => [], - 'kamitonda' => [], - 'katsuragi' => [], - 'kimino' => [], - 'kinokawa' => [], - 'kitayama' => [], - 'koya' => [], - 'koza' => [], - 'kozagawa' => [], - 'kudoyama' => [], - 'kushimoto' => [], - 'mihama' => [], - 'misato' => [], - 'nachikatsuura' => [], - 'shingu' => [], - 'shirahama' => [], - 'taiji' => [], - 'tanabe' => [], - 'wakayama' => [], - 'yuasa' => [], - 'yura' => [], - ], - 'yamagata' => ['asahi' => [], - 'funagata' => [], - 'higashine' => [], - 'iide' => [], - 'kahoku' => [], - 'kaminoyama' => [], - 'kaneyama' => [], - 'kawanishi' => [], - 'mamurogawa' => [], - 'mikawa' => [], - 'murayama' => [], - 'nagai' => [], - 'nakayama' => [], - 'nanyo' => [], - 'nishikawa' => [], - 'obanazawa' => [], - 'oe' => [], - 'oguni' => [], - 'ohkura' => [], - 'oishida' => [], - 'sagae' => [], - 'sakata' => [], - 'sakegawa' => [], - 'shinjo' => [], - 'shirataka' => [], - 'shonai' => [], - 'takahata' => [], - 'tendo' => [], - 'tozawa' => [], - 'tsuruoka' => [], - 'yamagata' => [], - 'yamanobe' => [], - 'yonezawa' => [], - 'yuza' => [], - ], - 'yamaguchi' => ['abu' => [], - 'hagi' => [], - 'hikari' => [], - 'hofu' => [], - 'iwakuni' => [], - 'kudamatsu' => [], - 'mitou' => [], - 'nagato' => [], - 'oshima' => [], - 'shimonoseki' => [], - 'shunan' => [], - 'tabuse' => [], - 'tokuyama' => [], - 'toyota' => [], - 'ube' => [], - 'yuu' => [], - ], - 'yamanashi' => ['chuo' => [], - 'doshi' => [], - 'fuefuki' => [], - 'fujikawa' => [], - 'fujikawaguchiko' => [], - 'fujiyoshida' => [], - 'hayakawa' => [], - 'hokuto' => [], - 'ichikawamisato' => [], - 'kai' => [], - 'kofu' => [], - 'koshu' => [], - 'kosuge' => [], - 'minami-alps' => [], - 'minobu' => [], - 'nakamichi' => [], - 'nanbu' => [], - 'narusawa' => [], - 'nirasaki' => [], - 'nishikatsura' => [], - 'oshino' => [], - 'otsuki' => [], - 'showa' => [], - 'tabayama' => [], - 'tsuru' => [], - 'uenohara' => [], - 'yamanakako' => [], - 'yamanashi' => [], - ], - 'kawasaki' => ['*' => [], - 'city' => ['!' => '' - ], - ], - 'kitakyushu' => ['*' => [], - 'city' => ['!' => '' - ], - ], - 'kobe' => ['*' => [], - 'city' => ['!' => '' - ], - ], - 'nagoya' => ['*' => [], - 'city' => ['!' => '' - ], - ], - 'sapporo' => ['*' => [], - 'city' => ['!' => '' - ], - ], - 'sendai' => ['*' => [], - 'city' => ['!' => '' - ], - ], - 'yokohama' => ['*' => [], - 'city' => ['!' => '' - ], - ], - ], - 'ke' => ['*' => [], - ], - 'kg' => ['org' => [], - 'net' => [], - 'com' => [], - 'edu' => [], - 'gov' => [], - 'mil' => [], - ], - 'kh' => ['*' => [], - ], - 'ki' => ['edu' => [], - 'biz' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - 'info' => [], - 'com' => [], - ], - 'km' => ['org' => [], - 'nom' => [], - 'gov' => [], - 'prd' => [], - 'tm' => [], - 'edu' => [], - 'mil' => [], - 'ass' => [], - 'com' => [], - 'coop' => [], - 'asso' => [], - 'presse' => [], - 'medecin' => [], - 'notaires' => [], - 'pharmaciens' => [], - 'veterinaire' => [], - 'gouv' => [], - ], - 'kn' => ['net' => [], - 'org' => [], - 'edu' => [], - 'gov' => [], - ], - 'kp' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'org' => [], - 'rep' => [], - 'tra' => [], - ], - 'kr' => ['ac' => [], - 'co' => [], - 'es' => [], - 'go' => [], - 'hs' => [], - 'kg' => [], - 'mil' => [], - 'ms' => [], - 'ne' => [], - 'or' => [], - 'pe' => [], - 're' => [], - 'sc' => [], - 'busan' => [], - 'chungbuk' => [], - 'chungnam' => [], - 'daegu' => [], - 'daejeon' => [], - 'gangwon' => [], - 'gwangju' => [], - 'gyeongbuk' => [], - 'gyeonggi' => [], - 'gyeongnam' => [], - 'incheon' => [], - 'jeju' => [], - 'jeonbuk' => [], - 'jeonnam' => [], - 'seoul' => [], - 'ulsan' => [], - ], - 'kw' => ['*' => [], - ], - 'ky' => ['edu' => [], - 'gov' => [], - 'com' => [], - 'org' => [], - 'net' => [], - ], - 'kz' => ['org' => [], - 'edu' => [], - 'net' => [], - 'gov' => [], - 'mil' => [], - 'com' => [], - ], - 'la' => ['int' => [], - 'net' => [], - 'info' => [], - 'edu' => [], - 'gov' => [], - 'per' => [], - 'com' => [], - 'org' => [], - 'c' => [], - ], - 'lb' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'net' => [], - 'org' => [], - ], - 'lc' => ['com' => [], - 'net' => [], - 'co' => [], - 'org' => [], - 'edu' => [], - 'gov' => [], - ], - 'li' => [], - 'lk' => ['gov' => [], - 'sch' => [], - 'net' => [], - 'int' => [], - 'com' => [], - 'org' => [], - 'edu' => [], - 'ngo' => [], - 'soc' => [], - 'web' => [], - 'ltd' => [], - 'assn' => [], - 'grp' => [], - 'hotel' => [], - ], - 'lr' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'org' => [], - 'net' => [], - ], - 'ls' => ['co' => [], - 'org' => [], - ], - 'lt' => ['gov' => [], - ], - 'lu' => [], - 'lv' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'org' => [], - 'mil' => [], - 'id' => [], - 'net' => [], - 'asn' => [], - 'conf' => [], - ], - 'ly' => ['com' => [], - 'net' => [], - 'gov' => [], - 'plc' => [], - 'edu' => [], - 'sch' => [], - 'med' => [], - 'org' => [], - 'id' => [], - ], - 'ma' => ['co' => [], - 'net' => [], - 'gov' => [], - 'org' => [], - 'ac' => [], - 'press' => [], - ], - 'mc' => ['tm' => [], - 'asso' => [], - ], - 'md' => [], - 'me' => ['co' => [], - 'net' => [], - 'org' => [], - 'edu' => [], - 'ac' => [], - 'gov' => [], - 'its' => [], - 'priv' => [], - ], - 'mg' => ['org' => [], - 'nom' => [], - 'gov' => [], - 'prd' => [], - 'tm' => [], - 'edu' => [], - 'mil' => [], - 'com' => [], - ], - 'mh' => [], - 'mil' => [], - 'mk' => ['com' => [], - 'org' => [], - 'net' => [], - 'edu' => [], - 'gov' => [], - 'inf' => [], - 'name' => [], - ], - 'ml' => ['com' => [], - 'edu' => [], - 'gouv' => [], - 'gov' => [], - 'net' => [], - 'org' => [], - 'presse' => [], - ], - 'mm' => ['*' => [], - ], - 'mn' => ['gov' => [], - 'edu' => [], - 'org' => [], - ], - 'mo' => ['com' => [], - 'net' => [], - 'org' => [], - 'edu' => [], - 'gov' => [], - ], - 'mobi' => [], - 'mp' => [], - 'mq' => [], - 'mr' => ['gov' => [], - ], - 'ms' => [], - 'mt' => ['*' => [], - ], - 'mu' => ['com' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - 'ac' => [], - 'co' => [], - 'or' => [], - ], - 'museum' => ['academy' => [], - 'agriculture' => [], - 'air' => [], - 'airguard' => [], - 'alabama' => [], - 'alaska' => [], - 'amber' => [], - 'ambulance' => [], - 'american' => [], - 'americana' => [], - 'americanantiques' => [], - 'americanart' => [], - 'amsterdam' => [], - 'and' => [], - 'annefrank' => [], - 'anthro' => [], - 'anthropology' => [], - 'antiques' => [], - 'aquarium' => [], - 'arboretum' => [], - 'archaeological' => [], - 'archaeology' => [], - 'architecture' => [], - 'art' => [], - 'artanddesign' => [], - 'artcenter' => [], - 'artdeco' => [], - 'arteducation' => [], - 'artgallery' => [], - 'arts' => [], - 'artsandcrafts' => [], - 'asmatart' => [], - 'assassination' => [], - 'assisi' => [], - 'association' => [], - 'astronomy' => [], - 'atlanta' => [], - 'austin' => [], - 'australia' => [], - 'automotive' => [], - 'aviation' => [], - 'axis' => [], - 'badajoz' => [], - 'baghdad' => [], - 'bahn' => [], - 'bale' => [], - 'baltimore' => [], - 'barcelona' => [], - 'baseball' => [], - 'basel' => [], - 'baths' => [], - 'bauern' => [], - 'beauxarts' => [], - 'beeldengeluid' => [], - 'bellevue' => [], - 'bergbau' => [], - 'berkeley' => [], - 'berlin' => [], - 'bern' => [], - 'bible' => [], - 'bilbao' => [], - 'bill' => [], - 'birdart' => [], - 'birthplace' => [], - 'bonn' => [], - 'boston' => [], - 'botanical' => [], - 'botanicalgarden' => [], - 'botanicgarden' => [], - 'botany' => [], - 'brandywinevalley' => [], - 'brasil' => [], - 'bristol' => [], - 'british' => [], - 'britishcolumbia' => [], - 'broadcast' => [], - 'brunel' => [], - 'brussel' => [], - 'brussels' => [], - 'bruxelles' => [], - 'building' => [], - 'burghof' => [], - 'bus' => [], - 'bushey' => [], - 'cadaques' => [], - 'california' => [], - 'cambridge' => [], - 'can' => [], - 'canada' => [], - 'capebreton' => [], - 'carrier' => [], - 'cartoonart' => [], - 'casadelamoneda' => [], - 'castle' => [], - 'castres' => [], - 'celtic' => [], - 'center' => [], - 'chattanooga' => [], - 'cheltenham' => [], - 'chesapeakebay' => [], - 'chicago' => [], - 'children' => [], - 'childrens' => [], - 'childrensgarden' => [], - 'chiropractic' => [], - 'chocolate' => [], - 'christiansburg' => [], - 'cincinnati' => [], - 'cinema' => [], - 'circus' => [], - 'civilisation' => [], - 'civilization' => [], - 'civilwar' => [], - 'clinton' => [], - 'clock' => [], - 'coal' => [], - 'coastaldefence' => [], - 'cody' => [], - 'coldwar' => [], - 'collection' => [], - 'colonialwilliamsburg' => [], - 'coloradoplateau' => [], - 'columbia' => [], - 'columbus' => [], - 'communication' => [], - 'communications' => [], - 'community' => [], - 'computer' => [], - 'computerhistory' => [], - 'comunicações' => [], - 'contemporary' => [], - 'contemporaryart' => [], - 'convent' => [], - 'copenhagen' => [], - 'corporation' => [], - 'correios-e-telecomunicações' => [], - 'corvette' => [], - 'costume' => [], - 'countryestate' => [], - 'county' => [], - 'crafts' => [], - 'cranbrook' => [], - 'creation' => [], - 'cultural' => [], - 'culturalcenter' => [], - 'culture' => [], - 'cyber' => [], - 'cymru' => [], - 'dali' => [], - 'dallas' => [], - 'database' => [], - 'ddr' => [], - 'decorativearts' => [], - 'delaware' => [], - 'delmenhorst' => [], - 'denmark' => [], - 'depot' => [], - 'design' => [], - 'detroit' => [], - 'dinosaur' => [], - 'discovery' => [], - 'dolls' => [], - 'donostia' => [], - 'durham' => [], - 'eastafrica' => [], - 'eastcoast' => [], - 'education' => [], - 'educational' => [], - 'egyptian' => [], - 'eisenbahn' => [], - 'elburg' => [], - 'elvendrell' => [], - 'embroidery' => [], - 'encyclopedic' => [], - 'england' => [], - 'entomology' => [], - 'environment' => [], - 'environmentalconservation' => [], - 'epilepsy' => [], - 'essex' => [], - 'estate' => [], - 'ethnology' => [], - 'exeter' => [], - 'exhibition' => [], - 'family' => [], - 'farm' => [], - 'farmequipment' => [], - 'farmers' => [], - 'farmstead' => [], - 'field' => [], - 'figueres' => [], - 'filatelia' => [], - 'film' => [], - 'fineart' => [], - 'finearts' => [], - 'finland' => [], - 'flanders' => [], - 'florida' => [], - 'force' => [], - 'fortmissoula' => [], - 'fortworth' => [], - 'foundation' => [], - 'francaise' => [], - 'frankfurt' => [], - 'franziskaner' => [], - 'freemasonry' => [], - 'freiburg' => [], - 'fribourg' => [], - 'frog' => [], - 'fundacio' => [], - 'furniture' => [], - 'gallery' => [], - 'garden' => [], - 'gateway' => [], - 'geelvinck' => [], - 'gemological' => [], - 'geology' => [], - 'georgia' => [], - 'giessen' => [], - 'glas' => [], - 'glass' => [], - 'gorge' => [], - 'grandrapids' => [], - 'graz' => [], - 'guernsey' => [], - 'halloffame' => [], - 'hamburg' => [], - 'handson' => [], - 'harvestcelebration' => [], - 'hawaii' => [], - 'health' => [], - 'heimatunduhren' => [], - 'hellas' => [], - 'helsinki' => [], - 'hembygdsforbund' => [], - 'heritage' => [], - 'histoire' => [], - 'historical' => [], - 'historicalsociety' => [], - 'historichouses' => [], - 'historisch' => [], - 'historisches' => [], - 'history' => [], - 'historyofscience' => [], - 'horology' => [], - 'house' => [], - 'humanities' => [], - 'illustration' => [], - 'imageandsound' => [], - 'indian' => [], - 'indiana' => [], - 'indianapolis' => [], - 'indianmarket' => [], - 'intelligence' => [], - 'interactive' => [], - 'iraq' => [], - 'iron' => [], - 'isleofman' => [], - 'jamison' => [], - 'jefferson' => [], - 'jerusalem' => [], - 'jewelry' => [], - 'jewish' => [], - 'jewishart' => [], - 'jfk' => [], - 'journalism' => [], - 'judaica' => [], - 'judygarland' => [], - 'juedisches' => [], - 'juif' => [], - 'karate' => [], - 'karikatur' => [], - 'kids' => [], - 'koebenhavn' => [], - 'koeln' => [], - 'kunst' => [], - 'kunstsammlung' => [], - 'kunstunddesign' => [], - 'labor' => [], - 'labour' => [], - 'lajolla' => [], - 'lancashire' => [], - 'landes' => [], - 'lans' => [], - 'läns' => [], - 'larsson' => [], - 'lewismiller' => [], - 'lincoln' => [], - 'linz' => [], - 'living' => [], - 'livinghistory' => [], - 'localhistory' => [], - 'london' => [], - 'losangeles' => [], - 'louvre' => [], - 'loyalist' => [], - 'lucerne' => [], - 'luxembourg' => [], - 'luzern' => [], - 'mad' => [], - 'madrid' => [], - 'mallorca' => [], - 'manchester' => [], - 'mansion' => [], - 'mansions' => [], - 'manx' => [], - 'marburg' => [], - 'maritime' => [], - 'maritimo' => [], - 'maryland' => [], - 'marylhurst' => [], - 'media' => [], - 'medical' => [], - 'medizinhistorisches' => [], - 'meeres' => [], - 'memorial' => [], - 'mesaverde' => [], - 'michigan' => [], - 'midatlantic' => [], - 'military' => [], - 'mill' => [], - 'miners' => [], - 'mining' => [], - 'minnesota' => [], - 'missile' => [], - 'missoula' => [], - 'modern' => [], - 'moma' => [], - 'money' => [], - 'monmouth' => [], - 'monticello' => [], - 'montreal' => [], - 'moscow' => [], - 'motorcycle' => [], - 'muenchen' => [], - 'muenster' => [], - 'mulhouse' => [], - 'muncie' => [], - 'museet' => [], - 'museumcenter' => [], - 'museumvereniging' => [], - 'music' => [], - 'national' => [], - 'nationalfirearms' => [], - 'nationalheritage' => [], - 'nativeamerican' => [], - 'naturalhistory' => [], - 'naturalhistorymuseum' => [], - 'naturalsciences' => [], - 'nature' => [], - 'naturhistorisches' => [], - 'natuurwetenschappen' => [], - 'naumburg' => [], - 'naval' => [], - 'nebraska' => [], - 'neues' => [], - 'newhampshire' => [], - 'newjersey' => [], - 'newmexico' => [], - 'newport' => [], - 'newspaper' => [], - 'newyork' => [], - 'niepce' => [], - 'norfolk' => [], - 'north' => [], - 'nrw' => [], - 'nuernberg' => [], - 'nuremberg' => [], - 'nyc' => [], - 'nyny' => [], - 'oceanographic' => [], - 'oceanographique' => [], - 'omaha' => [], - 'online' => [], - 'ontario' => [], - 'openair' => [], - 'oregon' => [], - 'oregontrail' => [], - 'otago' => [], - 'oxford' => [], - 'pacific' => [], - 'paderborn' => [], - 'palace' => [], - 'paleo' => [], - 'palmsprings' => [], - 'panama' => [], - 'paris' => [], - 'pasadena' => [], - 'pharmacy' => [], - 'philadelphia' => [], - 'philadelphiaarea' => [], - 'philately' => [], - 'phoenix' => [], - 'photography' => [], - 'pilots' => [], - 'pittsburgh' => [], - 'planetarium' => [], - 'plantation' => [], - 'plants' => [], - 'plaza' => [], - 'portal' => [], - 'portland' => [], - 'portlligat' => [], - 'posts-and-telecommunications' => [], - 'preservation' => [], - 'presidio' => [], - 'press' => [], - 'project' => [], - 'public' => [], - 'pubol' => [], - 'quebec' => [], - 'railroad' => [], - 'railway' => [], - 'research' => [], - 'resistance' => [], - 'riodejaneiro' => [], - 'rochester' => [], - 'rockart' => [], - 'roma' => [], - 'russia' => [], - 'saintlouis' => [], - 'salem' => [], - 'salvadordali' => [], - 'salzburg' => [], - 'sandiego' => [], - 'sanfrancisco' => [], - 'santabarbara' => [], - 'santacruz' => [], - 'santafe' => [], - 'saskatchewan' => [], - 'satx' => [], - 'savannahga' => [], - 'schlesisches' => [], - 'schoenbrunn' => [], - 'schokoladen' => [], - 'school' => [], - 'schweiz' => [], - 'science' => [], - 'scienceandhistory' => [], - 'scienceandindustry' => [], - 'sciencecenter' => [], - 'sciencecenters' => [], - 'science-fiction' => [], - 'sciencehistory' => [], - 'sciences' => [], - 'sciencesnaturelles' => [], - 'scotland' => [], - 'seaport' => [], - 'settlement' => [], - 'settlers' => [], - 'shell' => [], - 'sherbrooke' => [], - 'sibenik' => [], - 'silk' => [], - 'ski' => [], - 'skole' => [], - 'society' => [], - 'sologne' => [], - 'soundandvision' => [], - 'southcarolina' => [], - 'southwest' => [], - 'space' => [], - 'spy' => [], - 'square' => [], - 'stadt' => [], - 'stalbans' => [], - 'starnberg' => [], - 'state' => [], - 'stateofdelaware' => [], - 'station' => [], - 'steam' => [], - 'steiermark' => [], - 'stjohn' => [], - 'stockholm' => [], - 'stpetersburg' => [], - 'stuttgart' => [], - 'suisse' => [], - 'surgeonshall' => [], - 'surrey' => [], - 'svizzera' => [], - 'sweden' => [], - 'sydney' => [], - 'tank' => [], - 'tcm' => [], - 'technology' => [], - 'telekommunikation' => [], - 'television' => [], - 'texas' => [], - 'textile' => [], - 'theater' => [], - 'time' => [], - 'timekeeping' => [], - 'topology' => [], - 'torino' => [], - 'touch' => [], - 'town' => [], - 'transport' => [], - 'tree' => [], - 'trolley' => [], - 'trust' => [], - 'trustee' => [], - 'uhren' => [], - 'ulm' => [], - 'undersea' => [], - 'university' => [], - 'usa' => [], - 'usantiques' => [], - 'usarts' => [], - 'uscountryestate' => [], - 'usculture' => [], - 'usdecorativearts' => [], - 'usgarden' => [], - 'ushistory' => [], - 'ushuaia' => [], - 'uslivinghistory' => [], - 'utah' => [], - 'uvic' => [], - 'valley' => [], - 'vantaa' => [], - 'versailles' => [], - 'viking' => [], - 'village' => [], - 'virginia' => [], - 'virtual' => [], - 'virtuel' => [], - 'vlaanderen' => [], - 'volkenkunde' => [], - 'wales' => [], - 'wallonie' => [], - 'war' => [], - 'washingtondc' => [], - 'watchandclock' => [], - 'watch-and-clock' => [], - 'western' => [], - 'westfalen' => [], - 'whaling' => [], - 'wildlife' => [], - 'williamsburg' => [], - 'windmill' => [], - 'workshop' => [], - 'york' => [], - 'yorkshire' => [], - 'yosemite' => [], - 'youth' => [], - 'zoological' => [], - 'zoology' => [], - 'ירושלים' => [], - 'иком' => [], - ], - 'mv' => ['aero' => [], - 'biz' => [], - 'com' => [], - 'coop' => [], - 'edu' => [], - 'gov' => [], - 'info' => [], - 'int' => [], - 'mil' => [], - 'museum' => [], - 'name' => [], - 'net' => [], - 'org' => [], - 'pro' => [], - ], - 'mw' => ['ac' => [], - 'biz' => [], - 'co' => [], - 'com' => [], - 'coop' => [], - 'edu' => [], - 'gov' => [], - 'int' => [], - 'museum' => [], - 'net' => [], - 'org' => [], - ], - 'mx' => ['com' => [], - 'org' => [], - 'gob' => [], - 'edu' => [], - 'net' => [], - ], - 'my' => ['com' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - 'edu' => [], - 'mil' => [], - 'name' => [], - ], - 'mz' => ['*' => [], - ], - 'na' => ['info' => [], - 'pro' => [], - 'name' => [], - 'school' => [], - 'or' => [], - 'dr' => [], - 'us' => [], - 'mx' => [], - 'ca' => [], - 'in' => [], - 'cc' => [], - 'tv' => [], - 'ws' => [], - 'mobi' => [], - 'co' => [], - 'com' => [], - 'org' => [], - ], - 'name' => ['her' => ['forgot' => [], - ], - 'his' => ['forgot' => [], - ], - ], - 'nc' => ['asso' => [], - ], - 'ne' => [], - 'net' => ['gb' => [], - 'hu' => [], - 'jp' => [], - 'se' => [], - 'uk' => [], - 'za' => [], - 'at-band-camp' => [], - 'blogdns' => [], - 'broke-it' => [], - 'buyshouses' => [], - 'dnsalias' => [], - 'dnsdojo' => [], - 'does-it' => [], - 'dontexist' => [], - 'dynalias' => [], - 'dynathome' => [], - 'endofinternet' => [], - 'from-az' => [], - 'from-co' => [], - 'from-la' => [], - 'from-ny' => [], - 'gets-it' => [], - 'ham-radio-op' => [], - 'homeftp' => [], - 'homeip' => [], - 'homelinux' => [], - 'homeunix' => [], - 'in-the-band' => [], - 'is-a-chef' => [], - 'is-a-geek' => [], - 'isa-geek' => [], - 'kicks-ass' => [], - 'office-on-the' => [], - 'podzone' => [], - 'scrapper-site' => [], - 'selfip' => [], - 'sells-it' => [], - 'servebbs' => [], - 'serveftp' => [], - 'thruhere' => [], - 'webhop' => [], - ], - 'nf' => ['com' => [], - 'net' => [], - 'per' => [], - 'rec' => [], - 'web' => [], - 'arts' => [], - 'firm' => [], - 'info' => [], - 'other' => [], - 'store' => [], - ], - 'ng' => ['ac' => [], - 'com' => [], - 'edu' => [], - 'gov' => [], - 'net' => [], - 'org' => [], - ], - 'ni' => ['*' => [], - ], - 'nl' => ['bv' => [], - 'co' => [], - ], - 'no' => ['fhs' => [], - 'vgs' => [], - 'fylkesbibl' => [], - 'folkebibl' => [], - 'museum' => [], - 'idrett' => [], - 'priv' => [], - 'mil' => [], - 'stat' => [], - 'dep' => [], - 'kommune' => [], - 'herad' => [], - 'aa' => ['gs' => [], - ], - 'ah' => ['gs' => [], - ], - 'bu' => ['gs' => [], - ], - 'fm' => ['gs' => [], - ], - 'hl' => ['gs' => [], - ], - 'hm' => ['gs' => [], - ], - 'jan-mayen' => ['gs' => [], - ], - 'mr' => ['gs' => [], - ], - 'nl' => ['gs' => [], - ], - 'nt' => ['gs' => [], - ], - 'of' => ['gs' => [], - ], - 'ol' => ['gs' => [], - ], - 'oslo' => ['gs' => [], - ], - 'rl' => ['gs' => [], - ], - 'sf' => ['gs' => [], - ], - 'st' => ['gs' => [], - ], - 'svalbard' => ['gs' => [], - ], - 'tm' => ['gs' => [], - ], - 'tr' => ['gs' => [], - ], - 'va' => ['gs' => [], - ], - 'vf' => ['gs' => [], - ], - 'akrehamn' => [], - 'åkrehamn' => [], - 'algard' => [], - 'ålgård' => [], - 'arna' => [], - 'brumunddal' => [], - 'bryne' => [], - 'bronnoysund' => [], - 'brønnøysund' => [], - 'drobak' => [], - 'drøbak' => [], - 'egersund' => [], - 'fetsund' => [], - 'floro' => [], - 'florø' => [], - 'fredrikstad' => [], - 'hokksund' => [], - 'honefoss' => [], - 'hønefoss' => [], - 'jessheim' => [], - 'jorpeland' => [], - 'jørpeland' => [], - 'kirkenes' => [], - 'kopervik' => [], - 'krokstadelva' => [], - 'langevag' => [], - 'langevåg' => [], - 'leirvik' => [], - 'mjondalen' => [], - 'mjøndalen' => [], - 'mo-i-rana' => [], - 'mosjoen' => [], - 'mosjøen' => [], - 'nesoddtangen' => [], - 'orkanger' => [], - 'osoyro' => [], - 'osøyro' => [], - 'raholt' => [], - 'råholt' => [], - 'sandnessjoen' => [], - 'sandnessjøen' => [], - 'skedsmokorset' => [], - 'slattum' => [], - 'spjelkavik' => [], - 'stathelle' => [], - 'stavern' => [], - 'stjordalshalsen' => [], - 'stjørdalshalsen' => [], - 'tananger' => [], - 'tranby' => [], - 'vossevangen' => [], - 'afjord' => [], - 'åfjord' => [], - 'agdenes' => [], - 'al' => [], - 'ål' => [], - 'alesund' => [], - 'ålesund' => [], - 'alstahaug' => [], - 'alta' => [], - 'áltá' => [], - 'alaheadju' => [], - 'álaheadju' => [], - 'alvdal' => [], - 'amli' => [], - 'åmli' => [], - 'amot' => [], - 'åmot' => [], - 'andebu' => [], - 'andoy' => [], - 'andøy' => [], - 'andasuolo' => [], - 'ardal' => [], - 'årdal' => [], - 'aremark' => [], - 'arendal' => [], - 'ås' => [], - 'aseral' => [], - 'åseral' => [], - 'asker' => [], - 'askim' => [], - 'askvoll' => [], - 'askoy' => [], - 'askøy' => [], - 'asnes' => [], - 'åsnes' => [], - 'audnedaln' => [], - 'aukra' => [], - 'aure' => [], - 'aurland' => [], - 'aurskog-holand' => [], - 'aurskog-høland' => [], - 'austevoll' => [], - 'austrheim' => [], - 'averoy' => [], - 'averøy' => [], - 'balestrand' => [], - 'ballangen' => [], - 'balat' => [], - 'bálát' => [], - 'balsfjord' => [], - 'bahccavuotna' => [], - 'báhccavuotna' => [], - 'bamble' => [], - 'bardu' => [], - 'beardu' => [], - 'beiarn' => [], - 'bajddar' => [], - 'bájddar' => [], - 'baidar' => [], - 'báidár' => [], - 'berg' => [], - 'bergen' => [], - 'berlevag' => [], - 'berlevåg' => [], - 'bearalvahki' => [], - 'bearalváhki' => [], - 'bindal' => [], - 'birkenes' => [], - 'bjarkoy' => [], - 'bjarkøy' => [], - 'bjerkreim' => [], - 'bjugn' => [], - 'bodo' => [], - 'bodø' => [], - 'badaddja' => [], - 'bådåddjå' => [], - 'budejju' => [], - 'bokn' => [], - 'bremanger' => [], - 'bronnoy' => [], - 'brønnøy' => [], - 'bygland' => [], - 'bykle' => [], - 'barum' => [], - 'bærum' => [], - 'telemark' => ['bo' => [], - 'bø' => [], - ], - 'nordland' => ['bo' => [], - 'bø' => [], - 'heroy' => [], - 'herøy' => [], - ], - 'bievat' => [], - 'bievát' => [], - 'bomlo' => [], - 'bømlo' => [], - 'batsfjord' => [], - 'båtsfjord' => [], - 'bahcavuotna' => [], - 'báhcavuotna' => [], - 'dovre' => [], - 'drammen' => [], - 'drangedal' => [], - 'dyroy' => [], - 'dyrøy' => [], - 'donna' => [], - 'dønna' => [], - 'eid' => [], - 'eidfjord' => [], - 'eidsberg' => [], - 'eidskog' => [], - 'eidsvoll' => [], - 'eigersund' => [], - 'elverum' => [], - 'enebakk' => [], - 'engerdal' => [], - 'etne' => [], - 'etnedal' => [], - 'evenes' => [], - 'evenassi' => [], - 'evenášši' => [], - 'evje-og-hornnes' => [], - 'farsund' => [], - 'fauske' => [], - 'fuossko' => [], - 'fuoisku' => [], - 'fedje' => [], - 'fet' => [], - 'finnoy' => [], - 'finnøy' => [], - 'fitjar' => [], - 'fjaler' => [], - 'fjell' => [], - 'flakstad' => [], - 'flatanger' => [], - 'flekkefjord' => [], - 'flesberg' => [], - 'flora' => [], - 'fla' => [], - 'flå' => [], - 'folldal' => [], - 'forsand' => [], - 'fosnes' => [], - 'frei' => [], - 'frogn' => [], - 'froland' => [], - 'frosta' => [], - 'frana' => [], - 'fræna' => [], - 'froya' => [], - 'frøya' => [], - 'fusa' => [], - 'fyresdal' => [], - 'forde' => [], - 'førde' => [], - 'gamvik' => [], - 'gangaviika' => [], - 'gáŋgaviika' => [], - 'gaular' => [], - 'gausdal' => [], - 'gildeskal' => [], - 'gildeskål' => [], - 'giske' => [], - 'gjemnes' => [], - 'gjerdrum' => [], - 'gjerstad' => [], - 'gjesdal' => [], - 'gjovik' => [], - 'gjøvik' => [], - 'gloppen' => [], - 'gol' => [], - 'gran' => [], - 'grane' => [], - 'granvin' => [], - 'gratangen' => [], - 'grimstad' => [], - 'grong' => [], - 'kraanghke' => [], - 'kråanghke' => [], - 'grue' => [], - 'gulen' => [], - 'hadsel' => [], - 'halden' => [], - 'halsa' => [], - 'hamar' => [], - 'hamaroy' => [], - 'habmer' => [], - 'hábmer' => [], - 'hapmir' => [], - 'hápmir' => [], - 'hammerfest' => [], - 'hammarfeasta' => [], - 'hámmárfeasta' => [], - 'haram' => [], - 'hareid' => [], - 'harstad' => [], - 'hasvik' => [], - 'aknoluokta' => [], - 'ákŋoluokta' => [], - 'hattfjelldal' => [], - 'aarborte' => [], - 'haugesund' => [], - 'hemne' => [], - 'hemnes' => [], - 'hemsedal' => [], - 'more-og-romsdal' => ['heroy' => [], - 'sande' => [], - ], - 'møre-og-romsdal' => ['herøy' => [], - 'sande' => [], - ], - 'hitra' => [], - 'hjartdal' => [], - 'hjelmeland' => [], - 'hobol' => [], - 'hobøl' => [], - 'hof' => [], - 'hol' => [], - 'hole' => [], - 'holmestrand' => [], - 'holtalen' => [], - 'holtålen' => [], - 'hornindal' => [], - 'horten' => [], - 'hurdal' => [], - 'hurum' => [], - 'hvaler' => [], - 'hyllestad' => [], - 'hagebostad' => [], - 'hægebostad' => [], - 'hoyanger' => [], - 'høyanger' => [], - 'hoylandet' => [], - 'høylandet' => [], - 'ha' => [], - 'hå' => [], - 'ibestad' => [], - 'inderoy' => [], - 'inderøy' => [], - 'iveland' => [], - 'jevnaker' => [], - 'jondal' => [], - 'jolster' => [], - 'jølster' => [], - 'karasjok' => [], - 'karasjohka' => [], - 'kárášjohka' => [], - 'karlsoy' => [], - 'galsa' => [], - 'gálsá' => [], - 'karmoy' => [], - 'karmøy' => [], - 'kautokeino' => [], - 'guovdageaidnu' => [], - 'klepp' => [], - 'klabu' => [], - 'klæbu' => [], - 'kongsberg' => [], - 'kongsvinger' => [], - 'kragero' => [], - 'kragerø' => [], - 'kristiansand' => [], - 'kristiansund' => [], - 'krodsherad' => [], - 'krødsherad' => [], - 'kvalsund' => [], - 'rahkkeravju' => [], - 'ráhkkerávju' => [], - 'kvam' => [], - 'kvinesdal' => [], - 'kvinnherad' => [], - 'kviteseid' => [], - 'kvitsoy' => [], - 'kvitsøy' => [], - 'kvafjord' => [], - 'kvæfjord' => [], - 'giehtavuoatna' => [], - 'kvanangen' => [], - 'kvænangen' => [], - 'navuotna' => [], - 'návuotna' => [], - 'kafjord' => [], - 'kåfjord' => [], - 'gaivuotna' => [], - 'gáivuotna' => [], - 'larvik' => [], - 'lavangen' => [], - 'lavagis' => [], - 'loabat' => [], - 'loabát' => [], - 'lebesby' => [], - 'davvesiida' => [], - 'leikanger' => [], - 'leirfjord' => [], - 'leka' => [], - 'leksvik' => [], - 'lenvik' => [], - 'leangaviika' => [], - 'leaŋgaviika' => [], - 'lesja' => [], - 'levanger' => [], - 'lier' => [], - 'lierne' => [], - 'lillehammer' => [], - 'lillesand' => [], - 'lindesnes' => [], - 'lindas' => [], - 'lindås' => [], - 'lom' => [], - 'loppa' => [], - 'lahppi' => [], - 'láhppi' => [], - 'lund' => [], - 'lunner' => [], - 'luroy' => [], - 'lurøy' => [], - 'luster' => [], - 'lyngdal' => [], - 'lyngen' => [], - 'ivgu' => [], - 'lardal' => [], - 'lerdal' => [], - 'lærdal' => [], - 'lodingen' => [], - 'lødingen' => [], - 'lorenskog' => [], - 'lørenskog' => [], - 'loten' => [], - 'løten' => [], - 'malvik' => [], - 'masoy' => [], - 'måsøy' => [], - 'muosat' => [], - 'muosát' => [], - 'mandal' => [], - 'marker' => [], - 'marnardal' => [], - 'masfjorden' => [], - 'meland' => [], - 'meldal' => [], - 'melhus' => [], - 'meloy' => [], - 'meløy' => [], - 'meraker' => [], - 'meråker' => [], - 'moareke' => [], - 'moåreke' => [], - 'midsund' => [], - 'midtre-gauldal' => [], - 'modalen' => [], - 'modum' => [], - 'molde' => [], - 'moskenes' => [], - 'moss' => [], - 'mosvik' => [], - 'malselv' => [], - 'målselv' => [], - 'malatvuopmi' => [], - 'málatvuopmi' => [], - 'namdalseid' => [], - 'aejrie' => [], - 'namsos' => [], - 'namsskogan' => [], - 'naamesjevuemie' => [], - 'nååmesjevuemie' => [], - 'laakesvuemie' => [], - 'nannestad' => [], - 'narvik' => [], - 'narviika' => [], - 'naustdal' => [], - 'nedre-eiker' => [], - 'akershus' => ['nes' => [], - ], - 'buskerud' => ['nes' => [], - ], - 'nesna' => [], - 'nesodden' => [], - 'nesseby' => [], - 'unjarga' => [], - 'unjárga' => [], - 'nesset' => [], - 'nissedal' => [], - 'nittedal' => [], - 'nord-aurdal' => [], - 'nord-fron' => [], - 'nord-odal' => [], - 'norddal' => [], - 'nordkapp' => [], - 'davvenjarga' => [], - 'davvenjárga' => [], - 'nordre-land' => [], - 'nordreisa' => [], - 'raisa' => [], - 'ráisa' => [], - 'nore-og-uvdal' => [], - 'notodden' => [], - 'naroy' => [], - 'nærøy' => [], - 'notteroy' => [], - 'nøtterøy' => [], - 'odda' => [], - 'oksnes' => [], - 'øksnes' => [], - 'oppdal' => [], - 'oppegard' => [], - 'oppegård' => [], - 'orkdal' => [], - 'orland' => [], - 'ørland' => [], - 'orskog' => [], - 'ørskog' => [], - 'orsta' => [], - 'ørsta' => [], - 'hedmark' => ['os' => [], - 'valer' => [], - 'våler' => [], - ], - 'hordaland' => ['os' => [], - ], - 'osen' => [], - 'osteroy' => [], - 'osterøy' => [], - 'ostre-toten' => [], - 'østre-toten' => [], - 'overhalla' => [], - 'ovre-eiker' => [], - 'øvre-eiker' => [], - 'oyer' => [], - 'øyer' => [], - 'oygarden' => [], - 'øygarden' => [], - 'oystre-slidre' => [], - 'øystre-slidre' => [], - 'porsanger' => [], - 'porsangu' => [], - 'porsáŋgu' => [], - 'porsgrunn' => [], - 'radoy' => [], - 'radøy' => [], - 'rakkestad' => [], - 'rana' => [], - 'ruovat' => [], - 'randaberg' => [], - 'rauma' => [], - 'rendalen' => [], - 'rennebu' => [], - 'rennesoy' => [], - 'rennesøy' => [], - 'rindal' => [], - 'ringebu' => [], - 'ringerike' => [], - 'ringsaker' => [], - 'rissa' => [], - 'risor' => [], - 'risør' => [], - 'roan' => [], - 'rollag' => [], - 'rygge' => [], - 'ralingen' => [], - 'rælingen' => [], - 'rodoy' => [], - 'rødøy' => [], - 'romskog' => [], - 'rømskog' => [], - 'roros' => [], - 'røros' => [], - 'rost' => [], - 'røst' => [], - 'royken' => [], - 'røyken' => [], - 'royrvik' => [], - 'røyrvik' => [], - 'rade' => [], - 'råde' => [], - 'salangen' => [], - 'siellak' => [], - 'saltdal' => [], - 'salat' => [], - 'sálát' => [], - 'sálat' => [], - 'samnanger' => [], - 'vestfold' => ['sande' => [], - ], - 'sandefjord' => [], - 'sandnes' => [], - 'sandoy' => [], - 'sandøy' => [], - 'sarpsborg' => [], - 'sauda' => [], - 'sauherad' => [], - 'sel' => [], - 'selbu' => [], - 'selje' => [], - 'seljord' => [], - 'sigdal' => [], - 'siljan' => [], - 'sirdal' => [], - 'skaun' => [], - 'skedsmo' => [], - 'ski' => [], - 'skien' => [], - 'skiptvet' => [], - 'skjervoy' => [], - 'skjervøy' => [], - 'skierva' => [], - 'skiervá' => [], - 'skjak' => [], - 'skjåk' => [], - 'skodje' => [], - 'skanland' => [], - 'skånland' => [], - 'skanit' => [], - 'skánit' => [], - 'smola' => [], - 'smøla' => [], - 'snillfjord' => [], - 'snasa' => [], - 'snåsa' => [], - 'snoasa' => [], - 'snaase' => [], - 'snåase' => [], - 'sogndal' => [], - 'sokndal' => [], - 'sola' => [], - 'solund' => [], - 'songdalen' => [], - 'sortland' => [], - 'spydeberg' => [], - 'stange' => [], - 'stavanger' => [], - 'steigen' => [], - 'steinkjer' => [], - 'stjordal' => [], - 'stjørdal' => [], - 'stokke' => [], - 'stor-elvdal' => [], - 'stord' => [], - 'stordal' => [], - 'storfjord' => [], - 'omasvuotna' => [], - 'strand' => [], - 'stranda' => [], - 'stryn' => [], - 'sula' => [], - 'suldal' => [], - 'sund' => [], - 'sunndal' => [], - 'surnadal' => [], - 'sveio' => [], - 'svelvik' => [], - 'sykkylven' => [], - 'sogne' => [], - 'søgne' => [], - 'somna' => [], - 'sømna' => [], - 'sondre-land' => [], - 'søndre-land' => [], - 'sor-aurdal' => [], - 'sør-aurdal' => [], - 'sor-fron' => [], - 'sør-fron' => [], - 'sor-odal' => [], - 'sør-odal' => [], - 'sor-varanger' => [], - 'sør-varanger' => [], - 'matta-varjjat' => [], - 'mátta-várjjat' => [], - 'sorfold' => [], - 'sørfold' => [], - 'sorreisa' => [], - 'sørreisa' => [], - 'sorum' => [], - 'sørum' => [], - 'tana' => [], - 'deatnu' => [], - 'time' => [], - 'tingvoll' => [], - 'tinn' => [], - 'tjeldsund' => [], - 'dielddanuorri' => [], - 'tjome' => [], - 'tjøme' => [], - 'tokke' => [], - 'tolga' => [], - 'torsken' => [], - 'tranoy' => [], - 'tranøy' => [], - 'tromso' => [], - 'tromsø' => [], - 'tromsa' => [], - 'romsa' => [], - 'trondheim' => [], - 'troandin' => [], - 'trysil' => [], - 'trana' => [], - 'træna' => [], - 'trogstad' => [], - 'trøgstad' => [], - 'tvedestrand' => [], - 'tydal' => [], - 'tynset' => [], - 'tysfjord' => [], - 'divtasvuodna' => [], - 'divttasvuotna' => [], - 'tysnes' => [], - 'tysvar' => [], - 'tysvær' => [], - 'tonsberg' => [], - 'tønsberg' => [], - 'ullensaker' => [], - 'ullensvang' => [], - 'ulvik' => [], - 'utsira' => [], - 'vadso' => [], - 'vadsø' => [], - 'cahcesuolo' => [], - 'čáhcesuolo' => [], - 'vaksdal' => [], - 'valle' => [], - 'vang' => [], - 'vanylven' => [], - 'vardo' => [], - 'vardø' => [], - 'varggat' => [], - 'várggát' => [], - 'vefsn' => [], - 'vaapste' => [], - 'vega' => [], - 'vegarshei' => [], - 'vegårshei' => [], - 'vennesla' => [], - 'verdal' => [], - 'verran' => [], - 'vestby' => [], - 'vestnes' => [], - 'vestre-slidre' => [], - 'vestre-toten' => [], - 'vestvagoy' => [], - 'vestvågøy' => [], - 'vevelstad' => [], - 'vik' => [], - 'vikna' => [], - 'vindafjord' => [], - 'volda' => [], - 'voss' => [], - 'varoy' => [], - 'værøy' => [], - 'vagan' => [], - 'vågan' => [], - 'voagat' => [], - 'vagsoy' => [], - 'vågsøy' => [], - 'vaga' => [], - 'vågå' => [], - 'ostfold' => ['valer' => [], - ], - 'østfold' => ['våler' => [], - ], - 'co' => [], - ], - 'np' => ['*' => [], - ], - 'nr' => ['biz' => [], - 'info' => [], - 'gov' => [], - 'edu' => [], - 'org' => [], - 'net' => [], - 'com' => [], - ], - 'nu' => ['merseine' => [], - 'mine' => [], - 'shacknet' => [], - ], - 'nz' => ['*' => [], - ], - 'om' => ['*' => [], - 'mediaphone' => ['!' => '' - ], - 'nawrastelecom' => ['!' => '' - ], - 'nawras' => ['!' => '' - ], - 'omanmobile' => ['!' => '' - ], - 'omanpost' => ['!' => '' - ], - 'omantel' => ['!' => '' - ], - 'rakpetroleum' => ['!' => '' - ], - 'siemens' => ['!' => '' - ], - 'songfest' => ['!' => '' - ], - 'statecouncil' => ['!' => '' - ], - ], - 'org' => ['ae' => [], - 'us' => [], - 'za' => [], - 'dyndns' => ['go' => [], - 'home' => [], - ], - 'blogdns' => [], - 'blogsite' => [], - 'boldlygoingnowhere' => [], - 'dnsalias' => [], - 'dnsdojo' => [], - 'doesntexist' => [], - 'dontexist' => [], - 'doomdns' => [], - 'dvrdns' => [], - 'dynalias' => [], - 'endofinternet' => [], - 'endoftheinternet' => [], - 'from-me' => [], - 'game-host' => [], - 'gotdns' => [], - 'hobby-site' => [], - 'homedns' => [], - 'homeftp' => [], - 'homelinux' => [], - 'homeunix' => [], - 'is-a-bruinsfan' => [], - 'is-a-candidate' => [], - 'is-a-celticsfan' => [], - 'is-a-chef' => [], - 'is-a-geek' => [], - 'is-a-knight' => [], - 'is-a-linux-user' => [], - 'is-a-patsfan' => [], - 'is-a-soxfan' => [], - 'is-found' => [], - 'is-lost' => [], - 'is-saved' => [], - 'is-very-bad' => [], - 'is-very-evil' => [], - 'is-very-good' => [], - 'is-very-nice' => [], - 'is-very-sweet' => [], - 'isa-geek' => [], - 'kicks-ass' => [], - 'misconfused' => [], - 'podzone' => [], - 'readmyblog' => [], - 'selfip' => [], - 'sellsyourhome' => [], - 'servebbs' => [], - 'serveftp' => [], - 'servegame' => [], - 'stuff-4-sale' => [], - 'webhop' => [], - ], - 'pa' => ['ac' => [], - 'gob' => [], - 'com' => [], - 'org' => [], - 'sld' => [], - 'edu' => [], - 'net' => [], - 'ing' => [], - 'abo' => [], - 'med' => [], - 'nom' => [], - ], - 'pe' => ['edu' => [], - 'gob' => [], - 'nom' => [], - 'mil' => [], - 'org' => [], - 'com' => [], - 'net' => [], - ], - 'pf' => ['com' => [], - 'org' => [], - 'edu' => [], - ], - 'pg' => ['*' => [], - ], - 'ph' => ['com' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - 'edu' => [], - 'ngo' => [], - 'mil' => [], - 'i' => [], - ], - 'pk' => ['com' => [], - 'net' => [], - 'edu' => [], - 'org' => [], - 'fam' => [], - 'biz' => [], - 'web' => [], - 'gov' => [], - 'gob' => [], - 'gok' => [], - 'gon' => [], - 'gop' => [], - 'gos' => [], - 'info' => [], - ], - 'pl' => ['aid' => [], - 'agro' => [], - 'atm' => [], - 'auto' => [], - 'biz' => [], - 'com' => [], - 'edu' => [], - 'gmina' => [], - 'gsm' => [], - 'info' => [], - 'mail' => [], - 'miasta' => [], - 'media' => [], - 'mil' => [], - 'net' => [], - 'nieruchomosci' => [], - 'nom' => [], - 'org' => [], - 'pc' => [], - 'powiat' => [], - 'priv' => [], - 'realestate' => [], - 'rel' => [], - 'sex' => [], - 'shop' => [], - 'sklep' => [], - 'sos' => [], - 'szkola' => [], - 'targi' => [], - 'tm' => [], - 'tourism' => [], - 'travel' => [], - 'turystyka' => [], - '6bone' => [], - 'art' => [], - 'mbone' => [], - 'gov' => ['uw' => [], - 'um' => [], - 'ug' => [], - 'upow' => [], - 'starostwo' => [], - 'so' => [], - 'sr' => [], - 'po' => [], - 'pa' => [], - ], - 'ngo' => [], - 'irc' => [], - 'usenet' => [], - 'augustow' => [], - 'babia-gora' => [], - 'bedzin' => [], - 'beskidy' => [], - 'bialowieza' => [], - 'bialystok' => [], - 'bielawa' => [], - 'bieszczady' => [], - 'boleslawiec' => [], - 'bydgoszcz' => [], - 'bytom' => [], - 'cieszyn' => [], - 'czeladz' => [], - 'czest' => [], - 'dlugoleka' => [], - 'elblag' => [], - 'elk' => [], - 'glogow' => [], - 'gniezno' => [], - 'gorlice' => [], - 'grajewo' => [], - 'ilawa' => [], - 'jaworzno' => [], - 'jelenia-gora' => [], - 'jgora' => [], - 'kalisz' => [], - 'kazimierz-dolny' => [], - 'karpacz' => [], - 'kartuzy' => [], - 'kaszuby' => [], - 'katowice' => [], - 'kepno' => [], - 'ketrzyn' => [], - 'klodzko' => [], - 'kobierzyce' => [], - 'kolobrzeg' => [], - 'konin' => [], - 'konskowola' => [], - 'kutno' => [], - 'lapy' => [], - 'lebork' => [], - 'legnica' => [], - 'lezajsk' => [], - 'limanowa' => [], - 'lomza' => [], - 'lowicz' => [], - 'lubin' => [], - 'lukow' => [], - 'malbork' => [], - 'malopolska' => [], - 'mazowsze' => [], - 'mazury' => [], - 'mielec' => [], - 'mielno' => [], - 'mragowo' => [], - 'naklo' => [], - 'nowaruda' => [], - 'nysa' => [], - 'olawa' => [], - 'olecko' => [], - 'olkusz' => [], - 'olsztyn' => [], - 'opoczno' => [], - 'opole' => [], - 'ostroda' => [], - 'ostroleka' => [], - 'ostrowiec' => [], - 'ostrowwlkp' => [], - 'pila' => [], - 'pisz' => [], - 'podhale' => [], - 'podlasie' => [], - 'polkowice' => [], - 'pomorze' => [], - 'pomorskie' => [], - 'prochowice' => [], - 'pruszkow' => [], - 'przeworsk' => [], - 'pulawy' => [], - 'radom' => [], - 'rawa-maz' => [], - 'rybnik' => [], - 'rzeszow' => [], - 'sanok' => [], - 'sejny' => [], - 'siedlce' => [], - 'slask' => [], - 'slupsk' => [], - 'sosnowiec' => [], - 'stalowa-wola' => [], - 'skoczow' => [], - 'starachowice' => [], - 'stargard' => [], - 'suwalki' => [], - 'swidnica' => [], - 'swiebodzin' => [], - 'swinoujscie' => [], - 'szczecin' => [], - 'szczytno' => [], - 'tarnobrzeg' => [], - 'tgory' => [], - 'turek' => [], - 'tychy' => [], - 'ustka' => [], - 'walbrzych' => [], - 'warmia' => [], - 'warszawa' => [], - 'waw' => [], - 'wegrow' => [], - 'wielun' => [], - 'wlocl' => [], - 'wloclawek' => [], - 'wodzislaw' => [], - 'wolomin' => [], - 'wroclaw' => [], - 'zachpomor' => [], - 'zagan' => [], - 'zarow' => [], - 'zgora' => [], - 'zgorzelec' => [], - 'gda' => [], - 'gdansk' => [], - 'gdynia' => [], - 'med' => [], - 'sopot' => [], - 'gliwice' => [], - 'krakow' => [], - 'poznan' => [], - 'wroc' => [], - 'zakopane' => [], - 'co' => [], - ], - 'pm' => [], - 'pn' => ['gov' => [], - 'co' => [], - 'org' => [], - 'edu' => [], - 'net' => [], - ], - 'pr' => ['com' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - 'edu' => [], - 'isla' => [], - 'pro' => [], - 'biz' => [], - 'info' => [], - 'name' => [], - 'est' => [], - 'prof' => [], - 'ac' => [], - ], - 'pro' => ['aca' => [], - 'bar' => [], - 'cpa' => [], - 'jur' => [], - 'law' => [], - 'med' => [], - 'eng' => [], - ], - 'ps' => ['edu' => [], - 'gov' => [], - 'sec' => [], - 'plo' => [], - 'com' => [], - 'org' => [], - 'net' => [], - ], - 'pt' => ['net' => [], - 'gov' => [], - 'org' => [], - 'edu' => [], - 'int' => [], - 'publ' => [], - 'com' => [], - 'nome' => [], - ], - 'pw' => ['co' => [], - 'ne' => [], - 'or' => [], - 'ed' => [], - 'go' => [], - 'belau' => [], - ], - 'py' => ['*' => [], - ], - 'qa' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'mil' => [], - 'name' => [], - 'net' => [], - 'org' => [], - 'sch' => [], - ], - 're' => ['com' => [], - 'asso' => [], - 'nom' => [], - ], - 'ro' => ['com' => [], - 'org' => [], - 'tm' => [], - 'nt' => [], - 'nom' => [], - 'info' => [], - 'rec' => [], - 'arts' => [], - 'firm' => [], - 'store' => [], - 'www' => [], - ], - 'rs' => ['co' => [], - 'org' => [], - 'edu' => [], - 'ac' => [], - 'gov' => [], - 'in' => [], - ], - 'ru' => ['ac' => [], - 'com' => [], - 'edu' => [], - 'int' => [], - 'net' => [], - 'org' => [], - 'pp' => [], - 'adygeya' => [], - 'altai' => [], - 'amur' => [], - 'arkhangelsk' => [], - 'astrakhan' => [], - 'bashkiria' => [], - 'belgorod' => [], - 'bir' => [], - 'bryansk' => [], - 'buryatia' => [], - 'cbg' => [], - 'chel' => [], - 'chelyabinsk' => [], - 'chita' => [], - 'chukotka' => [], - 'chuvashia' => [], - 'dagestan' => [], - 'dudinka' => [], - 'e-burg' => [], - 'grozny' => [], - 'irkutsk' => [], - 'ivanovo' => [], - 'izhevsk' => [], - 'jar' => [], - 'joshkar-ola' => [], - 'kalmykia' => [], - 'kaluga' => [], - 'kamchatka' => [], - 'karelia' => [], - 'kazan' => [], - 'kchr' => [], - 'kemerovo' => [], - 'khabarovsk' => [], - 'khakassia' => [], - 'khv' => [], - 'kirov' => [], - 'koenig' => [], - 'komi' => [], - 'kostroma' => [], - 'krasnoyarsk' => [], - 'kuban' => [], - 'kurgan' => [], - 'kursk' => [], - 'lipetsk' => [], - 'magadan' => [], - 'mari' => [], - 'mari-el' => [], - 'marine' => [], - 'mordovia' => [], - 'mosreg' => [], - 'msk' => [], - 'murmansk' => [], - 'nalchik' => [], - 'nnov' => [], - 'nov' => [], - 'novosibirsk' => [], - 'nsk' => [], - 'omsk' => [], - 'orenburg' => [], - 'oryol' => [], - 'palana' => [], - 'penza' => [], - 'perm' => [], - 'pskov' => [], - 'ptz' => [], - 'rnd' => [], - 'ryazan' => [], - 'sakhalin' => [], - 'samara' => [], - 'saratov' => [], - 'simbirsk' => [], - 'smolensk' => [], - 'spb' => [], - 'stavropol' => [], - 'stv' => [], - 'surgut' => [], - 'tambov' => [], - 'tatarstan' => [], - 'tom' => [], - 'tomsk' => [], - 'tsaritsyn' => [], - 'tsk' => [], - 'tula' => [], - 'tuva' => [], - 'tver' => [], - 'tyumen' => [], - 'udm' => [], - 'udmurtia' => [], - 'ulan-ude' => [], - 'vladikavkaz' => [], - 'vladimir' => [], - 'vladivostok' => [], - 'volgograd' => [], - 'vologda' => [], - 'voronezh' => [], - 'vrn' => [], - 'vyatka' => [], - 'yakutia' => [], - 'yamal' => [], - 'yaroslavl' => [], - 'yekaterinburg' => [], - 'yuzhno-sakhalinsk' => [], - 'amursk' => [], - 'baikal' => [], - 'cmw' => [], - 'fareast' => [], - 'jamal' => [], - 'kms' => [], - 'k-uralsk' => [], - 'kustanai' => [], - 'kuzbass' => [], - 'magnitka' => [], - 'mytis' => [], - 'nakhodka' => [], - 'nkz' => [], - 'norilsk' => [], - 'oskol' => [], - 'pyatigorsk' => [], - 'rubtsovsk' => [], - 'snz' => [], - 'syzran' => [], - 'vdonsk' => [], - 'zgrad' => [], - 'gov' => [], - 'mil' => [], - 'test' => [], - ], - 'rw' => ['gov' => [], - 'net' => [], - 'edu' => [], - 'ac' => [], - 'com' => [], - 'co' => [], - 'int' => [], - 'mil' => [], - 'gouv' => [], - ], - 'sa' => ['com' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - 'med' => [], - 'pub' => [], - 'edu' => [], - 'sch' => [], - ], - 'sb' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'net' => [], - 'org' => [], - ], - 'sc' => ['com' => [], - 'gov' => [], - 'net' => [], - 'org' => [], - 'edu' => [], - ], - 'sd' => ['com' => [], - 'net' => [], - 'org' => [], - 'edu' => [], - 'med' => [], - 'tv' => [], - 'gov' => [], - 'info' => [], - ], - 'se' => ['a' => [], - 'ac' => [], - 'b' => [], - 'bd' => [], - 'brand' => [], - 'c' => [], - 'd' => [], - 'e' => [], - 'f' => [], - 'fh' => [], - 'fhsk' => [], - 'fhv' => [], - 'g' => [], - 'h' => [], - 'i' => [], - 'k' => [], - 'komforb' => [], - 'kommunalforbund' => [], - 'komvux' => [], - 'l' => [], - 'lanbib' => [], - 'm' => [], - 'n' => [], - 'naturbruksgymn' => [], - 'o' => [], - 'org' => [], - 'p' => [], - 'parti' => [], - 'pp' => [], - 'press' => [], - 'r' => [], - 's' => [], - 'sshn' => [], - 't' => [], - 'tm' => [], - 'u' => [], - 'w' => [], - 'x' => [], - 'y' => [], - 'z' => [], - ], - 'sg' => ['com' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - 'edu' => [], - 'per' => [], - ], - 'sh' => ['com' => [], - 'net' => [], - 'gov' => [], - 'org' => [], - 'mil' => [], - ], - 'si' => [], - 'sk' => [], - 'sl' => ['com' => [], - 'net' => [], - 'edu' => [], - 'gov' => [], - 'org' => [], - ], - 'sm' => [], - 'sn' => ['art' => [], - 'com' => [], - 'edu' => [], - 'gouv' => [], - 'org' => [], - 'perso' => [], - 'univ' => [], - ], - 'so' => ['com' => [], - 'net' => [], - 'org' => [], - ], - 'sr' => [], - 'st' => ['co' => [], - 'com' => [], - 'consulado' => [], - 'edu' => [], - 'embaixada' => [], - 'gov' => [], - 'mil' => [], - 'net' => [], - 'org' => [], - 'principe' => [], - 'saotome' => [], - 'store' => [], - ], - 'su' => [], - 'sv' => ['*' => [], - ], - 'sx' => ['gov' => [], - ], - 'sy' => ['edu' => [], - 'gov' => [], - 'net' => [], - 'mil' => [], - 'com' => [], - 'org' => [], - ], - 'sz' => ['co' => [], - 'ac' => [], - 'org' => [], - ], - 'tc' => [], - 'td' => [], - 'tel' => [], - 'tf' => [], - 'tg' => [], - 'th' => ['ac' => [], - 'co' => [], - 'go' => [], - 'in' => [], - 'mi' => [], - 'net' => [], - 'or' => [], - ], - 'tj' => ['ac' => [], - 'biz' => [], - 'co' => [], - 'com' => [], - 'edu' => [], - 'go' => [], - 'gov' => [], - 'int' => [], - 'mil' => [], - 'name' => [], - 'net' => [], - 'nic' => [], - 'org' => [], - 'test' => [], - 'web' => [], - ], - 'tk' => [], - 'tl' => ['gov' => [], - ], - 'tm' => ['com' => [], - 'co' => [], - 'org' => [], - 'net' => [], - 'nom' => [], - 'gov' => [], - 'mil' => [], - 'edu' => [], - ], - 'tn' => ['com' => [], - 'ens' => [], - 'fin' => [], - 'gov' => [], - 'ind' => [], - 'intl' => [], - 'nat' => [], - 'net' => [], - 'org' => [], - 'info' => [], - 'perso' => [], - 'tourism' => [], - 'edunet' => [], - 'rnrt' => [], - 'rns' => [], - 'rnu' => [], - 'mincom' => [], - 'agrinet' => [], - 'defense' => [], - 'turen' => [], - ], - 'to' => ['com' => [], - 'gov' => [], - 'net' => [], - 'org' => [], - 'edu' => [], - 'mil' => [], - ], - 'tr' => ['*' => [], - 'nic' => ['!' => '' - ], - 'nc' => ['gov' => [], - ], - ], - 'travel' => [], - 'tt' => ['co' => [], - 'com' => [], - 'org' => [], - 'net' => [], - 'biz' => [], - 'info' => [], - 'pro' => [], - 'int' => [], - 'coop' => [], - 'jobs' => [], - 'mobi' => [], - 'travel' => [], - 'museum' => [], - 'aero' => [], - 'name' => [], - 'gov' => [], - 'edu' => [], - ], - 'tv' => ['dyndns' => [], - 'better-than' => [], - 'on-the-web' => [], - 'worse-than' => [], - ], - 'tw' => ['edu' => [], - 'gov' => [], - 'mil' => [], - 'com' => [], - 'net' => [], - 'org' => [], - 'idv' => [], - 'game' => [], - 'ebiz' => [], - 'club' => [], - '網路' => [], - '組織' => [], - '商業' => [], - ], - 'tz' => ['ac' => [], - 'co' => [], - 'go' => [], - 'mil' => [], - 'ne' => [], - 'or' => [], - 'sc' => [], - ], - 'ua' => ['com' => [], - 'edu' => [], - 'gov' => [], - 'in' => [], - 'net' => [], - 'org' => [], - 'cherkassy' => [], - 'cherkasy' => [], - 'chernigov' => [], - 'chernihiv' => [], - 'chernivtsi' => [], - 'chernovtsy' => [], - 'ck' => [], - 'cn' => [], - 'cr' => [], - 'crimea' => [], - 'cv' => [], - 'dn' => [], - 'dnepropetrovsk' => [], - 'dnipropetrovsk' => [], - 'dominic' => [], - 'donetsk' => [], - 'dp' => [], - 'if' => [], - 'ivano-frankivsk' => [], - 'kh' => [], - 'kharkiv' => [], - 'kharkov' => [], - 'kherson' => [], - 'khmelnitskiy' => [], - 'khmelnytskyi' => [], - 'kiev' => [], - 'kirovograd' => [], - 'km' => [], - 'kr' => [], - 'krym' => [], - 'ks' => [], - 'kv' => [], - 'kyiv' => [], - 'lg' => [], - 'lt' => [], - 'lugansk' => [], - 'lutsk' => [], - 'lv' => [], - 'lviv' => [], - 'mk' => [], - 'mykolaiv' => [], - 'nikolaev' => [], - 'od' => [], - 'odesa' => [], - 'odessa' => [], - 'pl' => [], - 'poltava' => [], - 'rivne' => [], - 'rovno' => [], - 'rv' => [], - 'sb' => [], - 'sebastopol' => [], - 'sevastopol' => [], - 'sm' => [], - 'sumy' => [], - 'te' => [], - 'ternopil' => [], - 'uz' => [], - 'uzhgorod' => [], - 'vinnica' => [], - 'vinnytsia' => [], - 'vn' => [], - 'volyn' => [], - 'yalta' => [], - 'zaporizhzhe' => [], - 'zaporizhzhia' => [], - 'zhitomir' => [], - 'zhytomyr' => [], - 'zp' => [], - 'zt' => [], - 'co' => [], - 'pp' => [], - ], - 'ug' => ['co' => [], - 'or' => [], - 'ac' => [], - 'sc' => [], - 'go' => [], - 'ne' => [], - 'com' => [], - 'org' => [], - ], - 'uk' => ['*' => [], - 'nhs' => ['*' => [], - ], - 'police' => ['*' => [], - ], - 'sch' => ['*' => [], - ], - 'bl' => ['!' => '' - ], - 'british-library' => ['!' => '' - ], - 'jet' => ['!' => '' - ], - 'mod' => ['!' => '' - ], - 'national-library-scotland' => ['!' => '' - ], - 'nel' => ['!' => '' - ], - 'nic' => ['!' => '' - ], - 'nls' => ['!' => '' - ], - 'parliament' => ['!' => '' - ], - ], - 'us' => ['dni' => [], - 'fed' => [], - 'isa' => [], - 'kids' => [], - 'nsn' => [], - 'ak' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'al' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ar' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'as' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'az' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ca' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'co' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ct' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'dc' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'de' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'fl' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ga' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'gu' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'hi' => ['cc' => [], - 'lib' => [], - ], - 'ia' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'id' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'il' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'in' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ks' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ky' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'la' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ma' => ['k12' => ['pvt' => [], - 'chtr' => [], - 'paroch' => [], - ], - 'cc' => [], - 'lib' => [], - ], - 'md' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'me' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'mi' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'mn' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'mo' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ms' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'mt' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'nc' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'nd' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ne' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'nh' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'nj' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'nm' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'nv' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ny' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'oh' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ok' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'or' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'pa' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'pr' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ri' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'sc' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'sd' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'tn' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'tx' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'ut' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'vi' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'vt' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'va' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'wa' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'wi' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'wv' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'wy' => ['k12' => [], - 'cc' => [], - 'lib' => [], - ], - 'is-by' => [], - 'land-4-sale' => [], - 'stuff-4-sale' => [], - ], - 'uy' => ['com' => [], - 'edu' => [], - 'gub' => [], - 'mil' => [], - 'net' => [], - 'org' => [], - ], - 'uz' => ['co' => [], - 'com' => [], - 'net' => [], - 'org' => [], - ], - 'va' => [], - 'vc' => ['com' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - 'mil' => [], - 'edu' => [], - ], - 've' => ['co' => [], - 'com' => [], - 'e12' => [], - 'edu' => [], - 'gov' => [], - 'info' => [], - 'mil' => [], - 'net' => [], - 'org' => [], - 'web' => [], - ], - 'vg' => [], - 'vi' => ['co' => [], - 'com' => [], - 'k12' => [], - 'net' => [], - 'org' => [], - ], - 'vn' => ['com' => [], - 'net' => [], - 'org' => [], - 'edu' => [], - 'gov' => [], - 'int' => [], - 'ac' => [], - 'biz' => [], - 'info' => [], - 'name' => [], - 'pro' => [], - 'health' => [], - ], - 'vu' => [], - 'wf' => [], - 'ws' => ['com' => [], - 'net' => [], - 'org' => [], - 'gov' => [], - 'edu' => [], - 'dyndns' => [], - 'mypets' => [], - ], - 'yt' => [], - 'امارات' => [], - 'বাংলা' => [], - '中国' => [], - '中國' => [], - 'الجزائر' => [], - 'مصر' => [], - 'გე' => [], - '香港' => [], - 'भारत' => [], - 'بھارت' => [], - 'భారత్' => [], - 'ભારત' => [], - 'ਭਾਰਤ' => [], - 'ভারত' => [], - 'இந்தியா' => [], - 'ایران' => [], - 'ايران' => [], - 'الاردن' => [], - '한국' => [], - 'ලංකා' => [], - 'இலங்கை' => [], - 'المغرب' => [], - 'عمان' => [], - 'فلسطين' => [], - 'срб' => [], - 'рф' => [], - 'قطر' => [], - 'السعودية' => [], - 'السعودیة' => [], - 'السعودیۃ' => [], - 'السعوديه' => [], - 'سورية' => [], - 'سوريا' => [], - '新加坡' => [], - 'சிங்கப்பூர்' => [], - 'ไทย' => [], - 'تونس' => [], - '台灣' => [], - '台湾' => [], - '臺灣' => [], - 'укр' => [], - 'اليمن' => [], - 'xxx' => [], - 'ye' => ['*' => [], - ], - 'za' => ['*' => [], - ], - 'zm' => ['*' => [], - ], - 'zw' => ['*' => [], - ], -]; -return $tldTree; diff --git a/archive/generateEffectiveTLDs.php b/archive/generateEffectiveTLDs.php deleted file mode 100755 index ad906e1..0000000 --- a/archive/generateEffectiveTLDs.php +++ /dev/null @@ -1,221 +0,0 @@ -#!/usr/bin/env php - 1) { - if ('perl' == $argv[1]) { - $format = 'perl'; - } elseif ('c' == $argv[1]) { - $format = 'c'; - } elseif ('php' == $argv[1]) { - $format = 'php'; - } -} - -/* - * Does $search start with $startstring? - */ -function startsWith($search, $startstring) -{ - return (substr($search, 0, strlen($startstring)) == $startstring); -} - -/* - * Does $search end with $endstring? - */ -function endsWith($search, $endstring) -{ - return (substr($search, -strlen($endstring)) == $endstring); -} - - -function buildSubdomain(&$node, $tldParts) -{ - $dom = trim(array_pop($tldParts)); - - $isNotDomain = false; - if (startsWith($dom, '!')) { - $dom = substr($dom, 1); - $isNotDomain = true; - } - - if (!array_key_exists($dom, $node)) { - if ($isNotDomain) { - $node[$dom] = ['!' => '']; - } else { - $node[$dom] = []; - } - } - - if (!$isNotDomain && count($tldParts)>0) { - buildSubdomain($node[$dom], $tldParts); - } -} - -function printNode($key, $valueTree, $isAssignment = false, $depth = 0) -{ - global $format; - - if ($isAssignment) { - if ('perl' == $format) { - echo "$key = {"; - } else { - echo "$key = array("; - } - } else { - if (0 == strcmp($key, '!')) { - if ('perl' == $format) { - echo "'!' => {}"; - } else { - echo "'!' => ''"; - } - return; - } else { - if ('perl' == $format) { - echo "'$key' => {"; - } else { - echo str_repeat(' ', $depth)."'$key' => array("; - } - } - } - - $keys = array_keys($valueTree); - - for ($i=0; $i0) { - if (0 == strcmp($keys['!'], '!')) { - echo '!'; - } else { - echo '(' .count($keys). ':'; - - for ($i=0; $i0) { - printNode_C($key, $valueTree[$key]); - // } - - if ($i+1 != count($valueTree)) { - echo ','; - } - } - - echo ')'; - } - } -} - -// --- main --- - -error_reporting(E_ERROR); - -$tldTree = []; -$list = file_get_contents(URL); -// $list = "bg\na.bg\n0.bg\n!c.bg\n"; -$lines = explode("\n", $list); -$licence = true; -$commentsection = ''; - -foreach ($lines as $line) { - if ($licence && startsWith($line, '//')) { - if ('perl' == $format) { - $commentsection .= '# ' .substr($line, 2)."\n"; - } else { - $commentsection .= $line."\n"; - } - - if (startsWith($line, '// ***** END LICENSE BLOCK')) { - $licence = false; - $commentsection .= "\n"; - } - continue; - } - - if (startsWith($line, '//') || '' == $line) { - continue; - } - - // this must be a TLD - $tldParts = explode('.', $line); - - buildSubdomain($tldTree, $tldParts); -} - -// print_r($tldTree); - -/* -$tldTree = array( - 'de' => array(), // test.agitos.de --> agitos.de - 'uk' => array( - 'co' => array(), // test.agitos.co.uk --> agitos.co.uk - 'xy' => array('!'), // test.agitos.xy.uk --> xy.uk - '*' => array() // test.agitos.ab.uk --> agitos.ab.uk - ) -); -*/ - -switch ($format) { - case 'c': - echo $commentsection."\n"; - echo "char* tldString = \""; - printNode_C('root', $tldTree); - echo "\";\n"; - break; - case 'perl': - echo $commentsection."\n"; - print "package effectiveTLDs;\n\n"; - printNode("\$tldTree", $tldTree, true); - echo ";\n"; - break; - case 'php': - echo " - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to you under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * - * Florian Sager, 25.07.2008, sager@agitos.de - */ - -/* - * Remove subdomains from a signing domain to get the registered domain. - * - * dkim-reputation.org blocks signing domains on the level of registered domains - * to rate senders who use e.g. a.spamdomain.tld, b.spamdomain.tld, ... under - * the most common identifier - the registered domain - finally. - * - * This function returns NULL if $signingDomain is TLD itself - */ - -function getRegisteredDomain($signingDomain) -{ - global $tldTree; - - $signingDomainParts = explode('.', $signingDomain); - - $result = findRegisteredDomain($signingDomainParts, $tldTree); - - if (empty($result)) { - // this is an invalid domain name - return null; - } - - // assure there is at least 1 TLD in the stripped signing domain - if (!strpos($result, '.')) { - $cnt = count($signingDomainParts); - if (1 == $cnt || '' == $signingDomainParts[$cnt-2]) { - return null; - } - return $signingDomainParts[$cnt-2].'.'.$signingDomainParts[$cnt-1]; - } - return $result; -} - -// recursive helper method -function findRegisteredDomain($remainingSigningDomainParts, &$treeNode) -{ - $sub = array_pop($remainingSigningDomainParts); - - $result = null; - if (isset($treeNode['!'])) { - return '#'; - } elseif (is_array($treeNode) && array_key_exists($sub, $treeNode)) { - $result = findRegisteredDomain($remainingSigningDomainParts, $treeNode[$sub]); - } elseif (is_array($treeNode) && array_key_exists('*', $treeNode)) { - $result = findRegisteredDomain($remainingSigningDomainParts, $treeNode['*']); - } else { - return $sub; - } - - // this is a hack 'cause PHP interpretes '' as NULL - if ('#' == $result) { - return $sub; - } elseif (strlen($result)>0) { - return $result.'.'.$sub; - } - return null; -} diff --git a/archive/test-regDomain.php b/archive/test-regDomain.php deleted file mode 100755 index dd3a70b..0000000 --- a/archive/test-regDomain.php +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env php - - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to you under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at: - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * - * Florian Sager, 25.07.2008, sager@agitos.de - */ - -if (PHP_SAPI != "cli") { - exit; -} - -if ($argc < 2) { - echo "test-regDomain.php <(fully-qualified-domain-name )+>\n"; - exit; -} - -require __DIR__ . '/effectiveTLDs.inc.php'; -$tldTree = require __DIR__ . '/regDomain.inc.php'; - -// strip subdomains from every signing domain -// char dom[] = "sub2.sub.registered.nom.ad"; - -for ($i=1; $i<$argc; $i++) { - - $registeredDomain = getRegisteredDomain($argv[$i], $tldTree); - - if (is_null($registeredDomain)) { - printf("error: %s\n", $argv[$i]); - } else { - printf("valid: %s => %s\n", $argv[$i], $registeredDomain); - } -} diff --git a/archive/test-regDomain.sh b/archive/test-regDomain.sh deleted file mode 100755 index 8ea874c..0000000 --- a/archive/test-regDomain.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -FQDNS="registered.com sub.registered.com parliament.uk sub.registered.valid.uk registered.somedom.kyoto.jp invalid-fqdn org academy.museum sub.academy.museum subsub.sub.academy.museum sub.nic.pa registered.sb sub.registered.sb abc.xyz.co.uk abc.co.uk abc.nhs.uk abc.xyz.zz example.uk d.example.uk subsub.registered.something.zw subsub.registered.9.bg registered.co.bi sub.registered.bi subsub.registered.ee ua" - -./test-regDomain.php $FQDNS diff --git a/archive/test_psl.txt b/archive/test_psl.txt deleted file mode 100644 index 012e5fe..0000000 --- a/archive/test_psl.txt +++ /dev/null @@ -1,98 +0,0 @@ -// Any copyright is dedicated to the Public Domain. -// https://creativecommons.org/publicdomain/zero/1.0/ - -// null input. -checkPublicSuffix(null, null); -// Mixed case. -checkPublicSuffix('COM', null); -checkPublicSuffix('example.COM', 'example.com'); -checkPublicSuffix('WwW.example.COM', 'example.com'); -// Leading dot. -checkPublicSuffix('.com', null); -checkPublicSuffix('.example', null); -checkPublicSuffix('.example.com', null); -checkPublicSuffix('.example.example', null); -// Unlisted TLD. -checkPublicSuffix('example', null); -checkPublicSuffix('example.example', 'example.example'); -checkPublicSuffix('b.example.example', 'example.example'); -checkPublicSuffix('a.b.example.example', 'example.example'); -// Listed, but non-Internet, TLD. -//checkPublicSuffix('local', null); -//checkPublicSuffix('example.local', null); -//checkPublicSuffix('b.example.local', null); -//checkPublicSuffix('a.b.example.local', null); -// TLD with only 1 rule. -checkPublicSuffix('biz', null); -checkPublicSuffix('domain.biz', 'domain.biz'); -checkPublicSuffix('b.domain.biz', 'domain.biz'); -checkPublicSuffix('a.b.domain.biz', 'domain.biz'); -// TLD with some 2-level rules. -checkPublicSuffix('com', null); -checkPublicSuffix('example.com', 'example.com'); -checkPublicSuffix('b.example.com', 'example.com'); -checkPublicSuffix('a.b.example.com', 'example.com'); -checkPublicSuffix('uk.com', null); -checkPublicSuffix('example.uk.com', 'example.uk.com'); -checkPublicSuffix('b.example.uk.com', 'example.uk.com'); -checkPublicSuffix('a.b.example.uk.com', 'example.uk.com'); -checkPublicSuffix('test.ac', 'test.ac'); -// TLD with only 1 (wildcard) rule. -checkPublicSuffix('mm', null); -checkPublicSuffix('c.mm', null); -checkPublicSuffix('b.c.mm', 'b.c.mm'); -checkPublicSuffix('a.b.c.mm', 'b.c.mm'); -// More complex TLD. -checkPublicSuffix('jp', null); -checkPublicSuffix('test.jp', 'test.jp'); -checkPublicSuffix('www.test.jp', 'test.jp'); -checkPublicSuffix('ac.jp', null); -checkPublicSuffix('test.ac.jp', 'test.ac.jp'); -checkPublicSuffix('www.test.ac.jp', 'test.ac.jp'); -checkPublicSuffix('kyoto.jp', null); -checkPublicSuffix('test.kyoto.jp', 'test.kyoto.jp'); -checkPublicSuffix('ide.kyoto.jp', null); -checkPublicSuffix('b.ide.kyoto.jp', 'b.ide.kyoto.jp'); -checkPublicSuffix('a.b.ide.kyoto.jp', 'b.ide.kyoto.jp'); -checkPublicSuffix('c.kobe.jp', null); -checkPublicSuffix('b.c.kobe.jp', 'b.c.kobe.jp'); -checkPublicSuffix('a.b.c.kobe.jp', 'b.c.kobe.jp'); -checkPublicSuffix('city.kobe.jp', 'city.kobe.jp'); -checkPublicSuffix('www.city.kobe.jp', 'city.kobe.jp'); -// TLD with a wildcard rule and exceptions. -checkPublicSuffix('ck', null); -checkPublicSuffix('test.ck', null); -checkPublicSuffix('b.test.ck', 'b.test.ck'); -checkPublicSuffix('a.b.test.ck', 'b.test.ck'); -checkPublicSuffix('www.ck', 'www.ck'); -checkPublicSuffix('www.www.ck', 'www.ck'); -// US K12. -checkPublicSuffix('us', null); -checkPublicSuffix('test.us', 'test.us'); -checkPublicSuffix('www.test.us', 'test.us'); -checkPublicSuffix('ak.us', null); -checkPublicSuffix('test.ak.us', 'test.ak.us'); -checkPublicSuffix('www.test.ak.us', 'test.ak.us'); -checkPublicSuffix('k12.ak.us', null); -checkPublicSuffix('test.k12.ak.us', 'test.k12.ak.us'); -checkPublicSuffix('www.test.k12.ak.us', 'test.k12.ak.us'); -// IDN labels. -checkPublicSuffix('食狮.com.cn', '食狮.com.cn'); -checkPublicSuffix('食狮.公司.cn', '食狮.公司.cn'); -checkPublicSuffix('www.食狮.公司.cn', '食狮.公司.cn'); -checkPublicSuffix('shishi.公司.cn', 'shishi.公司.cn'); -checkPublicSuffix('公司.cn', null); -checkPublicSuffix('食狮.中国', '食狮.中国'); -checkPublicSuffix('www.食狮.中国', '食狮.中国'); -checkPublicSuffix('shishi.中国', 'shishi.中国'); -checkPublicSuffix('中国', null); -// Same as above, but punycoded. -checkPublicSuffix('xn--85x722f.com.cn', 'xn--85x722f.com.cn'); -checkPublicSuffix('xn--85x722f.xn--55qx5d.cn', 'xn--85x722f.xn--55qx5d.cn'); -checkPublicSuffix('www.xn--85x722f.xn--55qx5d.cn', 'xn--85x722f.xn--55qx5d.cn'); -checkPublicSuffix('shishi.xn--55qx5d.cn', 'shishi.xn--55qx5d.cn'); -checkPublicSuffix('xn--55qx5d.cn', null); -checkPublicSuffix('xn--85x722f.xn--fiqs8s', 'xn--85x722f.xn--fiqs8s'); -checkPublicSuffix('www.xn--85x722f.xn--fiqs8s', 'xn--85x722f.xn--fiqs8s'); -checkPublicSuffix('shishi.xn--fiqs8s', 'shishi.xn--fiqs8s'); -checkPublicSuffix('xn--fiqs8s', null); From c4092667360e35811c7045314a8236b0a955f121 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 21:45:08 -0400 Subject: [PATCH 22/31] update version --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a560714..fd313f4 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "xoops/regdom", "description": "OO adaptation of Florian Sager's regdom library for querying Mozilla Public Suffix List", - "version": "1.0.10", + "version": "2.0.0-alpha-1", "keywords": [ "public", "suffix", From c573cd5c52173491e54e15975600df0bd30d630f Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 21:49:11 -0400 Subject: [PATCH 23/31] changed to Xoops --- bin/reloadpsl | 2 +- composer.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/reloadpsl b/bin/reloadpsl index ec3c4da..8413f09 100755 --- a/bin/reloadpsl +++ b/bin/reloadpsl @@ -2,7 +2,7 @@ Date: Sun, 30 Jun 2024 21:55:48 -0400 Subject: [PATCH 24/31] remove PHP_VERSION_ID < 70000 --- src/PublicSuffixList.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/PublicSuffixList.php b/src/PublicSuffixList.php index e2fa1a9..360ecbf 100644 --- a/src/PublicSuffixList.php +++ b/src/PublicSuffixList.php @@ -224,16 +224,12 @@ protected function getCacheFileName($url) protected function readCachedPSL($url) { $cacheFile = $this->getCacheFileName($url); - if (file_exists($cacheFile)) { - $cachedTree = file_get_contents($cacheFile); - if (PHP_VERSION_ID < 70000) { - return unserialize($cachedTree); - } - return unserialize($cachedTree, ['allowed_classes' => false]); - } - return false; + return file_exists($cacheFile) + ? unserialize(file_get_contents($cacheFile), ['allowed_classes' => false]) + : false; } + /** * Cache the current Public Suffix List tree and associate with the specified source * From 84caf85a67aead252d0bd2ad4649d4a0a5e3cfc9 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Sun, 30 Jun 2024 22:07:33 -0400 Subject: [PATCH 25/31] updating data/public_suffix_list.dat --- data/public_suffix_list.dat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/public_suffix_list.dat b/data/public_suffix_list.dat index 07a9e20..ef56847 100644 --- a/data/public_suffix_list.dat +++ b/data/public_suffix_list.dat @@ -6708,7 +6708,7 @@ org.zw // newGTLDs -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-06-13T15:15:16Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-06-29T15:13:33Z // This list is auto-generated, don't edit it manually. // aaa : American Automobile Association, Inc. // https://www.iana.org/domains/root/db/aaa.html @@ -10494,7 +10494,7 @@ ups // https://www.iana.org/domains/root/db/vacations.html vacations -// vana : Internet Naming Company LLC +// vana : D3 Registry LLC // https://www.iana.org/domains/root/db/vana.html vana From ceb6811d4ce891e2f6131bf42490bae2cc194632 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Mon, 1 Jul 2024 02:26:42 -0400 Subject: [PATCH 26/31] type hinting new tests testSetURL(), testFallbackURL() code improvements, cosmetics --- src/PublicSuffixList.php | 77 ++++++++++++----------------- src/RegisteredDomain.php | 65 ++++++++++++------------ tests/unit/PublicSuffixListTest.php | 41 ++++++++++++++- tests/unit/RegisteredDomainTest.php | 46 +++++++++-------- 4 files changed, 126 insertions(+), 103 deletions(-) diff --git a/src/PublicSuffixList.php b/src/PublicSuffixList.php index 360ecbf..00afdf3 100644 --- a/src/PublicSuffixList.php +++ b/src/PublicSuffixList.php @@ -1,4 +1,5 @@ -setURL($url); } @@ -34,10 +33,9 @@ public function __construct($url = null) * Set the URL, and clear any existing tree * * @param string|null $url URL for the PSL or null to use default - * * @return void */ - public function setURL($url) + public function setURL(?string $url): void { $this->url = $url; $this->tree = null; @@ -49,7 +47,7 @@ public function setURL($url) * * @return void */ - protected function setFallbackURL() + private function setFallbackURL(): void { $this->setLocalPSLName($this->url); if (null === $this->url) { @@ -61,15 +59,14 @@ protected function setFallbackURL() * Load the PSL tree, automatically handling caches * * @return void (results in $this->tree) - * * @throws \RuntimeException */ - protected function loadTree() + private function loadTree(): void { $this->setFallbackURL(); $this->tree = $this->readCachedPSL($this->url); - if (false !== $this->tree) { + if (null !== $this->tree) { return; } @@ -88,15 +85,14 @@ protected function loadTree() * Parse the PSL data * * @param string $fileData the PSL data - * * @return void (results in $this->tree) */ - protected function parsePSL($fileData) + private function parsePSL(string $fileData): void { $lines = explode("\n", $fileData); foreach ($lines as $line) { - if ($this->startsWith($line, '//') || '' == $line) { + if ('' === $line || $this->startsWith($line, '//')) { continue; } @@ -110,12 +106,11 @@ protected function parsePSL($fileData) /** * Does $search start with $startString? * - * @param string $search the string to test + * @param string $search the string to test * @param string $startString the starting string to match - * * @return bool */ - protected function startsWith($search, $startString) + private function startsWith(string $search, string $startString): bool { return (0 === strpos($search, $startString)); } @@ -123,12 +118,11 @@ protected function startsWith($search, $startString) /** * Add domains to tree * - * @param array $node tree array by reference + * @param array $node tree array by reference * @param string[] $tldParts array of domain parts - * * @return void - changes made to $node by reference */ - protected function buildSubDomain(&$node, $tldParts) + private function buildSubDomain(array &$node, array $tldParts): void { $dom = trim(array_pop($tldParts)); @@ -146,7 +140,7 @@ protected function buildSubDomain(&$node, $tldParts) } } - if (!$isNotDomain && count($tldParts) > 0) { + if (!$isNotDomain && 0 < count($tldParts)) { $this->buildSubDomain($node[$dom], $tldParts); } } @@ -157,7 +151,7 @@ protected function buildSubDomain(&$node, $tldParts) * @return array the PSL tree * @throws \RuntimeException if PSL cannot be loaded */ - public function getTree() + public function getTree(): array { if (null === $this->tree) { $this->loadTree(); @@ -171,7 +165,7 @@ public function getTree() * * @return string|false PSL file contents or false on error */ - protected function readPSL() + private function readPSL() { $parts = parse_url($this->url); $remote = isset($parts['scheme']) || isset($parts['host']); @@ -206,10 +200,9 @@ protected function readPSL() * Determine cache file name for a specified source * * @param string $url URL/filename of source PSL - * * @return string cache file name for given resource */ - protected function getCacheFileName($url) + private function getCacheFileName(string $url): string { return __DIR__ . $this->dataDir . $this->cachedPrefix . md5($url); } @@ -218,26 +211,23 @@ protected function getCacheFileName($url) * Attempt to load a cached Public Suffix List tree for a given source * * @param string $url URL/filename of source PSL - * * @return false|string[] PSL tree */ - protected function readCachedPSL($url) + private function readCachedPSL(string $url) { $cacheFile = $this->getCacheFileName($url); return file_exists($cacheFile) ? unserialize(file_get_contents($cacheFile), ['allowed_classes' => false]) - : false; + : null; } - /** * Cache the current Public Suffix List tree and associate with the specified source * * @param string $url URL/filename of source PSL - * * @return bool|int the number of bytes that were written to the file, or false on failure */ - protected function cachePSL($url) + private function cachePSL(string $url) { return file_put_contents($this->getCacheFileName($url), serialize($this->tree)); } @@ -246,10 +236,9 @@ protected function cachePSL($url) * Save a local copy of a retrieved Public Suffix List * * @param string $fileContents URL/filename of source PSL - * * @return bool|int the number of bytes that were written to the file, or false on failure */ - protected function saveLocalPSL($fileContents) + private function saveLocalPSL(string $fileContents) { return file_put_contents(__DIR__ . $this->localPSL, $fileContents); } @@ -257,11 +246,10 @@ protected function saveLocalPSL($fileContents) /** * Set localPSL name based on URL * - * @param null|string $url the URL for the PSL - * + * @param string|null $url the URL for the PSL * @return void (sets $this->localPSL) */ - protected function setLocalPSLName($url) + private function setLocalPSLName(?string $url): void { if (null === $url) { $url = $this->sourceURL; @@ -275,17 +263,16 @@ protected function setLocalPSLName($url) * Delete files in the data directory * * @param bool $cacheOnly true to limit clearing to cached serialized PSLs, false to clear all - * * @return void */ - public function clearDataDirectory($cacheOnly = false) + public function clearDataDirectory(bool $cacheOnly = false): void { $dir = __DIR__ . $this->dataDir; if (is_dir($dir)) { - if ($dirHandle = opendir($dir)) { + if (false !== ($dirHandle = opendir($dir))) { while (false !== ($file = readdir($dirHandle))) { if ('file' === filetype($dir . $file) - && (false === $cacheOnly || $this->startsWith($file, $this->cachedPrefix))) { + && (!$cacheOnly || $this->startsWith($file, $this->cachedPrefix))) { unlink($dir . $file); } } diff --git a/src/RegisteredDomain.php b/src/RegisteredDomain.php index ab6dd2e..a405ece 100644 --- a/src/RegisteredDomain.php +++ b/src/RegisteredDomain.php @@ -1,4 +1,5 @@ - * @license Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) */ + class RegisteredDomain { - protected $tree; - protected $psl; + private ?array $tree = null; + private PublicSuffixList $psl; /** * RegisteredDomain constructor. * * @param PublicSuffixList|null $psl PublicSuffixList object, or null to use defaults */ - public function __construct(PublicSuffixList $psl = null) + public function __construct(?PublicSuffixList $psl = null) { - if (null === $psl) { - $psl = new PublicSuffixList(); - } - $this->psl = $psl; + $this->psl = $psl ?? new PublicSuffixList(); } /** @@ -38,7 +37,7 @@ public function __construct(PublicSuffixList $psl = null) * * @return string */ - protected function normalizeHost($url) + protected function normalizeHost(string $url): string { if (empty($url)) { return ''; @@ -59,20 +58,17 @@ protected function normalizeHost($url) } /** - * Convert a punycode string to UTF-8 if needed + * Convert a punycode string to UTF-8 if needed. * - * @param string $part host component + * @param string $part Host component * - * @return string host component as UTF-8 + * @return string Host component as UTF-8 */ - protected function convertPunycode($part) + protected function convertPunycode(string $part): string { if (0 === strpos($part, 'xn--')) { if (function_exists('idn_to_utf8')) { - if (defined('INTL_IDNA_VARIANT_UTS46')) { // PHP 7.2 - return idn_to_utf8($part, 0, INTL_IDNA_VARIANT_UTS46); - } - return idn_to_utf8($part); + return defined('INTL_IDNA_VARIANT_UTS46') ? idn_to_utf8($part, 0, INTL_IDNA_VARIANT_UTS46) : idn_to_utf8($part); } return $this->decodePunycode($part); } @@ -80,14 +76,14 @@ protected function convertPunycode($part) } /** - * convert punycode to UTF-8 (the hard way) Used only if idn_to_utf8() is not available + * Convert punycode to UTF-8 (the hard way) if idn_to_utf8() is not available. * * This fallback adapted from https://ckon.wordpress.com/2010/08/24/punycode-to-unicode-converter-php/ * * @param string $encoded * @return string */ - protected function decodePunycode($encoded) + protected function decodePunycode(string $encoded): string { $prefix = 'xn--'; $safe_char = 0xFFFC; @@ -97,7 +93,12 @@ protected function decodePunycode($encoded) $skew = 38; $damp = 700; - if (null === $encoded || 0 !== strpos($encoded, $prefix) || 0 == strlen(trim(str_replace($prefix, '', $encoded)))) { + if (0 !== strpos($encoded, $prefix)) { + return $encoded; + } + + $trimmed = trim(str_replace($prefix, '', $encoded)); + if ('' === $trimmed) { return $encoded; } @@ -171,13 +172,13 @@ protected function decodePunycode($encoded) } /** - * Determine the registered domain portion of the supplied host string + * Determine the registered domain portion of the supplied host string. * - * @param string $host a host name or URL containing a host name + * @param string $host A host name or URL containing a host name * - * @return string|null shortest registrable domain portion of the supplied host or null if invalid + * @return string|null Shortest registrable domain portion of the supplied host or null if invalid */ - public function getRegisteredDomain($host) + public function getRegisteredDomain(string $host): ?string { $this->tree = $this->psl->getTree(); @@ -194,7 +195,7 @@ public function getRegisteredDomain($host) // assure there is at least 1 TLD in the stripped signing domain if (!strpos($result, '.')) { $cnt = count($signingDomainParts); - if (1 == $cnt || '' == $signingDomainParts[$cnt-2]) { + if (1 === $cnt || '' === $signingDomainParts[$cnt-2]) { return null; } return $signingDomainParts[$cnt-2] . '.' . $signingDomainParts[$cnt-1]; @@ -203,23 +204,23 @@ public function getRegisteredDomain($host) } /** - * Recursive helper method to query the PSL tree + * Recursive helper method to query the PSL tree. * - * @param string[] $remainingSigningDomainParts parts of domain being queried - * @param string[] $treeNode subset of tree array by reference + * @param string[] $remainingSigningDomainParts Parts of domain being queried + * @param array $treeNode Subset of tree array by reference * - * @return null|string + * @return string|null */ - protected function findRegisteredDomain($remainingSigningDomainParts, &$treeNode) + protected function findRegisteredDomain(array $remainingSigningDomainParts, array &$treeNode): ?string { $sub = array_pop($remainingSigningDomainParts); $result = null; if (isset($treeNode['!'])) { return ''; - } elseif (is_array($treeNode) && array_key_exists($sub, $treeNode)) { + } elseif (array_key_exists($sub, $treeNode)) { $result = $this->findRegisteredDomain($remainingSigningDomainParts, $treeNode[$sub]); - } elseif (is_array($treeNode) && array_key_exists('*', $treeNode)) { + } elseif (array_key_exists('*', $treeNode)) { $result = $this->findRegisteredDomain($remainingSigningDomainParts, $treeNode['*']); } else { return $sub; diff --git a/tests/unit/PublicSuffixListTest.php b/tests/unit/PublicSuffixListTest.php index 37eec15..88fbd4a 100644 --- a/tests/unit/PublicSuffixListTest.php +++ b/tests/unit/PublicSuffixListTest.php @@ -1,4 +1,5 @@ -object->clearDataDirectory(); } public function testContracts() @@ -54,4 +56,39 @@ public function testClearDataDirectoryCacheOnly() $this->assertIsArray($tree); $this->assertArrayHasKey('com', $tree); } + + public function testSetURL() + { + $url = 'https://example.com'; + $this->object->setURL($url); + + // Use reflection to call the protected setFallbackURL method + $reflection = new \ReflectionClass($this->object); + // Check the URL property to verify the fallback URL is set correctly + $property = $reflection->getProperty('url'); + $property->setAccessible(true); + + $this->assertSame($url, $property->getValue($this->object)); + + } + + public function testFallbackURL() + { + // Set URL to null and trigger the fallback mechanism + $this->object->setURL(null); + + // Use reflection to call the protected setFallbackURL method + $reflection = new \ReflectionClass($this->object); + $method = $reflection->getMethod('setFallbackURL'); + $method->setAccessible(true); + $method->invoke($this->object); + + // Check the URL property to verify the fallback URL is set correctly + $property = $reflection->getProperty('url'); + $property->setAccessible(true); + +// $expectedUrl = file_exists(dirname(__DIR__, 2) . '/data/public_suffix_list.dat') ? dirname(__DIR__, 2) . '/data/public_suffix_list.dat' : 'https://publicsuffix.org/list/public_suffix_list.dat'; + $expectedUrl = file_exists(dirname(__DIR__, 2) . '/data/public_suffix_list.dat') ? '/../data/public_suffix_list.dat' : 'https://publicsuffix.org/list/public_suffix_list.dat'; + $this->assertSame($expectedUrl, $property->getValue($this->object)); + } } diff --git a/tests/unit/RegisteredDomainTest.php b/tests/unit/RegisteredDomainTest.php index acd1057..e207f05 100644 --- a/tests/unit/RegisteredDomainTest.php +++ b/tests/unit/RegisteredDomainTest.php @@ -1,4 +1,5 @@ -decodePunycode($string); } } - class RegisteredDomainTest extends TestCase { /** * @var RegisteredDomain */ - protected $object; + protected RegisteredDomain $object; /** * Sets up the fixture, for example, opens a network connection. @@ -33,7 +34,7 @@ class RegisteredDomainTest extends TestCase */ protected function setUp(): void { - //$this->object = new RegisteredDomain(); + $this->object = new RegisteredDomain(new PublicSuffixList()); } /** @@ -42,12 +43,12 @@ protected function setUp(): void */ protected function tearDown(): void { + // Clean up if necessary } - public function testContracts() + public function testContracts(): void { - $object = new RegisteredDomain(); - $this->assertInstanceOf(RegisteredDomain::class, $object); + $this->assertInstanceOf(RegisteredDomain::class, $this->object); } @@ -55,19 +56,18 @@ public function testContracts() /** * @dataProvider domainsProvider */ - public function testGetRegisteredDomain($url = '', $regdom = '') + public function testGetRegisteredDomain(string $url, ?string $regdom): void { - $object = new RegisteredDomain(); - $this->assertEquals($regdom, $object->getRegisteredDomain($url)); + $this->assertEquals($regdom, $this->object->getRegisteredDomain($url)); } /** - * @return array + * @return array */ - public static function domainsProvider() + public static function domainsProvider(): array { - $provider = [ - [null, null], + return [ + ['', ''], // Mixed case. ['COM', null], ['example.COM', 'example.com'], @@ -158,26 +158,25 @@ public static function domainsProvider() ['rfu.in.ua', 'rfu.in.ua'], ['in.ua', null], ]; - return $provider; } // #[\PHPUnit\Framework\Attributes\DataProvider('punycodeProvider')] //PHP 8 /** * @dataProvider punycodeProvider */ - public function testDecodePunycode($punycode, $decoded) + public function testDecodePunycode(string $punycode, string $decoded): void { - $object = new TestProtectedDecodePunycode(); + $object = new TestProtectedDecodePunycode(new PublicSuffixList()); $this->assertEquals($decoded, $object->doDecodePunycode($punycode)); } /** - * @return array + * @return array */ - public static function punycodeProvider() + public static function punycodeProvider(): array { - $provider = [ - [null, null], + return [ + ['', ''], // Mixed case. ['test', 'test'], // punycoded @@ -185,6 +184,5 @@ public static function punycodeProvider() ['xn--55qx5d', '公司'], ['xn--fiqs8s', '中国'], ]; - return $provider; - } +} } From 09819041231989a6a1a3f257b8f34cd54aa59b2d Mon Sep 17 00:00:00 2001 From: mambax7 Date: Mon, 1 Jul 2024 02:57:40 -0400 Subject: [PATCH 27/31] Scrutinizer --- src/PublicSuffixList.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/PublicSuffixList.php b/src/PublicSuffixList.php index 00afdf3..cac6eb6 100644 --- a/src/PublicSuffixList.php +++ b/src/PublicSuffixList.php @@ -96,7 +96,12 @@ private function parsePSL(string $fileData): void continue; } - // this line should be a TLD + // Ensure $this->tree is an array + if (null === $this->tree) { + $this->tree = []; + } + + // This line should be a TLD $tldParts = explode('.', $line); $this->buildSubDomain($this->tree, $tldParts); @@ -211,9 +216,9 @@ private function getCacheFileName(string $url): string * Attempt to load a cached Public Suffix List tree for a given source * * @param string $url URL/filename of source PSL - * @return false|string[] PSL tree + * @return array|null PSL tree */ - private function readCachedPSL(string $url) + private function readCachedPSL(string $url): ?array { $cacheFile = $this->getCacheFileName($url); return file_exists($cacheFile) From 1ce07f7548a24de415775685d01ced1d1e433624 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Mon, 1 Jul 2024 03:07:35 -0400 Subject: [PATCH 28/31] github workflows --- .gitattributes | 3 ++ .github/workflows/pr_tests.yml | 64 ++++++++++++++++++++++++++++++++++ .gitignore | 4 ++- .scrutinizer.yml | 15 +++++++- phpunit.xml.dist | 5 ++- 5 files changed, 88 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/pr_tests.yml diff --git a/.gitattributes b/.gitattributes index f49ec91..73a295f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,8 +2,11 @@ * text=auto /archive export-ignore +/_archive export-ignore /tests export-ignore .gitattributes export-ignore .gitignore export-ignore .scrutinizer.yml export-ignore .travis.yml export-ignore +phpcs.xml.dist export-ignore +phpunit.xml.dist export-ignore diff --git a/.github/workflows/pr_tests.yml b/.github/workflows/pr_tests.yml new file mode 100644 index 0000000..33fbae8 --- /dev/null +++ b/.github/workflows/pr_tests.yml @@ -0,0 +1,64 @@ +name: CI + +on: [push, pull_request] + +jobs: + phpunit-9-6: + strategy: + fail-fast: false + matrix: + php_version: ["7.4", "8.1", "8.2", "8.3"] + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: php-actions/composer@v6 + with: + php_version: "7.4" + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php_version }} + coverage: xdebug + - name: Unit Tests with PHPUnit 9.6 + run: vendor/bin/phpunit --stderr --version 9.6 + + phpunit-10-5: + strategy: + fail-fast: false + matrix: + php_version: ["8.1", "8.2", "8.3"] + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: php-actions/composer@v6 + with: + php_version: "8.1" + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php_version }} + coverage: xdebug + - name: Unit Tests with PHPUnit 10.5 + run: vendor/bin/phpunit --stderr --version 10.5 + + phpunit-11-2: + strategy: + fail-fast: false + matrix: + php_version: ["8.2", "8.3"] + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: php-actions/composer@v6 + with: + php_version: "8.2" + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php_version }} + coverage: xdebug + - name: Unit Tests with PHPUnit 11.2 + run: vendor/bin/phpunit --stderr --version 11.2 diff --git a/.gitignore b/.gitignore index 11f1baf..2cacf36 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,7 @@ \#* *.bak .idea/ -coverage.clover vendor/ +composer.lock +coverage.clover +git-phpcs.phar diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 32b692b..8ae1f6f 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -1,6 +1,19 @@ +# .scrutinizer.yml build: nodes: analysis: + environment: + php: + version: 7.4 + project_setup: + override: true tests: override: - - php-scrutinizer-run + - php-scrutinizer-run +filter: + excluded_paths: + - '_archive/*' + - 'tests/*' +tools: + external_code_coverage: + timeout: 300 # Timeout in seconds. diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 6cf45a3..a494637 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,5 +1,8 @@ - + ./src From e04fbb934a251012851b21b88ccfe7d50f9b7a97 Mon Sep 17 00:00:00 2001 From: mambax7 Date: Mon, 1 Jul 2024 03:20:38 -0400 Subject: [PATCH 29/31] Unqualified function/constant reference --- src/PublicSuffixList.php | 62 ++++++++++++++--------------- src/RegisteredDomain.php | 52 ++++++++++++------------ tests/unit/PublicSuffixListTest.php | 2 +- 3 files changed, 58 insertions(+), 58 deletions(-) diff --git a/src/PublicSuffixList.php b/src/PublicSuffixList.php index cac6eb6..d2f04a6 100644 --- a/src/PublicSuffixList.php +++ b/src/PublicSuffixList.php @@ -51,7 +51,7 @@ private function setFallbackURL(): void { $this->setLocalPSLName($this->url); if (null === $this->url) { - $this->url = file_exists(__DIR__ . $this->localPSL) ? $this->localPSL : $this->sourceURL; + $this->url = \file_exists(__DIR__ . $this->localPSL) ? $this->localPSL : $this->sourceURL; } } @@ -89,7 +89,7 @@ private function loadTree(): void */ private function parsePSL(string $fileData): void { - $lines = explode("\n", $fileData); + $lines = \explode("\n", $fileData); foreach ($lines as $line) { if ('' === $line || $this->startsWith($line, '//')) { @@ -102,7 +102,7 @@ private function parsePSL(string $fileData): void } // This line should be a TLD - $tldParts = explode('.', $line); + $tldParts = \explode('.', $line); $this->buildSubDomain($this->tree, $tldParts); } @@ -117,7 +117,7 @@ private function parsePSL(string $fileData): void */ private function startsWith(string $search, string $startString): bool { - return (0 === strpos($search, $startString)); + return (0 === \strpos($search, $startString)); } /** @@ -129,15 +129,15 @@ private function startsWith(string $search, string $startString): bool */ private function buildSubDomain(array &$node, array $tldParts): void { - $dom = trim(array_pop($tldParts)); + $dom = \trim(\array_pop($tldParts)); $isNotDomain = false; if ($this->startsWith($dom, '!')) { - $dom = substr($dom, 1); + $dom = \substr($dom, 1); $isNotDomain = true; } - if (!array_key_exists($dom, $node)) { + if (!\array_key_exists($dom, $node)) { if ($isNotDomain) { $node[$dom] = ['!' => '']; } else { @@ -145,7 +145,7 @@ private function buildSubDomain(array &$node, array $tldParts): void } } - if (!$isNotDomain && 0 < count($tldParts)) { + if (!$isNotDomain && 0 < \count($tldParts)) { $this->buildSubDomain($node[$dom], $tldParts); } } @@ -172,10 +172,10 @@ public function getTree(): array */ private function readPSL() { - $parts = parse_url($this->url); + $parts = \parse_url($this->url); $remote = isset($parts['scheme']) || isset($parts['host']); // try to read with file_get_contents - $newPSL = file_get_contents(($remote ? '' : __DIR__) . $this->url); + $newPSL = \file_get_contents(($remote ? '' : __DIR__) . $this->url); if (false !== $newPSL) { if ($remote) { $this->saveLocalPSL($newPSL); @@ -184,14 +184,14 @@ private function readPSL() } // try again with curl if file_get_contents failed - if (function_exists('curl_init') && false !== ($curlHandle = curl_init())) { - curl_setopt($curlHandle, CURLOPT_URL, $this->url); - curl_setopt($curlHandle, CURLOPT_FAILONERROR, true); - curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($curlHandle, CURLOPT_CONNECTTIMEOUT, 5); - $curlReturn = curl_exec($curlHandle); - curl_close($curlHandle); - if (false !== $curlReturn && is_string($curlReturn)) { + if (\function_exists('curl_init') && false !== ($curlHandle = \curl_init())) { + \curl_setopt($curlHandle, \CURLOPT_URL, $this->url); + \curl_setopt($curlHandle, \CURLOPT_FAILONERROR, true); + \curl_setopt($curlHandle, \CURLOPT_RETURNTRANSFER, 1); + \curl_setopt($curlHandle, \CURLOPT_CONNECTTIMEOUT, 5); + $curlReturn = \curl_exec($curlHandle); + \curl_close($curlHandle); + if (false !== $curlReturn && \is_string($curlReturn)) { if ($remote) { $this->saveLocalPSL($curlReturn); } @@ -209,7 +209,7 @@ private function readPSL() */ private function getCacheFileName(string $url): string { - return __DIR__ . $this->dataDir . $this->cachedPrefix . md5($url); + return __DIR__ . $this->dataDir . $this->cachedPrefix . \md5($url); } /** @@ -221,8 +221,8 @@ private function getCacheFileName(string $url): string private function readCachedPSL(string $url): ?array { $cacheFile = $this->getCacheFileName($url); - return file_exists($cacheFile) - ? unserialize(file_get_contents($cacheFile), ['allowed_classes' => false]) + return \file_exists($cacheFile) + ? \unserialize(\file_get_contents($cacheFile), ['allowed_classes' => false]) : null; } @@ -234,7 +234,7 @@ private function readCachedPSL(string $url): ?array */ private function cachePSL(string $url) { - return file_put_contents($this->getCacheFileName($url), serialize($this->tree)); + return \file_put_contents($this->getCacheFileName($url), \serialize($this->tree)); } /** @@ -245,7 +245,7 @@ private function cachePSL(string $url) */ private function saveLocalPSL(string $fileContents) { - return file_put_contents(__DIR__ . $this->localPSL, $fileContents); + return \file_put_contents(__DIR__ . $this->localPSL, $fileContents); } /** @@ -259,8 +259,8 @@ private function setLocalPSLName(?string $url): void if (null === $url) { $url = $this->sourceURL; } - $parts = parse_url($url); - $fileName = basename($parts['path']); + $parts = \parse_url($url); + $fileName = \basename($parts['path']); $this->localPSL = $this->dataDir . $fileName; } @@ -273,15 +273,15 @@ private function setLocalPSLName(?string $url): void public function clearDataDirectory(bool $cacheOnly = false): void { $dir = __DIR__ . $this->dataDir; - if (is_dir($dir)) { - if (false !== ($dirHandle = opendir($dir))) { - while (false !== ($file = readdir($dirHandle))) { - if ('file' === filetype($dir . $file) + if (\is_dir($dir)) { + if (false !== ($dirHandle = \opendir($dir))) { + while (false !== ($file = \readdir($dirHandle))) { + if ('file' === \filetype($dir . $file) && (!$cacheOnly || $this->startsWith($file, $this->cachedPrefix))) { - unlink($dir . $file); + \unlink($dir . $file); } } - closedir($dirHandle); + \closedir($dirHandle); } } } diff --git a/src/RegisteredDomain.php b/src/RegisteredDomain.php index a405ece..6075dd6 100644 --- a/src/RegisteredDomain.php +++ b/src/RegisteredDomain.php @@ -42,10 +42,10 @@ protected function normalizeHost(string $url): string if (empty($url)) { return ''; } - $host = (false !== strpos($url, '/')) ? parse_url($url, PHP_URL_HOST) : $url; + $host = (false !== \strpos($url, '/')) ? \parse_url($url, \PHP_URL_HOST) : $url; $host = $host ?: ''; // Ensure $host is a string, even if parse_url returns false - $parts = explode('.', $host); + $parts = \explode('.', $host); $utf8Host = ''; $separator = ''; @@ -54,7 +54,7 @@ protected function normalizeHost(string $url): string $separator = '.'; } - return mb_strtolower($utf8Host); + return \mb_strtolower($utf8Host); } /** @@ -66,9 +66,9 @@ protected function normalizeHost(string $url): string */ protected function convertPunycode(string $part): string { - if (0 === strpos($part, 'xn--')) { - if (function_exists('idn_to_utf8')) { - return defined('INTL_IDNA_VARIANT_UTS46') ? idn_to_utf8($part, 0, INTL_IDNA_VARIANT_UTS46) : idn_to_utf8($part); + if (0 === \strpos($part, 'xn--')) { + if (\function_exists('idn_to_utf8')) { + return \defined('INTL_IDNA_VARIANT_UTS46') ? \idn_to_utf8($part, 0, \INTL_IDNA_VARIANT_UTS46) : \idn_to_utf8($part); } return $this->decodePunycode($part); } @@ -93,11 +93,11 @@ protected function decodePunycode(string $encoded): string $skew = 38; $damp = 700; - if (0 !== strpos($encoded, $prefix)) { + if (0 !== \strpos($encoded, $prefix)) { return $encoded; } - $trimmed = trim(str_replace($prefix, '', $encoded)); + $trimmed = \trim(\str_replace($prefix, '', $encoded)); if ('' === $trimmed) { return $encoded; } @@ -109,18 +109,18 @@ protected function decodePunycode(string $encoded): string $decoded = []; $output = ''; - $delim_pos = strrpos($encoded, '-'); - if ($delim_pos > strlen($prefix)) { - for ($k = strlen($prefix); $k < $delim_pos; ++$k) { - $decoded[] = ord($encoded[$k]); + $delim_pos = \strrpos($encoded, '-'); + if ($delim_pos > \strlen($prefix)) { + for ($k = \strlen($prefix); $k < $delim_pos; ++$k) { + $decoded[] = \ord($encoded[$k]); } } - $deco_len = count($decoded); - $enco_len = strlen($encoded); + $deco_len = \count($decoded); + $enco_len = \strlen($encoded); for ($enco_idx = $delim_pos ? ($delim_pos + 1) : 0; $enco_idx < $enco_len; ++$deco_len) { for ($old_idx = $idx, $w = 1, $k = $base; 1; $k += $base) { - $cp = ord($encoded[$enco_idx++]); + $cp = \ord($encoded[$enco_idx++]); $digit = ($cp - 48 < 10) ? $cp - 22 : (($cp - 65 < 26) ? $cp - 65 : (($cp - 97 < 26) ? $cp - 97 : $base)); $idx += $digit * $w; $t = ($k <= $bias) ? $tmin : (($k >= $bias + $tmax) ? $tmax : ($k - $bias)); @@ -153,16 +153,16 @@ protected function decodePunycode(string $encoded): string foreach ($decoded as $k => $v) { if ($v < 128) { - $output .= chr($v); + $output .= \chr($v); } // 7bit are transferred literally elseif ($v < (1 << 11)) { - $output .= chr(192 + ($v >> 6)) . chr(128 + ($v & 63)); + $output .= \chr(192 + ($v >> 6)) . \chr(128 + ($v & 63)); } // 2 bytes elseif ($v < (1 << 16)) { - $output .= chr(224 + ($v >> 12)) . chr(128 + (($v >> 6) & 63)) . chr(128 + ($v & 63)); + $output .= \chr(224 + ($v >> 12)) . \chr(128 + (($v >> 6) & 63)) . \chr(128 + ($v & 63)); } // 3 bytes elseif ($v < (1 << 21)) { - $output .= chr(240 + ($v >> 18)) . chr(128 + (($v >> 12) & 63)) . chr(128 + (($v >> 6) & 63)) . chr(128 + ($v & 63)); + $output .= \chr(240 + ($v >> 18)) . \chr(128 + (($v >> 12) & 63)) . \chr(128 + (($v >> 6) & 63)) . \chr(128 + ($v & 63)); } // 4 bytes else { $output .= $safe_char; @@ -183,7 +183,7 @@ public function getRegisteredDomain(string $host): ?string $this->tree = $this->psl->getTree(); $signingDomain = $this->normalizeHost($host); - $signingDomainParts = explode('.', $signingDomain); + $signingDomainParts = \explode('.', $signingDomain); $result = $this->findRegisteredDomain($signingDomainParts, $this->tree); @@ -193,8 +193,8 @@ public function getRegisteredDomain(string $host): ?string } // assure there is at least 1 TLD in the stripped signing domain - if (!strpos($result, '.')) { - $cnt = count($signingDomainParts); + if (!\strpos($result, '.')) { + $cnt = \count($signingDomainParts); if (1 === $cnt || '' === $signingDomainParts[$cnt-2]) { return null; } @@ -213,14 +213,14 @@ public function getRegisteredDomain(string $host): ?string */ protected function findRegisteredDomain(array $remainingSigningDomainParts, array &$treeNode): ?string { - $sub = array_pop($remainingSigningDomainParts); + $sub = \array_pop($remainingSigningDomainParts); $result = null; if (isset($treeNode['!'])) { return ''; - } elseif (array_key_exists($sub, $treeNode)) { + } elseif (\array_key_exists($sub, $treeNode)) { $result = $this->findRegisteredDomain($remainingSigningDomainParts, $treeNode[$sub]); - } elseif (array_key_exists('*', $treeNode)) { + } elseif (\array_key_exists('*', $treeNode)) { $result = $this->findRegisteredDomain($remainingSigningDomainParts, $treeNode['*']); } else { return $sub; @@ -228,7 +228,7 @@ protected function findRegisteredDomain(array $remainingSigningDomainParts, arra if ('' === $result) { return $sub; - } elseif (null !== $result && strlen($result) > 0) { + } elseif (null !== $result && \strlen($result) > 0) { return $result . '.' . $sub; } return null; diff --git a/tests/unit/PublicSuffixListTest.php b/tests/unit/PublicSuffixListTest.php index 88fbd4a..ee15f59 100644 --- a/tests/unit/PublicSuffixListTest.php +++ b/tests/unit/PublicSuffixListTest.php @@ -88,7 +88,7 @@ public function testFallbackURL() $property->setAccessible(true); // $expectedUrl = file_exists(dirname(__DIR__, 2) . '/data/public_suffix_list.dat') ? dirname(__DIR__, 2) . '/data/public_suffix_list.dat' : 'https://publicsuffix.org/list/public_suffix_list.dat'; - $expectedUrl = file_exists(dirname(__DIR__, 2) . '/data/public_suffix_list.dat') ? '/../data/public_suffix_list.dat' : 'https://publicsuffix.org/list/public_suffix_list.dat'; + $expectedUrl = \\file_exists(\\dirname(__DIR__, 2) . '/data/public_suffix_list.dat') ? '/../data/public_suffix_list.dat' : 'https://publicsuffix.org/list/public_suffix_list.dat'; $this->assertSame($expectedUrl, $property->getValue($this->object)); } } From c283a29497faf69675d9f961d37459849165060e Mon Sep 17 00:00:00 2001 From: mambax7 Date: Mon, 1 Jul 2024 03:27:48 -0400 Subject: [PATCH 30/31] remove '\' --- tests/unit/PublicSuffixListTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/PublicSuffixListTest.php b/tests/unit/PublicSuffixListTest.php index ee15f59..cbece9c 100644 --- a/tests/unit/PublicSuffixListTest.php +++ b/tests/unit/PublicSuffixListTest.php @@ -88,7 +88,7 @@ public function testFallbackURL() $property->setAccessible(true); // $expectedUrl = file_exists(dirname(__DIR__, 2) . '/data/public_suffix_list.dat') ? dirname(__DIR__, 2) . '/data/public_suffix_list.dat' : 'https://publicsuffix.org/list/public_suffix_list.dat'; - $expectedUrl = \\file_exists(\\dirname(__DIR__, 2) . '/data/public_suffix_list.dat') ? '/../data/public_suffix_list.dat' : 'https://publicsuffix.org/list/public_suffix_list.dat'; + $expectedUrl = \file_exists(\dirname(__DIR__, 2) . '/data/public_suffix_list.dat') ? '/../data/public_suffix_list.dat' : 'https://publicsuffix.org/list/public_suffix_list.dat'; $this->assertSame($expectedUrl, $property->getValue($this->object)); } } From 90aa3b157aab6e32b9f32879e187b65ef12cda65 Mon Sep 17 00:00:00 2001 From: Richard Griffith Date: Mon, 8 Jul 2024 15:25:53 -0500 Subject: [PATCH 31/31] Tweak composer --- composer.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 3227ff0..30842f1 100644 --- a/composer.json +++ b/composer.json @@ -1,14 +1,13 @@ { "name": "xoops/regdom", "description": "OO adaptation of Florian Sager's regdom library for querying Mozilla Public Suffix List", - "version": "2.0.0-alpha-1", "keywords": [ "public", "suffix", "tld", "regdom" ], - "homepage": "https://github.com/xoops/RegDom", + "homepage": "https://github.com/XOOPS/RegDom", "type": "library", "license": "Apache-2.0", "authors": [ @@ -26,12 +25,12 @@ }, "autoload": { "psr-4": { - "Xoops\\Regdom\\": "src/" + "Xoops\\RegDom\\": "src/" } }, "autoload-dev": { "psr-4": { - "Xoops\\Regdom\\": "tests/unit/" + "Xoops\\RegDom\\": "tests/unit/" } },